chore(deps): update openpolicyagent/opa docker tag to v1.18.2 #45

Open
sa-renovate wants to merge 1 commit from renovate/openpolicyagent-opa-1.x into main
Member

This PR contains the following updates:

Package Type Update Change
openpolicyagent/opa (source) Kustomization minor 1.17.11.18.2

Release Notes

open-policy-agent/opa (openpolicyagent/opa)

v1.18.2

Compare Source

This release includes a bug fix for a opa fmt regression introduced in v1.18.0.

The original fix for #​8557 had the formatter enforce newlines in single-item
collections (arrays, objects, sets) rather than merely honoring existing ones.
As a result, running opa fmt on already-formatted policies could introduce
a large number of unwanted changes. This patch release restores the intended
behavior: only newlines already present in the source determine whether a
single-item collection is formatted on one line or across multiple lines.

Fixes

v1.18.1

Compare Source

This release fixes a memory leak introduced in OPA v1.17.0.
It is advised to update if you notice excess memory usage when running OPA server.

Fixes

v1.18.0

Compare Source

This release contains a mix of bugfixes and small features. Notably:

  • A breaking fix to the outbound User-Agent header so it conforms to RFC 9110 (see below)
  • Container-aware resource limits: automatic GOMAXPROCS is restored and automatic GOMEMLIMIT is now supported
  • Several opa fmt correctness fixes
  • Improvements to opa test --coverage (ranges in report, inline rule head tracking, conjunction-expression coverage)
