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

Bump rsjsonnet-lang from 0.1.1 to 0.3.0 #14

Merged
merged 3 commits into from
Nov 12, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 11, 2024

Bumps rsjsonnet-lang from 0.1.1 to 0.3.0.

Release notes

Sourced from rsjsonnet-lang's releases.

0.3.0

Breaking

  • EvalErrorKind::InvalidBuiltInFuncArgType has been renamed to EvalErrorKind::InvalidStdFuncArgType.
  • New variants have been added to EvalErrorKind.
  • New variants have been added to EvalStackTraceItem.
  • ExpectedThing as been renamed to ExpectedToken.
  • ParseError::Expected now uses ActualToken instead of TokenKind.
  • Arena allocation is now used for interned strings, AST and some internal data of Program.
  • String interner cannot be garbage-collected anymore.

Fixed

  • Reject tags in object keys in std.parseYaml.
  • Avoid some panics in std.parseYaml with some inputs found with fuzzing.
  • Avoid stack overflow when dropping expressions with too much nesting.

Changed

  • Improved error message when passing a value of invalid type to a built-in function.
  • Stack trace improvements.
  • Performance improvements.

0.2.0

Breaking

  • Some semantics of std.parseYaml have changed:
    • Empty YAML documents are now parsed as null instead of an empty string.
    • Anchors and aliases are now supported.
    • Null, NULL and ~ are now parsed as null.
    • True and TRUE are now parsed as true .
    • False and FALSE are now parsed as false.
    • Leading or trailing dot (e.g., .5 or 1.) is now allowed in floating point numbers.
    • Explicit + is now allowed in floating point numbers.
    • Leading zeros are now allowed in floating point numbers.
    • Octal and hexadecimal intergers are now parsed as numbers.

Fixed

  • Detect stack overflow while comparing arrays and objects.
  • Detect stack overflow while converting arrays and objects to string.
  • Avoid panic when encountering an array or object as object key in std.parseYaml.
  • Avoid panic when encountering a YAML alias in std.parseYaml.
  • Return character indices instead of UTF-8 byte indices in std.findSubstr.
  • Avoid panic when the first character of the pattern passed to std.findSubstr is not ASCII.

... (truncated)

Changelog

Sourced from rsjsonnet-lang's changelog.

0.3.0 (2024-11-07)

Breaking

  • EvalErrorKind::InvalidBuiltInFuncArgType has been renamed to EvalErrorKind::InvalidStdFuncArgType.
  • New variants have been added to EvalErrorKind.
  • New variants have been added to EvalStackTraceItem.
  • ExpectedThing as been renamed to ExpectedToken.
  • ParseError::Expected now uses ActualToken instead of TokenKind.
  • Arena allocation is now used for interned strings, AST and some internal data of Program.
  • String interner cannot be garbage-collected anymore.

Fixed

  • Reject tags in object keys in std.parseYaml.
  • Avoid some panics in std.parseYaml with some inputs found with fuzzing.
  • Avoid stack overflow when dropping expressions with too much nesting.

Changed

  • Improved error message when passing a value of invalid type to a built-in function.
  • Stack trace improvements.
  • Performance improvements.

0.2.0 (2024-08-12)

Breaking

  • Some semantics of std.parseYaml have changed:
    • Empty YAML documents are now parsed as null instead of an empty string.
    • Anchors and aliases are now supported.
    • Null, NULL and ~ are now parsed as null.
    • True and TRUE are now parsed as true .
    • False and FALSE are now parsed as false.
    • Leading or trailing dot (e.g., .5 or 1.) is now allowed in floating point numbers.
    • Explicit + is now allowed in floating point numbers.
    • Leading zeros are now allowed in floating point numbers.
    • Octal and hexadecimal intergers are now parsed as numbers.

Fixed

  • Detect stack overflow while comparing arrays and objects.
  • Detect stack overflow while converting arrays and objects to string.
  • Avoid panic when encountering an array or object as object key in std.parseYaml.
  • Avoid panic when encountering a YAML alias in std.parseYaml.
  • Return character indices instead of UTF-8 byte indices in std.findSubstr.

... (truncated)

Commits
  • 6b88dab chore: release version 0.3.0
  • 2e8476d chore: update dependencies
  • 50eb060 refactor(eval): implement identity function as a variant of FuncKind
  • c2d435c refactor(eval): change ObjectData::field_is_visible into `ObjectData::has_v...
  • bcb080a fix(eval): fix some error messages
  • af6270b refactor(lang): re-write the part of the standard library that is written in ...
  • 551011f test(ui): add tests for remaining std functions
  • 3d0b273 change(eval): implement std.filterMap as built-in
  • d9a8146 change(eval): implement std.deepJoin as built-in
  • 09bbc86 refactor(eval): move more eval states to State::Fn*
  • 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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Nov 11, 2024
Bumps [rsjsonnet-lang](https://github.com/eduardosm/rsjsonnet) from 0.1.1 to 0.3.0.
- [Release notes](https://github.com/eduardosm/rsjsonnet/releases)
- [Changelog](https://github.com/eduardosm/rsjsonnet/blob/main/CHANGELOG.md)
- [Commits](eduardosm/rsjsonnet@v0.1.1...v0.3.0)

---
updated-dependencies:
- dependency-name: rsjsonnet-lang
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/cargo/rsjsonnet-lang-0.3.0 branch from c7b2163 to 71b6375 Compare November 11, 2024 22:19
@riseshia riseshia merged commit ba35bf1 into main Nov 12, 2024
4 checks passed
@riseshia riseshia deleted the dependabot/cargo/rsjsonnet-lang-0.3.0 branch November 12, 2024 00:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant