opa
opa copied to clipboard
Open Policy Agent (OPA) is an open source, general-purpose policy engine.
### Why the changes in this PR are needed? This is to improve the concat function mentioned here [https://github.com/open-policy-agent/opa/issues/6911](ISSUE 6911) ### What are the changes in this PR? Changed concat...
Dusting off some old notes I found, and this one still seems relevant. ```rego package p import rego.v1 deny contains "noooo" if { # ... conditions } allow if {...
Every function down the call stacks of a with-replacement that does this will now get extra variables added to its args to carry along the local variables that will eventually...
I wanted to look something up in the OPA docs on bundles today, and so I searched for “bundle” and “bundles” to get there quickly. But.. neither of these terms...
Bundles currently own the roots they've defined, or _all_ roots if none have been provided. Some tools extending OPA embed a bundle of their own to e.g. provide Rego rules...
## What is the underlying problem you're trying to solve? We are sending a REST request in OPA with a request specific header and would like to include this header...
The tests for the inter-query cache in `topdown/cache/cache_test.go` has intermittent, failing tests. E.g.: https://github.com/open-policy-agent/opa/actions/runs/10618059480/job/29432842474?pr=6977#step:6:175 This could be indicative of an issue in the cache itself; or it could be a...
### Why the changes in this PR are needed? ### What are the changes in this PR? ### Notes to assist PR review: ### Further comments:
Bumps [rollup](https://github.com/rollup/rollup) from 2.51.2 to 3.29.5. Release notes Sourced from rollup's releases. v3.29.4 3.29.4 2023-09-28 Bug Fixes Fix static analysis when an exported function uses callbacks (#5158) Pull Requests #5158:...
## What is the underlying problem you're trying to solve? Type checking can be improved with schemas, it's very cool. Right now Rego only does type checking when accessing an...