Breaking: Fix User-Agent according to RFC9110 (#​8792)

OPA's outbound HTTP requests (bundle, discovery, decision log, status, http.send, AWS KMS/ECR)
previously sent User-Agent: Open Policy Agent/<version> (<os>, <arch>), which is not a valid
RFC 9110 User-Agent value because the product token cannot contain spaces. The header is now
Open-Policy-Agent/<version> (<os>, <arch>). Server-side log filters or WAF rules that
exact-match the old string will need to be updated.

Authored by @​sspaink, reported by @​SpecLad

Runtime, SDK, Tooling
Compiler, Topdown and Rego
Docs, Website, Ecosystem
Miscellaneous
  • benchmarks: smaller tweaks (#​8759) authored by @​srenatus
  • benchmarks: split off script, emit markdown table (#​8812) authored by @​srenatus
  • benchmarks: use details+summary comments for benchlab results (#​8811) authored by @​srenatus
  • capabilities: Integrate 1.17.1 patch release (#​8798) authored by @​sspaink
  • chore: tidy go.mod to remove untagged versions (#​8791) authored by @​thaJeztah
  • e2e: Add proto schemas for the IR plan and bundle manifest (#​8766) reported and authored by @​sspaink
  • gha: deduplicate change-detection output in pr CI checks (#​8808) authored by @​sspaink
  • nightly: use regal@​main (#​8735) authored by @​srenatus
  • workflow: remove tests from docker (edge) image build (#​8721) authored by @​srenatus
  • workflows: bring back docker edge tags for post-merge (#​8718) authored by @​srenatus
  • workflows: use go-version-file with actions/setup-go (#​8751) authored by @​srenatus
  • Dependency updates; notably:
    • build(deps): Add github.com/KimMachineGun/automemlimit v0.7.5
    • build(deps): Add go.uber.org/automaxprocs v1.6.0
    • build(deps): Bump github.com/dgraph-io/badger/v4 from v4.9.1 to v4.9.2
    • build(deps): Bump github.com/vektah/gqlparser/v2 from v2.5.33 to v2.5.34
    • build(deps): Bump go.opentelemetry.io/contrib/bridges/prometheus from v0.68.0 to v0.69.0
    • build(deps): Bump go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp from v0.68.0 to v0.69.0
    • build(deps): Bump go.opentelemetry.io/otel from v1.43.0 to v1.44.0
    • build(deps): Bump go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc from v1.43.0 to v1.44.0
    • build(deps): Bump go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp from v1.43.0 to v1.44.0
    • build(deps): Bump go.opentelemetry.io/otel/exporters/otlp/otlptrace from v1.43.0 to v1.44.0
    • build(deps): Bump go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc from v1.43.0 to v1.44.0
    • build(deps): Bump go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp from v1.43.0 to v1.44.0
    • build(deps): Bump go.opentelemetry.io/otel/sdk from v1.43.0 to v1.44.0
    • build(deps): Bump go.opentelemetry.io/otel/sdk/metric from v1.43.0 to v1.44.0
    • build(deps): Bump go.opentelemetry.io/otel/trace from v1.43.0 to v1.44.0
    • build(deps): Bump golang.org/x/sync from v0.20.0 to v0.21.0
    • build(deps): Bump golang.org/x/text from v0.37.0 to v0.38.0
    • build(deps): Bump google.golang.org/grpc from v1.81.0 to v1.81.1
    • build(deps): Bump gopkg.in/ini.v1 from v1.67.2 to v1.67.3
    • build(deps): Bump oras.land/oras-go/v2 from v2.6.0 to v2.6.1
    • build(deps): bump golang.org/x/crypto to v0.52.0 and golang.org/x/net to v0.55.0 (#​8745) authored by @​BGebken
    • build: bump go 1.26.3 -> 1.26.4 (#​8726) authored by @​srenatus
WebAssembly runtime: wasmtime-go replaced with wazero

OPA's WebAssembly runtime — used by the wasm evaluation target and the WASM SDK — now runs on
the pure-Go wazero runtime instead of bytecodealliance/wasmtime-go. This
removes the cgo dependency from this path, so wasm-enabled builds no longer need a C toolchain.

Compiled policy modules are now cached process-wide, so repeated VM creation for the same policy
skips recompilation. On an Apple M4 Max this makes wasm cold start (compile + instantiate + first
eval) about 73% faster, and warm evaluation about 29% faster with ~28% fewer allocations.

One side effect worth noting: wasm linear memory is now allocated on the Go heap rather than in C,
so memory profiles and B/op figures for wasm evaluations account for it (it was previously
invisible to Go's allocator).


Configuration

📅 Schedule: (UTC)

  • 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.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [openpolicyagent/opa](https://images.chainguard.dev/directory/image/glibc-dynamic/overview) ([source](https://github.com/open-policy-agent/opa)) | Kustomization | minor | `1.17.1` → `1.18.2` | --- ### Release Notes <details> <summary>open-policy-agent/opa (openpolicyagent/opa)</summary> ### [`v1.18.2`](https://github.com/open-policy-agent/opa/blob/HEAD/CHANGELOG.md#1182) [Compare Source](https://github.com/open-policy-agent/opa/compare/v1.18.1...v1.18.2) This release includes a bug fix for a `opa fmt` regression introduced in v1.18.0. The original fix for [#&#8203;8557](https://github.com/open-policy-agent/opa/issues/8557) had the formatter enforce newlines in single-item collections (arrays, objects, sets) rather than merely honoring existing ones. As a result, running `opa fmt` on already-formatted policies could introduce a large number of unwanted changes. This patch release restores the intended behavior: only newlines already present in the source determine whether a single-item collection is formatted on one line or across multiple lines. ##### Fixes - Fix regression in fix of [#&#8203;8557](https://github.com/open-policy-agent/opa/issues/8557) ([#&#8203;8845](https://github.com/open-policy-agent/opa/issues/8845)) (authored by [@&#8203;anderseknert](https://github.com/anderseknert)) ### [`v1.18.1`](https://github.com/open-policy-agent/opa/blob/HEAD/CHANGELOG.md#1181) [Compare Source](https://github.com/open-policy-agent/opa/compare/v1.18.0...v1.18.1) This release fixes a memory leak introduced in OPA v1.17.0. It is advised to update if you notice excess memory usage when running OPA server. ##### Fixes - ast: fix AnnotationSet memory leak via runtime.AddCleanup cycle ([#&#8203;8817](https://github.com/open-policy-agent/opa/issues/8817)) authored by [@&#8203;srenatus](https://github.com/srenatus) reported by [@&#8203;keydon](https://github.com/keydon) and [@&#8203;gorsr01](https://github.com/gorsr01) ### [`v1.18.0`](https://github.com/open-policy-agent/opa/blob/HEAD/CHANGELOG.md#1180) [Compare Source](https://github.com/open-policy-agent/opa/compare/v1.17.1...v1.18.0) This release contains a mix of bugfixes and small features. Notably: - A breaking fix to the outbound `User-Agent` header so it conforms to RFC 9110 (see below) - Container-aware resource limits: automatic `GOMAXPROCS` is restored and automatic `GOMEMLIMIT` is now supported - Several `opa fmt` correctness fixes - Improvements to `opa test --coverage` (ranges in report, inline rule head tracking, conjunction-expression coverage) ##### Breaking: Fix User-Agent according to RFC9110 ([#&#8203;8792](https://github.com/open-policy-agent/opa/issues/8792)) OPA's outbound HTTP requests (bundle, discovery, decision log, status, `http.send`, AWS KMS/ECR) previously sent `User-Agent: Open Policy Agent/<version> (<os>, <arch>)`, which is not a valid RFC 9110 `User-Agent` value because the `product` token cannot contain spaces. The header is now `Open-Policy-Agent/<version> (<os>, <arch>)`. Server-side log filters or WAF rules that exact-match the old string will need to be updated. Authored by [@&#8203;sspaink](https://github.com/sspaink), reported by [@&#8203;SpecLad](https://github.com/SpecLad) ##### Runtime, SDK, Tooling - bundle: fix per-module rego version lookup ([#&#8203;8797](https://github.com/open-policy-agent/opa/issues/8797)) authored by [@&#8203;sspaink](https://github.com/sspaink), reported by [@&#8203;xubinzheng](https://github.com/xubinzheng) - bundle: improve determinism of `file_rego_versions` patterns with overlap ([#&#8203;8733](https://github.com/open-policy-agent/opa/pull/8733)) authored by [@&#8203;philipaconrad](https://github.com/philipaconrad) - cover: Track inline rule head in post trace walk ([#&#8203;6531](https://github.com/open-policy-agent/opa/issues/6531)) authored by [@&#8203;charlieegan3](https://github.com/charlieegan3), reported by [@&#8203;anderseknert](https://github.com/anderseknert) - cover: Update report to include ranges ([#&#8203;8748](https://github.com/open-policy-agent/opa/issues/8748)) reported and authored by [@&#8203;charlieegan3](https://github.com/charlieegan3) - cover: Add support for coverage of conjunction exprs ([#&#8203;8809](https://github.com/open-policy-agent/opa/pull/8809)) authored by [@&#8203;charlieegan3](https://github.com/charlieegan3) - download/oci: Set Accept headers ([#&#8203;8720](https://github.com/open-policy-agent/opa/pull/8720)) authored by [@&#8203;charlieegan3](https://github.com/charlieegan3) - fmt: preserve the multiline but single entry iterables ([#&#8203;8557](https://github.com/open-policy-agent/opa/issues/8557)) authored by [@&#8203;unichronic](https://github.com/unichronic), reported by [@&#8203;anderseknert](https://github.com/anderseknert) - format: Fix dropped with-clause after comment in object value ([#&#8203;8765](https://github.com/open-policy-agent/opa/issues/8765)) authored by [@&#8203;sspaink](https://github.com/sspaink), reported by [@&#8203;srabraham](https://github.com/srabraham) - format: keep lone `with` on the closing-bracket line of multi-line expressions ([#&#8203;8804](https://github.com/open-policy-agent/opa/issues/8804)) authored by [@&#8203;anneheartrecord](https://github.com/anneheartrecord), reported by [@&#8203;burnster](https://github.com/burnster) - oracle: Fix find-definition on expressions inside `ast.Not` nodes ([#&#8203;8731](https://github.com/open-policy-agent/opa/pull/8731)) authored by [@&#8203;johanfylling](https://github.com/johanfylling) - runtime: Restore goautomaxprocs, add automemlimit ([#&#8203;8784](https://github.com/open-policy-agent/opa/pull/8784)) authored by [@&#8203;charlieegan3](https://github.com/charlieegan3) ##### Compiler, Topdown and Rego - ast: Apply location to inner `ast.Not` expressions ([#&#8203;8717](https://github.com/open-policy-agent/opa/issues/8717)) authored by [@&#8203;johanfylling](https://github.com/johanfylling), reported by [@&#8203;anderseknert](https://github.com/anderseknert) - ast: Clean up code for value comparisons ([#&#8203;8737](https://github.com/open-policy-agent/opa/pull/8737)) authored by [@&#8203;anderseknert](https://github.com/anderseknert) - ast: Fix PE regression for `future.keywords.not` negation inside `every` ([#&#8203;8781](https://github.com/open-policy-agent/opa/pull/8781)) authored by [@&#8203;johanfylling](https://github.com/johanfylling) - internal/edittree: Add recursive tree node recycling ([#&#8203;8693](https://github.com/open-policy-agent/opa/pull/8693)) authored by [@&#8203;philipaconrad](https://github.com/philipaconrad) - internal: compile,planner: improve determinism of `plan`/`wasm` bundle builds ([#&#8203;8732](https://github.com/open-policy-agent/opa/pull/8732)) authored by [@&#8203;philipaconrad](https://github.com/philipaconrad) - perf: avoid allocations in `object.get` ([#&#8203;8729](https://github.com/open-policy-agent/opa/pull/8729)) authored by [@&#8203;anderseknert](https://github.com/anderseknert) - topdown: Fix PE not namespacing vars in comprehensions nested inside `every` ([#&#8203;8816](https://github.com/open-policy-agent/opa/pull/8816)) authored by [@&#8203;johanfylling](https://github.com/johanfylling) - topdown: remove `dst.Compare(src)` shortcut ([#&#8203;8739](https://github.com/open-policy-agent/opa/pull/8739)) authored by [@&#8203;srenatus](https://github.com/srenatus) - topdown: skip strconv.ParseInt in format\_int base-10 fast path ([#&#8203;8801](https://github.com/open-policy-agent/opa/pull/8801)) authored by [@&#8203;srenatus](https://github.com/srenatus) ##### Docs, Website, Ecosystem - docs/chore: Remove broken links ([#&#8203;8714](https://github.com/open-policy-agent/opa/issues/8714)) authored by [@&#8203;charlieegan3](https://github.com/charlieegan3), reported by [@&#8203;github-actions](https://github.com/github-actions) - docs: PoC for kapa.ai ([#&#8203;8125](https://github.com/open-policy-agent/opa/issues/8125)) reported and authored by [@&#8203;charlieegan3](https://github.com/charlieegan3) - docs(ecosystem): update OPA MCP entry with video, blog, and distribution links ([#&#8203;8712](https://github.com/open-policy-agent/opa/pull/8712)) authored by [@&#8203;OrygnsCode](https://github.com/OrygnsCode) - docs/contributing: add formatting ([#&#8203;8740](https://github.com/open-policy-agent/opa/pull/8740)) authored by [@&#8203;mmzzuu](https://github.com/mmzzuu) - docs: Add SDK references for evaluating IR plans ([#&#8203;8783](https://github.com/open-policy-agent/opa/pull/8783)) authored by [@&#8203;charlieegan3](https://github.com/charlieegan3) - docs: Add depkeep to enterprise support ([#&#8203;8685](https://github.com/open-policy-agent/opa/pull/8685)) authored by [@&#8203;pkuzco](https://github.com/pkuzco) - docs: Add notes about use of GOMEMLIMIT ([#&#8203;8771](https://github.com/open-policy-agent/opa/pull/8771)) authored by [@&#8203;charlieegan3](https://github.com/charlieegan3) - docs: Add we/our/us check to spell check ([#&#8203;8787](https://github.com/open-policy-agent/opa/pull/8787)) authored by [@&#8203;charlieegan3](https://github.com/charlieegan3) - docs: Update built-in index page titles ([#&#8203;8728](https://github.com/open-policy-agent/opa/pull/8728)) authored by [@&#8203;charlieegan3](https://github.com/charlieegan3) - docs: Update documentation to be more consistent and sound more like reference docs ([#&#8203;8786](https://github.com/open-policy-agent/opa/pull/8786)) authored by [@&#8203;charlieegan3](https://github.com/charlieegan3) - docs: Update regal docs for 0.41.1 release ([#&#8203;8730](https://github.com/open-policy-agent/opa/pull/8730)) authored by [@&#8203;charlieegan3](https://github.com/charlieegan3) - docs: Update to agents.md regarding security dependences 'fixes' ([#&#8203;8754](https://github.com/open-policy-agent/opa/pull/8754)) authored by [@&#8203;charlieegan3](https://github.com/charlieegan3) - docs: clarify environment variable substitution behaviour ([#&#8203;8713](https://github.com/open-policy-agent/opa/pull/8713)) authored by [@&#8203;taurelius](https://github.com/taurelius) - docs: remove duplicated word in Rego style guide ([#&#8203;8800](https://github.com/open-policy-agent/opa/pull/8800)) authored by [@&#8203;s3onghyun](https://github.com/s3onghyun) - website: Add .md alternate content types for llms ([#&#8203;8725](https://github.com/open-policy-agent/opa/pull/8725)) authored by [@&#8203;charlieegan3](https://github.com/charlieegan3) - website: Add support page disclaimer and sort by date added ([#&#8203;8736](https://github.com/open-policy-agent/opa/pull/8736)) authored by [@&#8203;charlieegan3](https://github.com/charlieegan3) - website: Fix build from missing dateAdded ([#&#8203;8764](https://github.com/open-policy-agent/opa/pull/8764)) authored by [@&#8203;charlieegan3](https://github.com/charlieegan3) - website: Update docusaurus ([#&#8203;8756](https://github.com/open-policy-agent/opa/pull/8756)) authored by [@&#8203;charlieegan3](https://github.com/charlieegan3) - website: Update homepage AI example to tool calls ([#&#8203;8755](https://github.com/open-policy-agent/opa/pull/8755)) authored by [@&#8203;charlieegan3](https://github.com/charlieegan3) - website: Various updates to node and website deps ([#&#8203;8768](https://github.com/open-policy-agent/opa/pull/8768)) authored by [@&#8203;charlieegan3](https://github.com/charlieegan3) - website: add ossrisk to ecosystem ([#&#8203;8780](https://github.com/open-policy-agent/opa/pull/8780)) authored by [@&#8203;pkuzco](https://github.com/pkuzco) ##### Miscellaneous - benchmarks: smaller tweaks ([#&#8203;8759](https://github.com/open-policy-agent/opa/pull/8759)) authored by [@&#8203;srenatus](https://github.com/srenatus) - benchmarks: split off script, emit markdown table ([#&#8203;8812](https://github.com/open-policy-agent/opa/pull/8812)) authored by [@&#8203;srenatus](https://github.com/srenatus) - benchmarks: use details+summary comments for benchlab results ([#&#8203;8811](https://github.com/open-policy-agent/opa/pull/8811)) authored by [@&#8203;srenatus](https://github.com/srenatus) - capabilities: Integrate 1.17.1 patch release ([#&#8203;8798](https://github.com/open-policy-agent/opa/pull/8798)) authored by [@&#8203;sspaink](https://github.com/sspaink) - chore: tidy go.mod to remove untagged versions ([#&#8203;8791](https://github.com/open-policy-agent/opa/pull/8791)) authored by [@&#8203;thaJeztah](https://github.com/thaJeztah) - e2e: Add proto schemas for the IR plan and bundle manifest ([#&#8203;8766](https://github.com/open-policy-agent/opa/issues/8766)) reported and authored by [@&#8203;sspaink](https://github.com/sspaink) - gha: deduplicate change-detection output in pr CI checks ([#&#8203;8808](https://github.com/open-policy-agent/opa/pull/8808)) authored by [@&#8203;sspaink](https://github.com/sspaink) - nightly: use regal\@&#8203;main ([#&#8203;8735](https://github.com/open-policy-agent/opa/pull/8735)) authored by [@&#8203;srenatus](https://github.com/srenatus) - workflow: remove tests from docker (edge) image build ([#&#8203;8721](https://github.com/open-policy-agent/opa/pull/8721)) authored by [@&#8203;srenatus](https://github.com/srenatus) - workflows: bring back docker edge tags for post-merge ([#&#8203;8718](https://github.com/open-policy-agent/opa/pull/8718)) authored by [@&#8203;srenatus](https://github.com/srenatus) - workflows: use `go-version-file` with `actions/setup-go` ([#&#8203;8751](https://github.com/open-policy-agent/opa/pull/8751)) authored by [@&#8203;srenatus](https://github.com/srenatus) - Dependency updates; notably: - build(deps): Add github.com/KimMachineGun/automemlimit v0.7.5 - build(deps): Add go.uber.org/automaxprocs v1.6.0 - build(deps): Bump github.com/dgraph-io/badger/v4 from v4.9.1 to v4.9.2 - build(deps): Bump github.com/vektah/gqlparser/v2 from v2.5.33 to v2.5.34 - build(deps): Bump go.opentelemetry.io/contrib/bridges/prometheus from v0.68.0 to v0.69.0 - build(deps): Bump go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp from v0.68.0 to v0.69.0 - build(deps): Bump go.opentelemetry.io/otel from v1.43.0 to v1.44.0 - build(deps): Bump go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc from v1.43.0 to v1.44.0 - build(deps): Bump go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp from v1.43.0 to v1.44.0 - build(deps): Bump go.opentelemetry.io/otel/exporters/otlp/otlptrace from v1.43.0 to v1.44.0 - build(deps): Bump go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc from v1.43.0 to v1.44.0 - build(deps): Bump go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp from v1.43.0 to v1.44.0 - build(deps): Bump go.opentelemetry.io/otel/sdk from v1.43.0 to v1.44.0 - build(deps): Bump go.opentelemetry.io/otel/sdk/metric from v1.43.0 to v1.44.0 - build(deps): Bump go.opentelemetry.io/otel/trace from v1.43.0 to v1.44.0 - build(deps): Bump golang.org/x/sync from v0.20.0 to v0.21.0 - build(deps): Bump golang.org/x/text from v0.37.0 to v0.38.0 - build(deps): Bump google.golang.org/grpc from v1.81.0 to v1.81.1 - build(deps): Bump gopkg.in/ini.v1 from v1.67.2 to v1.67.3 - build(deps): Bump oras.land/oras-go/v2 from v2.6.0 to v2.6.1 - build(deps): bump golang.org/x/crypto to v0.52.0 and golang.org/x/net to v0.55.0 ([#&#8203;8745](https://github.com/open-policy-agent/opa/pull/8745)) authored by [@&#8203;BGebken](https://github.com/BGebken) - build: bump go 1.26.3 -> 1.26.4 ([#&#8203;8726](https://github.com/open-policy-agent/opa/pull/8726)) authored by [@&#8203;srenatus](https://github.com/srenatus) ##### WebAssembly runtime: wasmtime-go replaced with wazero OPA's WebAssembly runtime — used by the `wasm` evaluation target and the WASM SDK — now runs on the pure-Go [wazero](https://wazero.io/) runtime instead of `bytecodealliance/wasmtime-go`. This removes the cgo dependency from this path, so `wasm`-enabled builds no longer need a C toolchain. Compiled policy modules are now cached process-wide, so repeated VM creation for the same policy skips recompilation. On an Apple M4 Max this makes wasm cold start (compile + instantiate + first eval) about 73% faster, and warm evaluation about 29% faster with \~28% fewer allocations. One side effect worth noting: wasm linear memory is now allocated on the Go heap rather than in C, so memory profiles and `B/op` figures for wasm evaluations account for it (it was previously invisible to Go's allocator). </details> --- ### Configuration 📅 **Schedule**: (UTC) - 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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yMzQuMCIsInVwZGF0ZWRJblZlciI6IjQzLjIzNC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
sa-renovate force-pushed renovate/openpolicyagent-opa-1.x from 5fca2c77a7 to 00ff215c47 2026-06-30 03:13:03 +00:00 Compare
sa-renovate changed title from chore(deps): update openpolicyagent/opa docker tag to v1.18.0 to chore(deps): update openpolicyagent/opa docker tag to v1.18.1 2026-06-30 03:13:06 +00:00
sa-renovate force-pushed renovate/openpolicyagent-opa-1.x from 00ff215c47 to fb6a704784 2026-07-03 03:12:19 +00:00 Compare
sa-renovate changed title from chore(deps): update openpolicyagent/opa docker tag to v1.18.1 to chore(deps): update openpolicyagent/opa docker tag to v1.18.2 2026-07-03 03:12:22 +00:00
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/openpolicyagent-opa-1.x:renovate/openpolicyagent-opa-1.x
git switch renovate/openpolicyagent-opa-1.x

Merge

Merge the changes and update on Forgejo.

Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.

git switch main
git merge --no-ff renovate/openpolicyagent-opa-1.x
git switch renovate/openpolicyagent-opa-1.x
git rebase main
git switch main
git merge --ff-only renovate/openpolicyagent-opa-1.x
git switch renovate/openpolicyagent-opa-1.x
git rebase main
git switch main
git merge --no-ff renovate/openpolicyagent-opa-1.x
git switch main
git merge --squash renovate/openpolicyagent-opa-1.x
git switch main
git merge --ff-only renovate/openpolicyagent-opa-1.x
git switch main
git merge renovate/openpolicyagent-opa-1.x
git push origin main
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
DevFW-CICD/poc-core-deploy!45
No description provided.