chore(deps): update openpolicyagent/opa docker tag to v1.6.0#3734
Merged
chore(deps): update openpolicyagent/opa docker tag to v1.6.0#3734
Conversation
Contributor
|
🎉 Merging this PR at this moment should result in version 3.9.24 |
Contributor
|
🎉 Merging this PR at this moment should result in version 3.9.24 |
Contributor
Author
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. |
Contributor
|
🎉 Merging this PR at this moment should result in version 3.9.24 |
edgarvonk
approved these changes
Jun 30, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR contains the following updates:
1.5.1-static->1.6.0-staticWarning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
open-policy-agent/opa (openpolicyagent/opa)
v1.6.0Compare Source
This release contains a mix of new features, performance improvements, and bugfixes. Notably:
Modernized OPA Website (#7037)
We're continuing to modernize the OPA website with a new design and improved user experience.
Some highlights:
Authored by @sky3n3t and @charlieegan3
Allowing keywords in Rego references (#7709)
Previously, Rego references could not contain terms that conflict with Rego keywords such as
package,if,else,not, etc.in certain constructs:
The constraints for valid Rego references have been relaxed to allow keywords.
The above example is now valid and will no longer cause a compilation error.
Authored by @johanfylling
Parallel Test Execution (#7442)
By default, OPA will now run tests in parallel (defaulting to one parallel execution thread per available CPU core), significantly speeding up test execution time for large test suites.
The performance boost is closely tied to the number of tests in your project and your selected parallelism level. For larger projects and default settings, 2-3x performance gains have been measured on a MacBook Pro.
Parallelism can be disabled to run tests sequentially by setting the
--parallelflag to1. E.g.opa test . --parallel=1.Authored by @sspaink reported by @anderseknert
Faster Builtin Function Evaluation
The builtin context, an internal construct of OPA's evaluation engine, was previously provided to every builtin function.
As it turns out, only very few of them actually need it, for caching, cancellation, or lookups.
Those builtins are still provided with a builtin context, but for calls to all other builtins, we save the memory required by it.
The impact is tremendous: Even though the size of a single builtin context is only about 270 bytes, in an example application (Regal), this change brings about 360 MB of reduced memory usage!
Authored by @anderseknert
Runtime, Tooling, SDK
opa check --bundlereport virtual/base doc conflicts (#7701) authored by @anderseknertWhen
opa checkis used with the--bundleflag, an error will be reported if the provided json/yaml data has a conflicting overlap with the virtual documents generated by Rego rules. Such conflicts are ambiguous and can lead to unexpected evaluation results, and should be resolved.opa inspectwith JSON format (#7459) authored by @johanfylling reported by @mostealth--v0-compatibleflag (#7668) authored by @tsandallNote: This is a potentially breaking change for go API users directly interfacing with the OPA server's routing.
Note: This is only applicable for the web UI hosted by OPA on its root path (
/) and OPA is served at some other path than root.Compiler, Topdown and Rego
Note: Primitive Rego number values with leading zeros (e.g.
0123) are now considered invalid at time of parsing and will generate an error. If you're impacted by this change, please update your policies to not have numbers with leading zeros. E.g.0123should be changed to123.walkwould get mutated (#7656) authored by @anderseknert reported by @robmyersrobmyersDocs, Website, Ecosystem
Miscellaneous
google.golang.org/protobuf(#7655) authored by @sspainkconcatperformance (#7702) authored by @anderseknertConfiguration
📅 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 becomes conflicted, 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.