Skip to content

Commit 25f3310

Browse files
fix(deps): update module github.com/open-policy-agent/opa to v1.18.1 (8.19) (#7089)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [github.com/open-policy-agent/opa](https://redirect.github.com/open-policy-agent/opa) | `v1.17.1` -> `v1.18.1` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fopen-policy-agent%2fopa/v1.18.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fopen-policy-agent%2fopa/v1.17.1/v1.18.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>open-policy-agent/opa (github.com/open-policy-agent/opa)</summary> ### [`v1.18.1`](https://redirect.github.com/open-policy-agent/opa/releases/tag/v1.18.1) [Compare Source](https://redirect.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://redirect.github.com/open-policy-agent/opa/issues/8817)) authored by [@&#8203;srenatus](https://redirect.github.com/srenatus) reported by [@&#8203;keydon](https://redirect.github.com/keydon) and [@&#8203;gorsr01](https://redirect.github.com/gorsr01) ### [`v1.18.0`](https://redirect.github.com/open-policy-agent/opa/releases/tag/v1.18.0) [Compare Source](https://redirect.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://redirect.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://redirect.github.com/sspaink), reported by [@&#8203;SpecLad](https://redirect.github.com/SpecLad) ##### Runtime, SDK, Tooling - bundle: fix per-module rego version lookup ([#&#8203;8797](https://redirect.github.com/open-policy-agent/opa/issues/8797)) authored by [@&#8203;sspaink](https://redirect.github.com/sspaink), reported by [@&#8203;xubinzheng](https://redirect.github.com/xubinzheng) - bundle: improve determinism of `file_rego_versions` patterns with overlap ([#&#8203;8733](https://redirect.github.com/open-policy-agent/opa/pull/8733)) authored by [@&#8203;philipaconrad](https://redirect.github.com/philipaconrad) - cover: Track inline rule head in post trace walk ([#&#8203;6531](https://redirect.github.com/open-policy-agent/opa/issues/6531)) authored by [@&#8203;charlieegan3](https://redirect.github.com/charlieegan3), reported by [@&#8203;anderseknert](https://redirect.github.com/anderseknert) - cover: Update report to include ranges ([#&#8203;8748](https://redirect.github.com/open-policy-agent/opa/issues/8748)) reported and authored by [@&#8203;charlieegan3](https://redirect.github.com/charlieegan3) - cover: Add support for coverage of conjunction exprs ([#&#8203;8809](https://redirect.github.com/open-policy-agent/opa/pull/8809)) authored by [@&#8203;charlieegan3](https://redirect.github.com/charlieegan3) - download/oci: Set Accept headers ([#&#8203;8720](https://redirect.github.com/open-policy-agent/opa/pull/8720)) authored by [@&#8203;charlieegan3](https://redirect.github.com/charlieegan3) - fmt: preserve the multiline but single entry iterables ([#&#8203;8557](https://redirect.github.com/open-policy-agent/opa/issues/8557)) authored by [@&#8203;unichronic](https://redirect.github.com/unichronic), reported by [@&#8203;anderseknert](https://redirect.github.com/anderseknert) - format: Fix dropped with-clause after comment in object value ([#&#8203;8765](https://redirect.github.com/open-policy-agent/opa/issues/8765)) authored by [@&#8203;sspaink](https://redirect.github.com/sspaink), reported by [@&#8203;srabraham](https://redirect.github.com/srabraham) - format: keep lone `with` on the closing-bracket line of multi-line expressions ([#&#8203;8804](https://redirect.github.com/open-policy-agent/opa/issues/8804)) authored by [@&#8203;anneheartrecord](https://redirect.github.com/anneheartrecord), reported by [@&#8203;burnster](https://redirect.github.com/burnster) - oracle: Fix find-definition on expressions inside `ast.Not` nodes ([#&#8203;8731](https://redirect.github.com/open-policy-agent/opa/pull/8731)) authored by [@&#8203;johanfylling](https://redirect.github.com/johanfylling) - runtime: Restore goautomaxprocs, add automemlimit ([#&#8203;8784](https://redirect.github.com/open-policy-agent/opa/pull/8784)) authored by [@&#8203;charlieegan3](https://redirect.github.com/charlieegan3) ##### Compiler, Topdown and Rego - ast: Apply location to inner `ast.Not` expressions ([#&#8203;8717](https://redirect.github.com/open-policy-agent/opa/issues/8717)) authored by [@&#8203;johanfylling](https://redirect.github.com/johanfylling), reported by [@&#8203;anderseknert](https://redirect.github.com/anderseknert) - ast: Clean up code for value comparisons ([#&#8203;8737](https://redirect.github.com/open-policy-agent/opa/pull/8737)) authored by [@&#8203;anderseknert](https://redirect.github.com/anderseknert) - ast: Fix PE regression for `future.keywords.not` negation inside `every` ([#&#8203;8781](https://redirect.github.com/open-policy-agent/opa/pull/8781)) authored by [@&#8203;johanfylling](https://redirect.github.com/johanfylling) - internal/edittree: Add recursive tree node recycling ([#&#8203;8693](https://redirect.github.com/open-policy-agent/opa/pull/8693)) authored by [@&#8203;philipaconrad](https://redirect.github.com/philipaconrad) - internal: compile,planner: improve determinism of `plan`/`wasm` bundle builds ([#&#8203;8732](https://redirect.github.com/open-policy-agent/opa/pull/8732)) authored by [@&#8203;philipaconrad](https://redirect.github.com/philipaconrad) - perf: avoid allocations in `object.get` ([#&#8203;8729](https://redirect.github.com/open-policy-agent/opa/pull/8729)) authored by [@&#8203;anderseknert](https://redirect.github.com/anderseknert) - topdown: Fix PE not namespacing vars in comprehensions nested inside `every` ([#&#8203;8816](https://redirect.github.com/open-policy-agent/opa/pull/8816)) authored by [@&#8203;johanfylling](https://redirect.github.com/johanfylling) - topdown: remove `dst.Compare(src)` shortcut ([#&#8203;8739](https://redirect.github.com/open-policy-agent/opa/pull/8739)) authored by [@&#8203;srenatus](https://redirect.github.com/srenatus) - topdown: skip strconv.ParseInt in format\_int base-10 fast path ([#&#8203;8801](https://redirect.github.com/open-policy-agent/opa/pull/8801)) authored by [@&#8203;srenatus](https://redirect.github.com/srenatus) ##### Docs, Website, Ecosystem - docs/chore: Remove broken links ([#&#8203;8714](https://redirect.github.com/open-policy-agent/opa/issues/8714)) authored by [@&#8203;charlieegan3](https://redirect.github.com/charlieegan3), reported by [@&#8203;github-actions](https://redirect.github.com/github-actions) - docs: PoC for kapa.ai ([#&#8203;8125](https://redirect.github.com/open-policy-agent/opa/issues/8125)) reported and authored by [@&#8203;charlieegan3](https://redirect.github.com/charlieegan3) - docs(ecosystem): update OPA MCP entry with video, blog, and distribution links ([#&#8203;8712](https://redirect.github.com/open-policy-agent/opa/pull/8712)) authored by [@&#8203;OrygnsCode](https://redirect.github.com/OrygnsCode) - docs/contributing: add formatting ([#&#8203;8740](https://redirect.github.com/open-policy-agent/opa/pull/8740)) authored by [@&#8203;mmzzuu](https://redirect.github.com/mmzzuu) - docs: Add SDK references for evaluating IR plans ([#&#8203;8783](https://redirect.github.com/open-policy-agent/opa/pull/8783)) authored by [@&#8203;charlieegan3](https://redirect.github.com/charlieegan3) - docs: Add depkeep to enterprise support ([#&#8203;8685](https://redirect.github.com/open-policy-agent/opa/pull/8685)) authored by [@&#8203;pkuzco](https://redirect.github.com/pkuzco) - docs: Add notes about use of GOMEMLIMIT ([#&#8203;8771](https://redirect.github.com/open-policy-agent/opa/pull/8771)) authored by [@&#8203;charlieegan3](https://redirect.github.com/charlieegan3) - docs: Add we/our/us check to spell check ([#&#8203;8787](https://redirect.github.com/open-policy-agent/opa/pull/8787)) authored by [@&#8203;charlieegan3](https://redirect.github.com/charlieegan3) - docs: Update built-in index page titles ([#&#8203;8728](https://redirect.github.com/open-policy-agent/opa/pull/8728)) authored by [@&#8203;charlieegan3](https://redirect.github.com/charlieegan3) - docs: Update documentation to be more consistent and sound more like reference docs ([#&#8203;8786](https://redirect.github.com/open-policy-agent/opa/pull/8786)) authored by [@&#8203;charlieegan3](https://redirect.github.com/charlieegan3) - docs: Update regal docs for 0.41.1 release ([#&#8203;8730](https://redirect.github.com/open-policy-agent/opa/pull/8730)) authored by [@&#8203;charlieegan3](https://redirect.github.com/charlieegan3) - docs: Update to agents.md regarding security dependences 'fixes' ([#&#8203;8754](https://redirect.github.com/open-policy-agent/opa/pull/8754)) authored by [@&#8203;charlieegan3](https://redirect.github.com/charlieegan3) - docs: clarify environment variable substitution behaviour ([#&#8203;8713](https://redirect.github.com/open-policy-agent/opa/pull/8713)) authored by [@&#8203;taurelius](https://redirect.github.com/taurelius) - docs: remove duplicated word in Rego style guide ([#&#8203;8800](https://redirect.github.com/open-policy-agent/opa/pull/8800)) authored by [@&#8203;s3onghyun](https://redirect.github.com/s3onghyun) - website: Add .md alternate content types for llms ([#&#8203;8725](https://redirect.github.com/open-policy-agent/opa/pull/8725)) authored by [@&#8203;charlieegan3](https://redirect.github.com/charlieegan3) - website: Add support page disclaimer and sort by date added ([#&#8203;8736](https://redirect.github.com/open-policy-agent/opa/pull/8736)) authored by [@&#8203;charlieegan3](https://redirect.github.com/charlieegan3) - website: Fix build from missing dateAdded ([#&#8203;8764](https://redirect.github.com/open-policy-agent/opa/pull/8764)) authored by [@&#8203;charlieegan3](https://redirect.github.com/charlieegan3) - website: Update docusaurus ([#&#8203;8756](https://redirect.github.com/open-policy-agent/opa/pull/8756)) authored by [@&#8203;charlieegan3](https://redirect.github.com/charlieegan3) - website: Update homepage AI example to tool calls ([#&#8203;8755](https://redirect.github.com/open-policy-agent/opa/pull/8755)) authored by [@&#8203;charlieegan3](https://redirect.github.com/charlieegan3) - website: Various updates to node and website deps ([#&#8203;8768](https://redirect.github.com/open-policy-agent/opa/pull/8768)) authored by [@&#8203;charlieegan3](https://redirect.github.com/charlieegan3) - website: add ossrisk to ecosystem ([#&#8203;8780](https://redirect.github.com/open-policy-agent/opa/pull/8780)) authored by [@&#8203;pkuzco](https://redirect.github.com/pkuzco) ##### Miscellaneous - benchmarks: smaller tweaks ([#&#8203;8759](https://redirect.github.com/open-policy-agent/opa/pull/8759)) authored by [@&#8203;srenatus](https://redirect.github.com/srenatus) - benchmarks: split off script, emit markdown table ([#&#8203;8812](https://redirect.github.com/open-policy-agent/opa/pull/8812)) authored by [@&#8203;srenatus](https://redirect.github.com/srenatus) - benchmarks: use details+summary comments for benchlab results ([#&#8203;8811](https://redirect.github.com/open-policy-agent/opa/pull/8811)) authored by [@&#8203;srenatus](https://redirect.github.com/srenatus) - capabilities: Integrate 1.17.1 patch release ([#&#8203;8798](https://redirect.github.com/open-policy-agent/opa/pull/8798)) authored by [@&#8203;sspaink](https://redirect.github.com/sspaink) - chore: tidy go.mod to remove untagged versions ([#&#8203;8791](https://redirect.github.com/open-policy-agent/opa/pull/8791)) authored by [@&#8203;thaJeztah](https://redirect.github.com/thaJeztah) - e2e: Add proto schemas for the IR plan and bundle manifest ([#&#8203;8766](https://redirect.github.com/open-policy-agent/opa/issues/8766)) reported and authored by [@&#8203;sspaink](https://redirect.github.com/sspaink) - gha: deduplicate change-detection output in pr CI checks ([#&#8203;8808](https://redirect.github.com/open-policy-agent/opa/pull/8808)) authored by [@&#8203;sspaink](https://redirect.github.com/sspaink) - nightly: use regal\@&#8203;main ([#&#8203;8735](https://redirect.github.com/open-policy-agent/opa/pull/8735)) authored by [@&#8203;srenatus](https://redirect.github.com/srenatus) - workflow: remove tests from docker (edge) image build ([#&#8203;8721](https://redirect.github.com/open-policy-agent/opa/pull/8721)) authored by [@&#8203;srenatus](https://redirect.github.com/srenatus) - workflows: bring back docker edge tags for post-merge ([#&#8203;8718](https://redirect.github.com/open-policy-agent/opa/pull/8718)) authored by [@&#8203;srenatus](https://redirect.github.com/srenatus) - workflows: use `go-version-file` with `actions/setup-go` ([#&#8203;8751](https://redirect.github.com/open-policy-agent/opa/pull/8751)) authored by [@&#8203;srenatus](https://redirect.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://redirect.github.com/open-policy-agent/opa/pull/8745)) authored by [@&#8203;BGebken](https://redirect.github.com/BGebken) - build: bump go 1.26.3 -> 1.26.4 ([#&#8203;8726](https://redirect.github.com/open-policy-agent/opa/pull/8726)) authored by [@&#8203;srenatus](https://redirect.github.com/srenatus) </details> --- ### Configuration 📅 **Schedule**: Branch creation - Between 01:00 AM and 01:59 AM, Monday through Friday ( * 1 * * 1-5 ) (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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 [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC42Mi4xIiwidXBkYXRlZEluVmVyIjoiNDEuMTczLjEiLCJ0YXJnZXRCcmFuY2giOiI4LjE5IiwibGFiZWxzIjpbIlRlYW06U2VjdXJpdHktQ2xvdWQgU2VydmljZXMiLCJiYWNrcG9ydC1za2lwIiwiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGUiLCJyZW5vdmF0ZS1hdXRvLWFwcHJvdmUiXX0=--> Co-authored-by: elastic-renovate-prod[bot] <174716857+elastic-renovate-prod[bot]@users.noreply.github.com>
1 parent 2d2cb45 commit 25f3310

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ require (
6969
github.com/mikefarah/yq/v4 v4.53.3
7070
github.com/mitchellh/gox v1.0.1
7171
github.com/mitchellh/mapstructure v1.5.1-0.20231216201459-8508981c8b6c
72-
github.com/open-policy-agent/opa v1.17.1
72+
github.com/open-policy-agent/opa v1.18.1
7373
github.com/pierrre/gotestcover v0.0.0-20160517101806-924dca7d15f0
7474
github.com/samber/lo v1.53.0
7575
github.com/spf13/viper v1.21.0

go.sum

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -390,8 +390,8 @@ github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1
390390
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
391391
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.4.1 h1:5RVFMOWjMyRy8cARdy79nAmgYw3hK/4HUq48LQ6Wwqo=
392392
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.4.1/go.mod h1:ZXNYxsqcloTdSy/rNShjYzMhyjf0LaoftYK0p+A3h40=
393-
github.com/dgraph-io/badger/v4 v4.9.1 h1:DocZXZkg5JJHJPtUErA0ibyHxOVUDVoXLSCV6t8NC8w=
394-
github.com/dgraph-io/badger/v4 v4.9.1/go.mod h1:5/MEx97uzdPUHR4KtkNt8asfI2T4JiEiQlV7kWUo8c0=
393+
github.com/dgraph-io/badger/v4 v4.9.2 h1:Wb5qw8gElqwV1a8msHTeQKova9b1V10heFKMIiPd80E=
394+
github.com/dgraph-io/badger/v4 v4.9.2/go.mod h1:nJjaJTUOSsQEBhsq209FmwCvMJzEA3e74RjZw6V2pQI=
395395
github.com/dgraph-io/ristretto/v2 v2.4.0 h1:I/w09yLjhdcVD2QV192UJcq8dPBaAJb9pOuMyNy0XlU=
396396
github.com/dgraph-io/ristretto/v2 v2.4.0/go.mod h1:0KsrXtXvnv0EqnzyowllbVJB8yBonswa2lTCK2gGo9E=
397397
github.com/dgryski/go-farm v0.0.0-20240924180020-3414d57e47da h1:aIftn67I1fkbMa512G+w+Pxci9hJPB8oMnkcP3iZF38=
@@ -1063,8 +1063,8 @@ github.com/onsi/gomega v1.17.0/go.mod h1:HnhC7FXeEQY45zxNK3PPoIUhzk/80Xly9PcubAl
10631063
github.com/onsi/gomega v1.19.0/go.mod h1:LY+I3pBVzYsTBU1AnDwOSxaYi9WoWiqgwooUqq9yPro=
10641064
github.com/onsi/gomega v1.42.1 h1:iN1rCUX+44NZ1Dc97MPoeFYbFR0vh8zxoxMFwKdyZ6I=
10651065
github.com/onsi/gomega v1.42.1/go.mod h1:REff/hsDsodHoKlWsP2mAPhu1+5/6hVYNf9rIEBpeSg=
1066-
github.com/open-policy-agent/opa v1.17.1 h1:wO0MOux/VCqY41aVAD6Toe1p3A7O7DlRZ1RHmYSpoS8=
1067-
github.com/open-policy-agent/opa v1.17.1/go.mod h1:lcuZYSlqQpXFzsA6EJCELmfR5+nNOpZYX+eo7xaIIlk=
1066+
github.com/open-policy-agent/opa v1.18.1 h1:PQXN8BZN0zRf5NcI7yt1LfQ7pF1pLgWVAGNM3WgJI/4=
1067+
github.com/open-policy-agent/opa v1.18.1/go.mod h1:9GY+hER4ZEXtxPlMjftVbqJJY9xLtCD3Q0oufRCfAKo=
10681068
github.com/opencontainers/go-digest v1.0.0 h1:apOUWs51W5PlhuyGyz9FCeeBIOUDA/6nW8Oi/yOhh5U=
10691069
github.com/opencontainers/go-digest v1.0.0/go.mod h1:0JzlMkj0TRzQZfJkVvzbP0HBR3IKzErnv2BNG4W4MAM=
10701070
github.com/opencontainers/image-spec v1.1.1 h1:y0fUlFfIZhPF1W537XOLg0/fcx6zcHCJwooC2xJA040=
@@ -1135,8 +1135,8 @@ github.com/redis/go-redis/v9 v9.21.0 h1:FPBE4hhbAke+TLmcY3WkpbDffJEomdqPn3HYiqAt
11351135
github.com/redis/go-redis/v9 v9.21.0/go.mod h1:v/M13XI1PVCDcm01VtPFOADfZtHf8YW3baQf57KlIkA=
11361136
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec h1:W09IVJc94icq4NjY3clb7Lk8O1qJ8BdBEF8z0ibU0rE=
11371137
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo=
1138-
github.com/rogpeppe/go-internal v1.14.1 h1:UQB4HGPB6osV0SQTLymcB4TgvyWu6ZyliaW0tI/otEQ=
1139-
github.com/rogpeppe/go-internal v1.14.1/go.mod h1:MaRKkUm5W0goXpeCfT7UZI6fk/L7L7so1lCWt35ZSgc=
1138+
github.com/rogpeppe/go-internal v1.15.0 h1:D0RCU5rMAp+SpgkiNdrjfJ+LX4J1M32V2NeCY7EJ6hc=
1139+
github.com/rogpeppe/go-internal v1.15.0/go.mod h1:DrUVZyrJU+txYW5/1kwtXQSMFio52ZOxX7yM1VHvnxs=
11401140
github.com/rubenv/sql-migrate v1.8.1 h1:EPNwCvjAowHI3TnZ+4fQu3a915OpnQoPAjTXCGOy2U0=
11411141
github.com/rubenv/sql-migrate v1.8.1/go.mod h1:BTIKBORjzyxZDS6dzoiw6eAFYJ1iNlGAtjn4LGeVjS8=
11421142
github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
@@ -1426,8 +1426,8 @@ go.opentelemetry.io/collector/receiver/receivertest v0.155.0 h1:Wp2fSQ1jfNzPmcZz
14261426
go.opentelemetry.io/collector/receiver/receivertest v0.155.0/go.mod h1:eBl5iImBqIs9pQNdwyqypDiThJWn1L1G3N1Z1m9BcYY=
14271427
go.opentelemetry.io/collector/receiver/xreceiver v0.155.0 h1:cWwLtXC3RF/EaSz9uZHD0TXqVBpjXk0zkkcE6W4Szz4=
14281428
go.opentelemetry.io/collector/receiver/xreceiver v0.155.0/go.mod h1:oCB455B5Qs7tiyO6JThT+Zv20H5XeNKJQ+u4jHyCFbI=
1429-
go.opentelemetry.io/contrib/bridges/prometheus v0.68.0 h1:w3zlHYETbDwXyWHZlyyR58ZC39XGi8rAhkBgUgJ9d5w=
1430-
go.opentelemetry.io/contrib/bridges/prometheus v0.68.0/go.mod h1:GR/mClR2nn7vE8RLwxKjoBNg+QtgdDhRzxVa93koy5o=
1429+
go.opentelemetry.io/contrib/bridges/prometheus v0.69.0 h1:saQoWg5845Q8TojpqeVStS7zGwVZ6bc5W2PJavTPiBM=
1430+
go.opentelemetry.io/contrib/bridges/prometheus v0.69.0/go.mod h1:AAaS6xs5AyqMdR3Ir0nSWK+QudL2XM8Vbw5INzUxNc8=
14311431
go.opentelemetry.io/contrib/detectors/gcp v1.44.0 h1:NmLfL734pJhM0JKaYd2Y28+nY9dPRWYAAbxhRCrKXPw=
14321432
go.opentelemetry.io/contrib/detectors/gcp v1.44.0/go.mod h1:tNAsgd8avTGke1+MndXlU5Cru4PQ9Ai/cCNWQv/ZJ/s=
14331433
go.opentelemetry.io/contrib/exporters/autoexport v0.57.0 h1:jmTVJ86dP60C01K3slFQa2NQ/Aoi7zA+wy7vMOKD9H4=

0 commit comments

Comments
 (0)