UNCLASSIFIED - NO CUI

Skip to content

Master: Renovate: Automerge Update dependency without new findings

Ghost User requested to merge development into master

This MR contains the following updates:

Package Type Update Change
openpolicyagent/opa ironbank-docker patch 0.50.1-static -> 0.50.2-static
openpolicyagent/opa patch 0.50.1 -> 0.50.2
openpolicyagent/opa stage patch 0.50.1-static -> 0.50.2-static

Release Notes

open-policy-agent/opa

v0.50.2

Compare Source

This is a bug fix release that addresses a regression in 0.50.1. This regression impacts policies with rules that, as its else-value, assign a comprehension containing variables. Such rules would cause the compilation of the policy to fail with a rego_unsafe_var_error error.

E.g. the following policy would fail to compile with a policy.rego:5: rego_unsafe_var_error: var x is unsafe error:

package example

p {
	false
} else := [x |

Merge request reports