Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump hcl-rs from 0.8.5 to 0.9.0 #151

Merged
merged 1 commit into from
Nov 1, 2022

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 1, 2022

Bumps hcl-rs from 0.8.5 to 0.9.0.

Release notes

Sourced from hcl-rs's releases.

v0.9.0

0.9.0 (2022-10-27)

⚠ BREAKING CHANGES

  • The type of Expression's Variable variant changed from Identifier to Variable. You can create a variable from an identifier via Variable::from(identifier) or by using Variable::new and Variable::sanitized.
  • The From<Identifier> implementation for String has been removed because it causes problems with trait bounds in From implementations for other types. Use Identifier::into_inner instead.
  • The Block struct's identifier field type was changed from String to Identifier. Furthermore, the trait bound for the block identifier on Block::new changed from Into<String> to Into<Identifier>.
  • The Attribute struct's key field type was changed from String to Identifier. Furthermore, the trait bound for the attribute identifier on Attribute::new changed from Into<String> to Into<Identifier>.
  • Identifier::new is fallible now and the return value changed from Identifier to Result<Identifier, Error>. An infallible alternative is provided with Identifier::sanitized. The inner String field of Identifier is now private to prevent direct modification.

Features

  • add Variable type (#108) (ee5a5c8)
  • expression and template evaluation (#99) (ce0d229)
  • implement AsRef&lt;str&gt; and Borrow<str> for Identifier (0a616e1)

Bug Fixes

  • change Attribute key field type to Identifier (#106) (84e1538)
  • change Block identifier field type to Identifier (#107) (badce8a)
  • change type of Expression::Variable variant (#109) (5e1501a)
  • remove From&lt;Identifier&gt; for String (32a94ff)
  • sanitize identifiers upon creation (#105) (7b085d7)

Miscellaneous

  • mark BlockLabel::{string,identifier} functions as deprecated (86dda75)
  • mark ObjectKey::identifier function as deprecated (d2f5f94)

v0.8.8

0.8.8 (2022-10-22)

Bug Fixes

  • parser: don't swallow leading whitespace in template (9422195)

v0.8.7

0.8.7 (2022-10-22)

Features

  • add hcl::from_body (c9f6a68)
  • implement From<(bool, bool)> for StripMode (79f85c7)
  • implement From<&str> for TemplateExpr (fb8023d)

... (truncated)

Changelog

Sourced from hcl-rs's changelog.

0.9.0 (2022-10-27)

⚠ BREAKING CHANGES

  • The type of Expression's Variable variant changed from Identifier to Variable. You can create a variable from an identifier via Variable::from(identifier) or by using Variable::new and Variable::sanitized.
  • The From<Identifier> implementation for String has been removed because it causes problems with trait bounds in From implementations for other types. Use Identifier::into_inner instead.
  • The Block struct's identifier field type was changed from String to Identifier. Furthermore, the trait bound for the block identifier on Block::new changed from Into<String> to Into<Identifier>.
  • The Attribute struct's key field type was changed from String to Identifier. Furthermore, the trait bound for the attribute identifier on Attribute::new changed from Into<String> to Into<Identifier>.
  • Identifier::new is fallible now and the return value changed from Identifier to Result<Identifier, Error>. An infallible alternative is provided with Identifier::sanitized. The inner String field of Identifier is now private to prevent direct modification.

Features

  • add Variable type (#108) (ee5a5c8)
  • expression and template evaluation (#99) (ce0d229)
  • implement AsRef&lt;str&gt; and Borrow<str> for Identifier (0a616e1)

Bug Fixes

  • change Attribute key field type to Identifier (#106) (84e1538)
  • change Block identifier field type to Identifier (#107) (badce8a)
  • change type of Expression::Variable variant (#109) (5e1501a)
  • remove From&lt;Identifier&gt; for String (32a94ff)
  • sanitize identifiers upon creation (#105) (7b085d7)

Miscellaneous

  • mark BlockLabel::{string,identifier} functions as deprecated (86dda75)
  • mark ObjectKey::identifier function as deprecated (d2f5f94)

0.8.8 (2022-10-22)

Bug Fixes

  • parser: don't swallow leading whitespace in template (9422195)

0.8.7 (2022-10-22)

Features

  • add hcl::from_body (c9f6a68)
  • implement From<(bool, bool)> for StripMode (79f85c7)
  • implement From<&str> for TemplateExpr (fb8023d)
  • implement From<ObjectKey> for Value (f10fd07)

... (truncated)

Commits
  • 5fc834b chore(main): release 0.9.0 (#101)
  • ce0d229 feat: expression and template evaluation (#99)
  • d2f5f94 chore: mark ObjectKey::identifier function as deprecated
  • 86dda75 chore: mark BlockLabel::{string,identifier} functions as deprecated
  • 5e1501a fix!: change type of Expression::Variable variant (#109)
  • ee5a5c8 feat: add Variable type (#108)
  • 32a94ff fix!: remove From\<Identifier> for String
  • badce8a fix!: change Block identifier field type to Identifier (#107)
  • 84e1538 fix!: change Attribute key field type to Identifier (#106)
  • 7b085d7 fix!: sanitize identifiers upon creation (#105)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [hcl-rs](https://github.com/martinohmann/hcl-rs) from 0.8.5 to 0.9.0.
- [Release notes](https://github.com/martinohmann/hcl-rs/releases)
- [Changelog](https://github.com/martinohmann/hcl-rs/blob/main/CHANGELOG.md)
- [Commits](martinohmann/hcl-rs@v0.8.5...v0.9.0)

---
updated-dependencies:
- dependency-name: hcl-rs
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/cargo/hcl-rs-0.9.0 branch from 2808a21 to 515977d Compare November 1, 2022 09:22
@martinohmann martinohmann merged commit 0654a37 into main Nov 1, 2022
@dependabot dependabot bot deleted the dependabot/cargo/hcl-rs-0.9.0 branch November 1, 2022 09:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant