chore(deps): update dependency dev.cel:cel to v0.11.0 #1603
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Coming soon: The Renovate bot (GitHub App) will be renamed to Mend. PRs from Renovate will soon appear from 'Mend'. Learn more here.
This PR contains the following updates:
0.10.1
->0.11.0
Release Notes
google/cel-java (dev.cel:cel)
v0.11.0
Compare Source
Features
<list>.all(indexVar, valueVar, <predicate>) -> bool
)imports
keyword to abbreviate type names.slice
,distinct
,reverse
,sort
, andsortBy
.Breaking Changes
PR #769 removes
setContainer(String)
method on theCel
,CelCompiler
, andCelChecker
builders. Callers must usesetContainer(CelContainer)
instead, which supports aliasing and abbreviations in addition to existing container resolution. For a migration that preserves existing behavior, simply provideCelContainer.ofName(string)
.PR #789 changes the internal representation of CEL's
null
andbytes
literals (e.g.,b'foo'
) to their CEL-native Java type equivalents (dev.cel.common.Values.NullValue
anddev.cel.common.values.CelByteString
) instead of their Protobuf counterparts (com.google.protobuf.NullValue
andcom.google.protobuf.ByteString
). This is currently a breaking change only if your codebase references these literals through theCelConstant
AST node. There are no observable changes in evaluation behavior, as this is currently controlled by a feature flag. We plan on enabling this by default in a future release.Bug fixes
replaceSubtree
to properly populate source info for the three-argument map macro in #794.CelContainer.toBuilder()
to properly copy aliases in #775.What's Changed
Aliasing and Abbreviations
CEL Policy Compiler
CEL Environment
Extensions
transformMap
andtransformMapEntry
macros in #800Miscellaneous
Full Changelog: google/cel-java@v0.10.1...v0.11.0
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.