clarkmcc / cel-rust

Common Expression Language interpreter written in Rust
https://crates.io/crates/cel-interpreter
MIT License
377 stars 21 forks source link

chore: release #95

Closed github-actions[bot] closed 4 days ago

github-actions[bot] commented 3 weeks ago

🤖 New release

⚠️ cel-parser breaking changes

--- failure enum_missing: pub enum removed or renamed ---

Description:
A publicly-visible enum cannot be imported by its prior path. A `pub use` may have been removed, or the enum itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/enum_missing.ron

Failed in:
  enum cel_parser::parse::ParseError, previously in file /tmp/.tmpxIIEfD/cel-parser/src/parse.rs:7

⚠️ cel-interpreter breaking changes

--- failure struct_missing: pub struct removed or renamed ---

Description:
A publicly-visible struct cannot be imported by its prior path. A `pub use` may have been removed, or the struct itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/struct_missing.ron

Failed in:
  struct cel_interpreter::ParseError, previously in file /tmp/.tmpxIIEfD/cel-interpreter/src/lib.rs:32
Changelog

## `cel-parser`

## [0.8.0](https://github.com/clarkmcc/cel-rust/compare/cel-parser-v0.7.1...cel-parser-v0.8.0) - 2024-10-30 ### Other - Detailed parse error ([#102](https://github.com/clarkmcc/cel-rust/pull/102)) - Update lalrpop to 0.22 from 0.19.x ([#99](https://github.com/clarkmcc/cel-rust/pull/99)) - Fix `clippy::empty_line_after_doc_comments` lints ([#98](https://github.com/clarkmcc/cel-rust/pull/98)) - Conformance test fixes ([#79](https://github.com/clarkmcc/cel-rust/pull/79))
## `cel-interpreter`
## [0.9.0](https://github.com/clarkmcc/cel-rust/compare/cel-interpreter-v0.8.1...cel-interpreter-v0.9.0) - 2024-10-30 ### Other - Support `.map` over map ([#105](https://github.com/clarkmcc/cel-rust/pull/105)) - Detailed parse error ([#102](https://github.com/clarkmcc/cel-rust/pull/102)) - Fix `clippy::too_long_first_doc_paragraph` lints. ([#101](https://github.com/clarkmcc/cel-rust/pull/101)) - Support empty/default contexts, put chrono/regex behind features ([#97](https://github.com/clarkmcc/cel-rust/pull/97)) - Fix `clippy::empty_line_after_doc_comments` lints ([#98](https://github.com/clarkmcc/cel-rust/pull/98)) - Allow `.size()` method on types ([#88](https://github.com/clarkmcc/cel-rust/pull/88)) - Conformance test fixes ([#79](https://github.com/clarkmcc/cel-rust/pull/79)) - Convert CEL values to JSON ([#77](https://github.com/clarkmcc/cel-rust/pull/77))


This PR was generated with release-plz.