Tags: elastic/cloudbeat
Tags
chore(deps): update module github.com/googlecloudplatform/docker-cred… …ential-gcr/v2 to v2.1.33 (9.4) (#7616) This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [github.com/GoogleCloudPlatform/docker-credential-gcr/v2](https://redirect.github.com/GoogleCloudPlatform/docker-credential-gcr) | `v2.1.32` → `v2.1.33` |  |  | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>GoogleCloudPlatform/docker-credential-gcr (github.com/GoogleCloudPlatform/docker-credential-gcr/v2)</summary> ### [`v2.1.33`](https://redirect.github.com/GoogleCloudPlatform/docker-credential-gcr/releases/tag/v2.1.33) [Compare Source](https://redirect.github.com/GoogleCloudPlatform/docker-credential-gcr/compare/v2.1.32...v2.1.33) #### What's Changed - Upgrade Go version to 1.26 by [@​ardagnir](https://redirect.github.com/ardagnir) in [#​190](https://redirect.github.com/GoogleCloudPlatform/docker-credential-gcr/pull/190) - chore(deps): bump docker-cli to v29.6.2+incompatible by [@​knechtionscoding](https://redirect.github.com/knechtionscoding) in [#​192](https://redirect.github.com/GoogleCloudPlatform/docker-credential-gcr/pull/192) - chore(deps): remove unused docker/docker dependency from go.mod by [@​Subserial](https://redirect.github.com/Subserial) in [#​193](https://redirect.github.com/GoogleCloudPlatform/docker-credential-gcr/pull/193) #### New Contributors - [@​ardagnir](https://redirect.github.com/ardagnir) made their first contribution in [#​190](https://redirect.github.com/GoogleCloudPlatform/docker-credential-gcr/pull/190) - [@​knechtionscoding](https://redirect.github.com/knechtionscoding) made their first contribution in [#​192](https://redirect.github.com/GoogleCloudPlatform/docker-credential-gcr/pull/192) **Full Changelog**: <GoogleCloudPlatform/docker-credential-gcr@v2.1.32...v2.1.33> </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:eyJjcmVhdGVkSW5WZXIiOiI0Mi45OS4wIiwidXBkYXRlZEluVmVyIjoiNDIuOTkuMCIsInRhcmdldEJyYW5jaCI6IjkuNCIsImxhYmVscyI6WyJUZWFtOlNlY3VyaXR5LUNsb3VkIFNlcnZpY2VzIiwiYmFja3BvcnQtc2tpcCIsImRlcGVuZGVuY2llcyIsInJlbm92YXRlIiwicmVub3ZhdGUtYXV0by1hcHByb3ZlIl19--> Co-authored-by: elastic-renovate-prod[bot] <174716857+elastic-renovate-prod[bot]@users.noreply.github.com>
fix(deps): update module github.com/open-policy-agent/opa to v1.19.0 … …(8.19) (#7654) This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [github.com/open-policy-agent/opa](https://redirect.github.com/open-policy-agent/opa) | `v1.18.2` → `v1.19.0` |  |  | --- > [!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.19.0`](https://redirect.github.com/open-policy-agent/opa/releases/tag/v1.19.0) [Compare Source](https://redirect.github.com/open-policy-agent/opa/compare/v1.18.2...v1.19.0) This release contains a mix of new features and bug fixes. Notably: - A fixed SQL injection vector in the Compile API - Stricter safety checking for Rego assignments (`:=`) - A cgo-free, faster WebAssembly runtime (wazero replaces wasmtime-go) - Startup warnings for unknown configuration options - A new `strings.split_n` built-in function - A REPL line reader that handles pasted input correctly, migrating existing history files ##### Fix SQL injection vector in Compile API: Quote SQL filter field identifiers ([#​8945](https://redirect.github.com/open-policy-agent/opa/pull/8945)) The field names in the SQL emitted by the Compile API come from partially evaluated refs, so a policy that selects a dynamic key — such as `input.fruits[input.column]` — puts caller-controlled text in an identifier position. That text was emitted verbatim, which turns ```sql WHERE fruit.name = 'allowed' ``` into ```sql WHERE fruit.name = 'allowed' OR 1=1 -- = 'allowed' ``` and an application appending the filter to its query returns rows the policy denies. Field segments that are not bare identifiers are now quoted at the UCAST-to-SQL boundary, with any embedded quote character escaped. Ordinary column names stay unquoted, so existing filters keep their current shape and remain case-insensitive on Postgres. Authored by [@​thevilledev](https://redirect.github.com/thevilledev) ##### Behavior change: stricter safety for assignment (`:=`) ([#​3546](https://redirect.github.com/open-policy-agent/opa/issues/3546)) The assignment operator (`:=`) is documented as "syntactic sugar for `=`, local variable creation, and additional compiler checks," and the safety checker reflects that: after rewriting, `:=` is treated identically to `=` (unification), so an assignment's right-hand side can be made safe by unifying "backwards" through the left-hand side. This means policies like `x := y; x = 7` compile (binding `y` to `7`) even though `y` is never assigned, and `x := y; obj[x]` can silently degrade an expected constant-time lookup into full iteration. This change makes the right-hand-side of `:=` be treated as a read that must be made safe by other expressions, and can no longer be satisfied through the left-hand-side. Affected policies that previously compiled now fail with a `rego_unsafe_var_error`. Reference iteration on the right-hand-side (e.g. `some k; v := obj[k]`) is unaffected. Note: this is a deliberate semantic change, not a fix to match documented behavior — the intended semantics of `:=` in this case were never specified. Authored by [@​sspaink](https://redirect.github.com/sspaink), reported by [@​tsandall](https://redirect.github.com/tsandall) ##### WebAssembly runtime: wasmtime-go replaced with wazero ([#​7557](https://redirect.github.com/open-policy-agent/opa/issues/7557)) 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. Authored by [@​srenatus](https://redirect.github.com/srenatus), reported by [@​sspaink](https://redirect.github.com/sspaink) ##### Configuration validation moved to Rego, with warnings on unknown options ([#​8891](https://redirect.github.com/open-policy-agent/opa/pull/8891)) Top-level configuration validation and default injection (`default_decision`, `default_authorization_decision`, `labels`) is now expressed as an embedded Rego policy rather than hand-written Go, as is the validation of `server.metrics` and `metrics_export`. The user-visible effect is that unrecognized configuration options are reported instead of being silently ignored. A typo such as `decision_log` instead of `decision_logs` now logs a warning at startup: ```json {"level":"warning","msg":"unknown configuration option \"decision_log\" encountered"} ``` These are warnings, not errors: OPA starts as before, and sections that are intentionally user-extensible are left alone, so extra keys there do not warn. Embedders reading configuration through `config.ParseConfig` can find the same messages on `Config.Warnings`. Authored by [@​sspaink](https://redirect.github.com/sspaink) ##### Add `strings.split_n` built-in function ([#​8344](https://redirect.github.com/open-policy-agent/opa/issues/8344)) Policies often need only the first or last few parts of a split string, but the existing `split` built-in always returns every part, so the count has to be worked around with wildcards or a slice. `strings.split_n` takes the first `n` split parts from the front or the back of the string, depending on whether `n` is positive or negative: ```rego result := strings.split_n("a.b.c.d", ".", 2) # result == ["a", "b"] ``` ```rego result := strings.split_n("a.b.c.d", ".", -2) # result == ["c", "d"] ``` If `abs(n)` is larger than the number of parts, all parts are returned. An `n` of `0` returns an empty array. Authored by [@​wonju-dev](https://redirect.github.com/wonju-dev), reported by [@​anderseknert](https://redirect.github.com/anderseknert) ##### Improved REPL line editing, with history file migration ([#​962](https://redirect.github.com/open-policy-agent/opa/issues/962)) Pasting a tab-indented snippet into the REPL triggered tab-completion on the pasted tab, corrupting the input (e.g. injecting a completion candidate mid-line and producing a spurious parse error). Fixing that requires bracketed paste, where the terminal wraps pasted text in markers so the line reader inserts it literally instead of treating an embedded tab as a completion request. The previous reader, `peterh/liner`, has no bracketed-paste support and is unmaintained (last release 2021\), so it has been replaced with `reeflective/readline`. The new reader persists history as JSON lines instead of one command per line. Existing history files (`~/.opa_history` by default, or the path given to `--history`) are detected and migrated in place the first time the REPL loads them, so history written by earlier versions of OPA is kept. OPA's own multi-line buffering is unchanged, and `readline`'s native multi-line editing is left disabled to avoid changing REPL behavior. Authored by [@​sspaink](https://redirect.github.com/sspaink), reported by [@​aeneasr](https://redirect.github.com/aeneasr) ##### Runtime, SDK, Tooling - cmd: Avoid intermediate buffer when writing bundle ([#​8909](https://redirect.github.com/open-policy-agent/opa/pull/8909)) authored by [@​anderseknert](https://redirect.github.com/anderseknert) - cmd/build: Add `--format` flag for proto/JSON plan bundles to `opa build` ([#​8825](https://redirect.github.com/open-policy-agent/opa/pull/8825)) authored by [@​sspaink](https://redirect.github.com/sspaink) - cmd/check: Report wrapped structured errors individually ([#​3663](https://redirect.github.com/open-policy-agent/opa/issues/3663)) authored by [@​sspaink](https://redirect.github.com/sspaink), reported by [@​oren-zohar](https://redirect.github.com/oren-zohar) - compile: Preserve package annotations in wasm bundle builds ([#​8854](https://redirect.github.com/open-policy-agent/opa/issues/8854)) authored by [@​srenatus](https://redirect.github.com/srenatus), reported by [@​me-viper](https://redirect.github.com/me-viper) - format: Keep rule body inline when the head spans multiple lines ([#​8894](https://redirect.github.com/open-policy-agent/opa/issues/8894)) authored by [@​Kunalbehbud](https://redirect.github.com/Kunalbehbud), reported by [@​charlieegan3](https://redirect.github.com/charlieegan3) - repl: Use a plain line reader for non-terminal input ([#​8941](https://redirect.github.com/open-policy-agent/opa/pull/8941)) authored by [@​sspaink](https://redirect.github.com/sspaink) - server: Set `ReadHeaderTimeout` to `32s` on all HTTP servers ([#​8877](https://redirect.github.com/open-policy-agent/opa/pull/8877)) authored by [@​RinZ27](https://redirect.github.com/RinZ27) - server/failtracer: Skip self-referential undefined-ref hints ([#​8916](https://redirect.github.com/open-policy-agent/opa/pull/8916)) authored by [@​srenatus](https://redirect.github.com/srenatus) - sdk: Allow customizing HTTP `RoundTripper` per `Decision` ([#​8884](https://redirect.github.com/open-policy-agent/opa/pull/8884)) authored by [@​paulo-raca](https://redirect.github.com/paulo-raca) - sdk: Fix deadlock between OPA.Plugin and manager onCommit ([#​8873](https://redirect.github.com/open-policy-agent/opa/issues/8873)) reported and authored by [@​sspaink](https://redirect.github.com/sspaink) - tester: Make Result JSON round-trippable ([#​8014](https://redirect.github.com/open-policy-agent/opa/issues/8014)) authored by [@​vsolano9](https://redirect.github.com/vsolano9), reported by [@​anderseknert](https://redirect.github.com/anderseknert) - topdown: Resolve ground refs in `--var-values` cmd output ([#​7830](https://redirect.github.com/open-policy-agent/opa/issues/7830)) authored by [@​sspaink](https://redirect.github.com/sspaink), reported by [@​charlieegan3](https://redirect.github.com/charlieegan3) ##### Compiler, Topdown and Rego - ast: Add support for Go 1.27 & jsonv2 ([#​8947](https://redirect.github.com/open-policy-agent/opa/pull/8947)) authored by [@​anderseknert](https://redirect.github.com/anderseknert) and [@​charlieegan3](https://redirect.github.com/charlieegan3) - ast: Fix aliased comment buffer in annotation parser ([#​8757](https://redirect.github.com/open-policy-agent/opa/issues/8757)) authored by [@​sspaink](https://redirect.github.com/sspaink), reported by [@​0hardik1](https://redirect.github.com/0hardik1) - ast: Fix non-deterministic type errors when shadowing a built-in ([#​3729](https://redirect.github.com/open-policy-agent/opa/issues/3729)) authored by [@​sspaink](https://redirect.github.com/sspaink), reported by [@​srenatus](https://redirect.github.com/srenatus) - ast: Fix leaky `future.keywords.not` import in Rego v0 ([#​8953](https://redirect.github.com/open-policy-agent/opa/pull/8953)) authored by [@​johanfylling](https://redirect.github.com/johanfylling) - ast: Fix panic when indexing composite literal values in `x in [...]` ([#​8918](https://redirect.github.com/open-policy-agent/opa/issues/8918)) reported and authored by [@​srenatus](https://redirect.github.com/srenatus) - ast: Fix `TermValueEqual` performance regression ([#​8863](https://redirect.github.com/open-policy-agent/opa/pull/8863)) authored by [@​mchitten](https://redirect.github.com/mchitten) - ast: Improve rule conflict error ([#​6391](https://redirect.github.com/open-policy-agent/opa/issues/6391)) authored by [@​unichronic](https://redirect.github.com/unichronic), reported by [@​johanfylling](https://redirect.github.com/johanfylling) - ast: Make `CogeneratedExprs` return deterministic order ([#​8895](https://redirect.github.com/open-policy-agent/opa/pull/8895)) authored by [@​sspaink](https://redirect.github.com/sspaink) - ast: Reject partial set and -object rules sharing a name ([#​8860](https://redirect.github.com/open-policy-agent/opa/issues/8860)) authored by [@​sspaink](https://redirect.github.com/sspaink), reported by [@​shomron](https://redirect.github.com/shomron) - ast: Restore location on unsafe var errors for rewritten head vars ([#​8719](https://redirect.github.com/open-policy-agent/opa/issues/8719)) authored by [@​Atishyy27](https://redirect.github.com/Atishyy27), reported by [@​anderseknert](https://redirect.github.com/anderseknert) - ast: Use more precise return types for `object.*` builtins ([#​8692](https://redirect.github.com/open-policy-agent/opa/issues/8692)) reported and authored by [@​anderseknert](https://redirect.github.com/anderseknert) - ast+topdown: Let rule external sources distinguish absent from unknown ([#​8878](https://redirect.github.com/open-policy-agent/opa/pull/8878)) authored by [@​srenatus](https://redirect.github.com/srenatus) - ast+topdown: Parametrized (prefix) external rule sources ([#​8881](https://redirect.github.com/open-policy-agent/opa/pull/8881)) authored by [@​srenatus](https://redirect.github.com/srenatus) - topdown: Fix `"a", "a" in {"a"}` not returning `true` ([#​8747](https://redirect.github.com/open-policy-agent/opa/pull/8747)) authored by [@​anderseknert](https://redirect.github.com/anderseknert) - topdown: Fix `format_int` precision loss for integers larger than 64 bits ([#​8857](https://redirect.github.com/open-policy-agent/opa/pull/8857)) authored by [@​Synvoya](https://redirect.github.com/Synvoya) - topdown: Fix precision loss for integers larger than 64 bits in arithmetic and aggregates ([#​6281](https://redirect.github.com/open-policy-agent/opa/issues/6281)) authored by [@​Atishyy27](https://redirect.github.com/Atishyy27), reported by [@​tsandall](https://redirect.github.com/tsandall) - topdown: Don't leak internal vars in Partial-Evaluation results ([#​6378](https://redirect.github.com/open-policy-agent/opa/issues/6378)) authored by [@​sspaink](https://redirect.github.com/sspaink), reported by [@​nkey0](https://redirect.github.com/nkey0) - topdown/copypropagation: Avoid circular reference in Partial-Evaluation through call ([#​6428](https://redirect.github.com/open-policy-agent/opa/issues/6428)) authored by [@​sspaink](https://redirect.github.com/sspaink), reported by [@​nkey0](https://redirect.github.com/nkey0) - topdown+util: Add generic `SliceStack`/`GroupStack`, unify refStack/functionMocksStack/saveStack ([#​8886](https://redirect.github.com/open-policy-agent/opa/pull/8886)) authored by [@​srenatus](https://redirect.github.com/srenatus) - topdown+util: Replace hand-rolled evalFunc/evalBuiltin pools with generic ResettablePool ([#​8886](https://redirect.github.com/open-policy-agent/opa/pull/8886)) authored by [@​srenatus](https://redirect.github.com/srenatus) - perf: Avoid allocations with custom Atoi and Atoi64 helpers ([#​8758](https://redirect.github.com/open-policy-agent/opa/pull/8758)) authored by [@​anderseknert](https://redirect.github.com/anderseknert) - perf: Lazy init of scalars map in indexer ([#​8936](https://redirect.github.com/open-policy-agent/opa/pull/8936)) authored by [@​anderseknert](https://redirect.github.com/anderseknert) - perf: Reduce allocations in index lookup ([#​8835](https://redirect.github.com/open-policy-agent/opa/pull/8835)) authored by [@​anderseknert](https://redirect.github.com/anderseknert) - planner: Avoid redundant `ruletrie.Children()` call in `Depth()` ([#​8886](https://redirect.github.com/open-policy-agent/opa/pull/8886)) authored by [@​srenatus](https://redirect.github.com/srenatus) - planner: Unify `functionMocksStack` on generic `GroupStack[T]` ([#​8886](https://redirect.github.com/open-policy-agent/opa/pull/8886)) authored by [@​srenatus](https://redirect.github.com/srenatus) ##### Docs, Website, Ecosystem - ecosystem: Add agt-policies-africa — African data protection OPA policy pack ([#​8850](https://redirect.github.com/open-policy-agent/opa/pull/8850)) authored by [@​kingztech2019](https://redirect.github.com/kingztech2019) - ecosystem: Add Ghostunnel and NATS Plugin to Ecosystem ([#​8871](https://redirect.github.com/open-policy-agent/opa/pull/8871)) authored by [@​charlieegan3](https://redirect.github.com/charlieegan3) - ecosystem: Add Sencillo projects to ecosystem ([#​8818](https://redirect.github.com/open-policy-agent/opa/pull/8818)) authored by [@​hooksie1](https://redirect.github.com/hooksie1) - docs: Add kubecon NA page ([#​8876](https://redirect.github.com/open-policy-agent/opa/pull/8876)) authored by [@​charlieegan3](https://redirect.github.com/charlieegan3) - docs: Add recommendations to follow Envoy's best practices ([#​8944](https://redirect.github.com/open-policy-agent/opa/pull/8944)) authored by [@​johanfylling](https://redirect.github.com/johanfylling) - docs: Document rule indexer support for `in`, bare refs; modernize rego ([#​8822](https://redirect.github.com/open-policy-agent/opa/issues/8822)) authored by [@​srenatus](https://redirect.github.com/srenatus), reported by [@​tsandall](https://redirect.github.com/tsandall) - docs: Document the compile metadata annotation ([#​8824](https://redirect.github.com/open-policy-agent/opa/issues/8824)) authored by [@​youdie006](https://redirect.github.com/youdie006), reported by [@​anderseknert](https://redirect.github.com/anderseknert) - docs: Fix broken OAuth2/OIDC policy examples ([#​8840](https://redirect.github.com/open-policy-agent/opa/pull/8840)) authored by [@​mailnike](https://redirect.github.com/mailnike) - docs: Fix decision\_logs buffer\_size\_limit\_events default in prose ([#​8866](https://redirect.github.com/open-policy-agent/opa/pull/8866)) authored by [@​s3onghyun](https://redirect.github.com/s3onghyun) - docs: Remove import rego.v1 ([#​8867](https://redirect.github.com/open-policy-agent/opa/pull/8867)) authored by [@​charlieegan3](https://redirect.github.com/charlieegan3) - docs: Some minor bug fixes to improve reporting ([#​8917](https://redirect.github.com/open-policy-agent/opa/pull/8917)) authored by [@​charlieegan3](https://redirect.github.com/charlieegan3) - docs: The Zed Rego extension link points at github.com/StyraInc/zed-rego (404). The repo now lives at github.com/StyraOSS/zed-rego. ([#​8883](https://redirect.github.com/open-policy-agent/opa/pull/8883)) authored by [@​mailnike](https://redirect.github.com/mailnike) - docs: Update cheatsheet files ([#​8868](https://redirect.github.com/open-policy-agent/opa/pull/8868)) authored by [@​charlieegan3](https://redirect.github.com/charlieegan3) - docs: Update regal and blog links ([#​8901](https://redirect.github.com/open-policy-agent/opa/pull/8901)) authored by [@​charlieegan3](https://redirect.github.com/charlieegan3) - docs: Updates examples to use some...in, add link to debugger ([#​8806](https://redirect.github.com/open-policy-agent/opa/pull/8806)) authored by [@​charlieegan3](https://redirect.github.com/charlieegan3) - website: Improve partial evaluation / data filtering documentation ([#​8625](https://redirect.github.com/open-policy-agent/opa/pull/8625)) authored by [@​mmzzuu](https://redirect.github.com/mmzzuu) - website: Import blog from medium ([#​8898](https://redirect.github.com/open-policy-agent/opa/pull/8898)) authored by [@​charlieegan3](https://redirect.github.com/charlieegan3) ##### Miscellaneous - ast: Add benchmark for rule index ref ordering ([#​8943](https://redirect.github.com/open-policy-agent/opa/pull/8943)) authored by [@​srenatus](https://redirect.github.com/srenatus) - ast: Various style fixes ([#​8938](https://redirect.github.com/open-policy-agent/opa/pull/8938)) authored by [@​anderseknert](https://redirect.github.com/anderseknert) - build: Add Dockerfile.rego to validate image builds ([#​8401](https://redirect.github.com/open-policy-agent/opa/issues/8401)) authored by [@​jasdeepbhalla](https://redirect.github.com/jasdeepbhalla), reported by [@​anderseknert](https://redirect.github.com/anderseknert) - build: Get just the needed commits for CI ([#​8940](https://redirect.github.com/open-policy-agent/opa/pull/8940)) authored by [@​charlieegan3](https://redirect.github.com/charlieegan3) - test: Start decommissioning `test.WithTempFS` ([#​8908](https://redirect.github.com/open-policy-agent/opa/pull/8908)) authored by [@​anderseknert](https://redirect.github.com/anderseknert) - topdown: Add regression test for partial eval local names ([#​5226](https://redirect.github.com/open-policy-agent/opa/issues/5226)) authored by [@​sspaink](https://redirect.github.com/sspaink), reported by [@​fab29p](https://redirect.github.com/fab29p) - topdown: Fix Partial-Evaluation test rejected by new conflict check ([#​8860](https://redirect.github.com/open-policy-agent/opa/issues/8860)) authored by [@​sspaink](https://redirect.github.com/sspaink), reported by [@​shomron](https://redirect.github.com/shomron) - topdown: Vendor a method-less text/template to restore whole-binary linker DCE ([#​7903](https://redirect.github.com/open-policy-agent/opa/issues/7903)) authored by [@​rchildress87](https://redirect.github.com/rchildress87), reported by [@​kruskall](https://redirect.github.com/kruskall) - workflows: Remove cpp from CodeQL language matrix ([#​8864](https://redirect.github.com/open-policy-agent/opa/pull/8864)) authored by [@​sspaink](https://redirect.github.com/sspaink) - workflows: Prune benchmarks to last 250 runs ([#​8834](https://redirect.github.com/open-policy-agent/opa/pull/8834)) authored by [@​srenatus](https://redirect.github.com/srenatus) - Dependency updates; notably: - build(go): Bump Go from 1.26.4 to 1.26.5 ([#​8875](https://redirect.github.com/open-policy-agent/opa/pull/8875)) authored by [@​srenatus](https://redirect.github.com/srenatus) - build(deps): Add github.com/reeflective/readline 1.3.0 - build(deps): Add golang.org/x/term 0.45.0 - build(deps): Bump github.com/dgraph-io/badger/v4 from 4.9.2 to 4.9.4 - build(deps): Bump github.com/go-logr/logr from 1.4.3 to 1.4.4 - build(deps): Bump github.com/huandu/go-sqlbuilder from 1.41.0 to 1.42.1 - build(deps): Bump github.com/prometheus/client\_golang from 1.23.2 to 1.24.0 - build(deps): Bump github.com/vektah/gqlparser/v2 from 2.5.34 to 2.5.36 - build(deps): Bump golang.org/x/sync from 0.21.0 to 0.22.0 - build(deps): Bump golang.org/x/text from 0.38.0 to 0.40.0 - build(deps): Bump google.golang.org/grpc from 1.81.1 to 1.82.1 - build(deps): Bump oras.land/oras-go/v2 from 2.6.1 to 2.6.2 ([#​8889](https://redirect.github.com/open-policy-agent/opa/pull/8889)) authored by [@​ahbarrios](https://redirect.github.com/ahbarrios) Addressing [GHSA-fxhp-mv3v-67qp](https://redirect.github.com/oras-project/oras-go/security/advisories/GHSA-fxhp-mv3v-67qp) - build(deps): Drop github.com/peterh/liner - build(deps): Drop github.com/KimMachineGun/automemlimit ([#​8869](https://redirect.github.com/open-policy-agent/opa/pull/8869)) authored by [@​charlieegan3](https://redirect.github.com/charlieegan3) - build(deps): Drop go.uber.org/automaxprocs ([#​8869](https://redirect.github.com/open-policy-agent/opa/pull/8869)) authored by [@​charlieegan3](https://redirect.github.com/charlieegan3) </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:eyJjcmVhdGVkSW5WZXIiOiI0Mi45OS4wIiwidXBkYXRlZEluVmVyIjoiNDIuOTkuMCIsInRhcmdldEJyYW5jaCI6IjguMTkiLCJsYWJlbHMiOlsiVGVhbTpTZWN1cml0eS1DbG91ZCBTZXJ2aWNlcyIsImJhY2twb3J0LXNraXAiLCJkZXBlbmRlbmNpZXMiLCJyZW5vdmF0ZSIsInJlbm92YXRlLWF1dG8tYXBwcm92ZSJdfQ==--> Co-authored-by: elastic-renovate-prod[bot] <174716857+elastic-renovate-prod[bot]@users.noreply.github.com>
[9.5](backport #7473) [Cloud Asset Inventory] Fix entity.attribute ma… …pping bug by renaming it to entity.Details (#7474) ### Summary of your changes For: #incident-3395-failing-quality-gate-for-entity-store-synthetics Incident Slack: https://elastic.slack.com/archives/C0BJQCSBT47 Publishing asset details as `entity.attributes` breaks Entity Store extraction. This, along with related integrations PR, fixes the issue by using `entity.Details` instead. Integrations PR contains an ingest pipeline that ensures even old Cloudbeat versions that publish `entity.attributes` get remapped to `Details`. This allows extraction to work as intended. ### Related Issues Towards https://github.com/elastic/security-team/issues/18408 <hr>This is an automatic backport of pull request #7473 done by [Mergify](https://mergify.com). Co-authored-by: Kuba Soboń <wtty.fool@gmail.com>
chore(deps): update github.com/google/pprof digest to b9395ee (8.19) (#… …6715) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/google/pprof](https://redirect.github.com/google/pprof) | indirect | digest | `92041b7` → `b9395ee` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### 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:eyJjcmVhdGVkSW5WZXIiOiI0MC42Mi4xIiwidXBkYXRlZEluVmVyIjoiNDIuOTkuMCIsInRhcmdldEJyYW5jaCI6IjguMTkiLCJsYWJlbHMiOlsiVGVhbTpTZWN1cml0eS1DbG91ZCBTZXJ2aWNlcyIsImJhY2twb3J0LXNraXAiLCJkZXBlbmRlbmNpZXMiLCJyZW5vdmF0ZSIsInJlbm92YXRlLWF1dG8tYXBwcm92ZSJdfQ==--> Co-authored-by: elastic-renovate-prod[bot] <174716857+elastic-renovate-prod[bot]@users.noreply.github.com>
chore(deps): update module sigs.k8s.io/structured-merge-diff/v6 to v6… ….4.2 (9.4) (#7262) This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [sigs.k8s.io/structured-merge-diff/v6](https://redirect.github.com/kubernetes-sigs/structured-merge-diff) | `v6.4.1` → `v6.4.2` |  |  | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>kubernetes-sigs/structured-merge-diff (sigs.k8s.io/structured-merge-diff/v6)</summary> ### [`v6.4.2`](https://redirect.github.com/kubernetes-sigs/structured-merge-diff/compare/v6.4.1...v6.4.2) [Compare Source](https://redirect.github.com/kubernetes-sigs/structured-merge-diff/compare/v6.4.1...v6.4.2) </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:eyJjcmVhdGVkSW5WZXIiOiI0Mi45OS4wIiwidXBkYXRlZEluVmVyIjoiNDIuOTkuMCIsInRhcmdldEJyYW5jaCI6IjkuNCIsImxhYmVscyI6WyJUZWFtOlNlY3VyaXR5LUNsb3VkIFNlcnZpY2VzIiwiYmFja3BvcnQtc2tpcCIsImRlcGVuZGVuY2llcyIsInJlbm92YXRlIiwicmVub3ZhdGUtYXV0by1hcHByb3ZlIl19--> Co-authored-by: elastic-renovate-prod[bot] <174716857+elastic-renovate-prod[bot]@users.noreply.github.com>
fix(deps): update aws-sdk (9.3) (#7269) > ℹ️ **Note** > > This PR body was truncated due to platform limits. This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [github.com/aws/aws-sdk-go-v2/config](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.32.27` → `v1.32.28` |  |  | | [github.com/aws/aws-sdk-go-v2/credentials](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.19.26` → `v1.19.27` |  |  | | [github.com/aws/aws-sdk-go-v2/service/accessanalyzer](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.49.7` → `v1.50.0` |  |  | | [github.com/aws/aws-sdk-go-v2/service/autoscaling](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.68.1` → `v1.69.0` |  |  | | [github.com/aws/aws-sdk-go-v2/service/cloudformation](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.73.1` → `v1.74.0` |  |  | | [github.com/aws/aws-sdk-go-v2/service/cloudtrail](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.56.6` → `v1.57.0` |  |  | | [github.com/aws/aws-sdk-go-v2/service/cloudwatch](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.61.1` → `v1.62.0` |  |  | | [github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.78.2` → `v1.79.0` |  |  | | [github.com/aws/aws-sdk-go-v2/service/configservice](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.65.0` → `v1.67.0` |  |  | | [github.com/aws/aws-sdk-go-v2/service/dynamodb](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.59.2` → `v1.60.0` |  |  | | [github.com/aws/aws-sdk-go-v2/service/ebs](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.34.9` → `v1.35.0` |  |  | | [github.com/aws/aws-sdk-go-v2/service/ec2](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.311.0` → `v1.313.0` |  |  | | [github.com/aws/aws-sdk-go-v2/service/ecr](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.58.6` → `v1.59.0` |  |  | | [github.com/aws/aws-sdk-go-v2/service/elasticloadbalancing](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.34.8` → `v1.35.0` |  |  | | [github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.55.6` → `v1.56.0` |  |  | | [github.com/aws/aws-sdk-go-v2/service/iam](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.54.7` → `v1.55.0` |  |  | | [github.com/aws/aws-sdk-go-v2/service/kms](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.53.6` → `v1.54.0` |  |  | | [github.com/aws/aws-sdk-go-v2/service/lambda](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.94.1` → `v1.96.0` |  |  | | [github.com/aws/aws-sdk-go-v2/service/organizations](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.51.12` → `v1.52.0` |  |  | | [github.com/aws/aws-sdk-go-v2/service/rds](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.119.5` → `v1.120.0` |  |  | | [github.com/aws/aws-sdk-go-v2/service/s3](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.104.2` → `v1.105.0` |  |  | | [github.com/aws/aws-sdk-go-v2/service/s3control](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.71.7` → `v1.72.0` |  |  | | [github.com/aws/aws-sdk-go-v2/service/securityhub](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.71.9` → `v1.73.0` |  |  | | [github.com/aws/aws-sdk-go-v2/service/signin](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.2.2` → `v1.3.0` |  |  | | [github.com/aws/aws-sdk-go-v2/service/sns](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.40.3` → `v1.41.0` |  |  | | [github.com/aws/aws-sdk-go-v2/service/sqs](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.44.2` → `v1.45.0` |  |  | | [github.com/aws/aws-sdk-go-v2/service/sso](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.31.5` → `v1.32.0` |  |  | | [github.com/aws/aws-sdk-go-v2/service/ssooidc](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.36.8` → `v1.37.0` |  |  | | [github.com/aws/aws-sdk-go-v2/service/sts](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.43.5` → `v1.44.0` |  |  | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>aws/aws-sdk-go-v2 (github.com/aws/aws-sdk-go-v2/service/accessanalyzer)</summary> ### [`v1.50.0`](https://redirect.github.com/aws/aws-sdk-go-v2/blob/HEAD/CHANGELOG.md#Release-2026-07-06) #### General Highlights - **Dependency Update**: Updated to the latest SDK module versions #### Module Highlights - `github.com/aws/aws-sdk-go-v2/service/accessanalyzer`: [v1.50.0](service/accessanalyzer/CHANGELOG.md#v1500-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/account`: [v1.33.0](service/account/CHANGELOG.md#v1330-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/acm`: [v1.42.0](service/acm/CHANGELOG.md#v1420-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/acmpca`: [v1.48.0](service/acmpca/CHANGELOG.md#v1480-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/aiops`: [v1.8.0](service/aiops/CHANGELOG.md#v180-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/amp`: [v1.45.0](service/amp/CHANGELOG.md#v1450-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/amplify`: [v1.40.0](service/amplify/CHANGELOG.md#v1400-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/amplifybackend`: [v1.34.0](service/amplifybackend/CHANGELOG.md#v1340-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/amplifyuibuilder`: [v1.30.0](service/amplifyuibuilder/CHANGELOG.md#v1300-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/apigateway`: [v1.41.0](service/apigateway/CHANGELOG.md#v1410-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/apigatewaymanagementapi`: [v1.31.0](service/apigatewaymanagementapi/CHANGELOG.md#v1310-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/apigatewayv2`: [v1.36.0](service/apigatewayv2/CHANGELOG.md#v1360-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/appconfig`: [v1.46.0](service/appconfig/CHANGELOG.md#v1460-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/appconfigdata`: [v1.25.0](service/appconfigdata/CHANGELOG.md#v1250-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/appfabric`: [v1.18.0](service/appfabric/CHANGELOG.md#v1180-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/appflow`: [v1.53.0](service/appflow/CHANGELOG.md#v1530-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/appintegrations`: [v1.39.0](service/appintegrations/CHANGELOG.md#v1390-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/applicationautoscaling`: [v1.44.0](service/applicationautoscaling/CHANGELOG.md#v1440-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/applicationcostprofiler`: [v1.29.0](service/applicationcostprofiler/CHANGELOG.md#v1290-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/applicationdiscoveryservice`: [v1.37.0](service/applicationdiscoveryservice/CHANGELOG.md#v1370-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/applicationinsights`: [v1.36.0](service/applicationinsights/CHANGELOG.md#v1360-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/applicationsignals`: [v1.24.0](service/applicationsignals/CHANGELOG.md#v1240-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/appmesh`: [v1.37.0](service/appmesh/CHANGELOG.md#v1370-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/apprunner`: [v1.41.0](service/apprunner/CHANGELOG.md#v1410-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/appstream`: [v1.62.0](service/appstream/CHANGELOG.md#v1620-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/appsync`: [v1.55.0](service/appsync/CHANGELOG.md#v1550-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/arcregionswitch`: [v1.10.0](service/arcregionswitch/CHANGELOG.md#v1100-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/arczonalshift`: [v1.24.0](service/arczonalshift/CHANGELOG.md#v1240-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/artifact`: [v1.18.0](service/artifact/CHANGELOG.md#v1180-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/athena`: [v1.59.0](service/athena/CHANGELOG.md#v1590-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/auditmanager`: [v1.48.0](service/auditmanager/CHANGELOG.md#v1480-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/autoscaling`: [v1.69.0](service/autoscaling/CHANGELOG.md#v1690-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/autoscalingplans`: [v1.32.0](service/autoscalingplans/CHANGELOG.md#v1320-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/b2bi`: [v1.0.0-preview.113](service/b2bi/CHANGELOG.md#v100-preview113-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/backup`: [v1.58.0](service/backup/CHANGELOG.md#v1580-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/backupgateway`: [v1.28.0](service/backupgateway/CHANGELOG.md#v1280-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/backupsearch`: [v1.8.0](service/backupsearch/CHANGELOG.md#v180-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/batch`: [v1.67.0](service/batch/CHANGELOG.md#v1670-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/bcmdashboards`: [v1.4.0](service/bcmdashboards/CHANGELOG.md#v140-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/bcmdataexports`: [v1.17.0](service/bcmdataexports/CHANGELOG.md#v1170-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/bcmpricingcalculator`: [v1.12.0](service/bcmpricingcalculator/CHANGELOG.md#v1120-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/bcmrecommendedactions`: [v1.3.0](service/bcmrecommendedactions/CHANGELOG.md#v130-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/bedrock`: [v1.65.0](service/bedrock/CHANGELOG.md#v1650-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/bedrockagent`: [v1.57.0](service/bedrockagent/CHANGELOG.md#v1570-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/bedrockagentcore`: [v1.33.0](service/bedrockagentcore/CHANGELOG.md#v1330-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/bedrockagentcorecontrol`: [v1.46.0](service/bedrockagentcorecontrol/CHANGELOG.md#v1460-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/bedrockagentruntime`: [v1.54.0](service/bedrockagentruntime/CHANGELOG.md#v1540-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/bedrockdataautomation`: [v1.17.0](service/bedrockdataautomation/CHANGELOG.md#v1170-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/bedrockdataautomationruntime`: [v1.12.0](service/bedrockdataautomationruntime/CHANGELOG.md#v1120-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/bedrockruntime`: [v1.55.0](service/bedrockruntime/CHANGELOG.md#v1550-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/billing`: [v1.12.0](service/billing/CHANGELOG.md#v1120-2026-07-06) - **Feature**: Add request serialization snapshot tests. - **Feature**: Adds support for managing AWS account credits and billing preferences, including retrieving credit details, viewing per-month credit allocation history, redeeming promotional codes, and configuring credit sharing and billing preferences. - `github.com/aws/aws-sdk-go-v2/service/billingconductor`: [v1.31.0](service/billingconductor/CHANGELOG.md#v1310-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/braket`: [v1.42.0](service/braket/CHANGELOG.md#v1420-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/budgets`: [v1.45.0](service/budgets/CHANGELOG.md#v1450-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/chatbot`: [v1.16.0](service/chatbot/CHANGELOG.md#v1160-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/chime`: [v1.43.0](service/chime/CHANGELOG.md#v1430-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/chimesdkidentity`: [v1.29.0](service/chimesdkidentity/CHANGELOG.md#v1290-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/chimesdkmediapipelines`: [v1.28.0](service/chimesdkmediapipelines/CHANGELOG.md#v1280-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/chimesdkmeetings`: [v1.35.0](service/chimesdkmeetings/CHANGELOG.md#v1350-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/chimesdkmessaging`: [v1.34.0](service/chimesdkmessaging/CHANGELOG.md#v1340-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/chimesdkvoice`: [v1.30.0](service/chimesdkvoice/CHANGELOG.md#v1300-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/cleanrooms`: [v1.47.0](service/cleanrooms/CHANGELOG.md#v1470-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/cleanroomsml`: [v1.25.0](service/cleanroomsml/CHANGELOG.md#v1250-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/cloud9`: [v1.35.0](service/cloud9/CHANGELOG.md#v1350-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/cloudcontrol`: [v1.31.0](service/cloudcontrol/CHANGELOG.md#v1310-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/clouddirectory`: [v1.32.0](service/clouddirectory/CHANGELOG.md#v1320-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/cloudformation`: [v1.74.0](service/cloudformation/CHANGELOG.md#v1740-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/cloudfront`: [v1.66.0](service/cloudfront/CHANGELOG.md#v1660-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/cloudfrontkeyvaluestore`: [v1.14.0](service/cloudfrontkeyvaluestore/CHANGELOG.md#v1140-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/cloudhsm`: [v1.31.0](service/cloudhsm/CHANGELOG.md#v1310-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/cloudhsmv2`: [v1.36.0](service/cloudhsmv2/CHANGELOG.md#v1360-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/cloudsearch`: [v1.34.0](service/cloudsearch/CHANGELOG.md#v1340-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/cloudsearchdomain`: [v1.30.0](service/cloudsearchdomain/CHANGELOG.md#v1300-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/cloudtrail`: [v1.57.0](service/cloudtrail/CHANGELOG.md#v1570-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/cloudtraildata`: [v1.19.0](service/cloudtraildata/CHANGELOG.md#v1190-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/cloudwatch`: [v1.62.0](service/cloudwatch/CHANGELOG.md#v1620-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/cloudwatchevents`: [v1.34.0](service/cloudwatchevents/CHANGELOG.md#v1340-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs`: [v1.79.0](service/cloudwatchlogs/CHANGELOG.md#v1790-2026-07-06) - **Feature**: Add request serialization snapshot tests. - **Feature**: Added PutStorageTierPolicy and GetStorageTierPolicy APIs to Amazon CloudWatch Logs. Customers can now configure account-level Intelligent Tiering to automatically optimize log storage costs by moving infrequently accessed data to lower-cost storage tiers. - `github.com/aws/aws-sdk-go-v2/service/codeartifact`: [v1.40.0](service/codeartifact/CHANGELOG.md#v1400-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/codebuild`: [v1.71.0](service/codebuild/CHANGELOG.md#v1710-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/codecatalyst`: [v1.23.0](service/codecatalyst/CHANGELOG.md#v1230-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/codecommit`: [v1.35.0](service/codecommit/CHANGELOG.md#v1350-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/codeconnections`: [v1.12.0](service/codeconnections/CHANGELOG.md#v1120-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/codedeploy`: [v1.37.0](service/codedeploy/CHANGELOG.md#v1370-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/codeguruprofiler`: [v1.31.0](service/codeguruprofiler/CHANGELOG.md#v1310-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/codegurureviewer`: [v1.36.0](service/codegurureviewer/CHANGELOG.md#v1360-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/codegurusecurity`: [v1.18.0](service/codegurusecurity/CHANGELOG.md#v1180-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/codepipeline`: [v1.48.0](service/codepipeline/CHANGELOG.md#v1480-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/codestarconnections`: [v1.37.0](service/codestarconnections/CHANGELOG.md#v1370-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/codestarnotifications`: [v1.33.0](service/codestarnotifications/CHANGELOG.md#v1330-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/cognitoidentity`: [v1.35.0](service/cognitoidentity/CHANGELOG.md#v1350-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/cognitoidentityprovider`: [v1.64.0](service/cognitoidentityprovider/CHANGELOG.md#v1640-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/cognitosync`: [v1.31.0](service/cognitosync/CHANGELOG.md#v1310-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/comprehend`: [v1.42.0](service/comprehend/CHANGELOG.md#v1420-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/comprehendmedical`: [v1.34.0](service/comprehendmedical/CHANGELOG.md#v1340-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/computeoptimizer`: [v1.55.0](service/computeoptimizer/CHANGELOG.md#v1550-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/computeoptimizerautomation`: [v1.4.0](service/computeoptimizerautomation/CHANGELOG.md#v140-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/configservice`: [v1.66.0](service/configservice/CHANGELOG.md#v1660-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/connect`: [v1.180.0](service/connect/CHANGELOG.md#v11800-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/connectcampaigns`: [v1.22.0](service/connectcampaigns/CHANGELOG.md#v1220-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/connectcampaignsv2`: [v1.16.0](service/connectcampaignsv2/CHANGELOG.md#v1160-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/connectcases`: [v1.43.0](service/connectcases/CHANGELOG.md#v1430-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/connectcontactlens`: [v1.35.0](service/connectcontactlens/CHANGELOG.md#v1350-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/connecthealth`: [v1.5.0](service/connecthealth/CHANGELOG.md#v150-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/connectparticipant`: [v1.38.0](service/connectparticipant/CHANGELOG.md#v1380-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/controlcatalog`: [v1.17.0](service/controlcatalog/CHANGELOG.md#v1170-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/controltower`: [v1.30.0](service/controltower/CHANGELOG.md#v1300-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/costandusagereportservice`: [v1.36.0](service/costandusagereportservice/CHANGELOG.md#v1360-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/costexplorer`: [v1.66.0](service/costexplorer/CHANGELOG.md#v1660-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/costoptimizationhub`: [v1.25.0](service/costoptimizationhub/CHANGELOG.md#v1250-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/customerprofiles`: [v1.64.0](service/customerprofiles/CHANGELOG.md#v1640-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/databasemigrationservice`: [v1.65.0](service/databasemigrationservice/CHANGELOG.md#v1650-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/databrew`: [v1.41.0](service/databrew/CHANGELOG.md#v1410-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/dataexchange`: [v1.43.0](service/dataexchange/CHANGELOG.md#v1430-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/datapipeline`: [v1.32.0](service/datapipeline/CHANGELOG.md#v1320-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/datasync`: [v1.60.0](service/datasync/CHANGELOG.md#v1600-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/datazone`: [v1.65.0](service/datazone/CHANGELOG.md#v1650-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/dax`: [v1.31.0](service/dax/CHANGELOG.md#v1310-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/deadline`: [v1.34.0](service/deadline/CHANGELOG.md#v1340-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/detective`: [v1.40.0](service/detective/CHANGELOG.md#v1400-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/devicefarm`: [v1.40.0](service/devicefarm/CHANGELOG.md#v1400-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/devopsagent`: [v1.9.0](service/devopsagent/CHANGELOG.md#v190-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/devopsguru`: [v1.42.0](service/devopsguru/CHANGELOG.md#v1420-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/directconnect`: [v1.42.0](service/directconnect/CHANGELOG.md#v1420-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/directoryservice`: [v1.40.0](service/directoryservice/CHANGELOG.md#v1400-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/directoryservicedata`: [v1.9.0](service/directoryservicedata/CHANGELOG.md#v190-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/dlm`: [v1.38.0](service/dlm/CHANGELOG.md#v1380-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/docdb`: [v1.50.0](service/docdb/CHANGELOG.md#v1500-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/docdbelastic`: [v1.22.0](service/docdbelastic/CHANGELOG.md#v1220-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/drs`: [v1.40.0](service/drs/CHANGELOG.md#v1400-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/dsql`: [v1.15.0](service/dsql/CHANGELOG.md#v1150-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/dynamodb`: [v1.60.0](service/dynamodb/CHANGELOG.md#v1600-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/dynamodbstreams`: [v1.35.0](service/dynamodbstreams/CHANGELOG.md#v1350-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/ebs`: [v1.35.0](service/ebs/CHANGELOG.md#v1350-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/ec2`: [v1.312.0](service/ec2/CHANGELOG.md#v13120-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/ec2instanceconnect`: [v1.34.0](service/ec2instanceconnect/CHANGELOG.md#v1340-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/ecr`: [v1.59.0](service/ecr/CHANGELOG.md#v1590-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/ecrpublic`: [v1.40.0](service/ecrpublic/CHANGELOG.md#v1400-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/ecs`: [v1.87.0](service/ecs/CHANGELOG.md#v1870-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/efs`: [v1.43.0](service/efs/CHANGELOG.md#v1430-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/eks`: [v1.89.0](service/eks/CHANGELOG.md#v1890-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/eksauth`: [v1.14.0](service/eksauth/CHANGELOG.md#v1140-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/elasticache`: [v1.55.0](service/elasticache/CHANGELOG.md#v1550-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/elasticbeanstalk`: [v1.36.0](service/elasticbeanstalk/CHANGELOG.md#v1360-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/elasticloadbalancing`: [v1.35.0](service/elasticloadbalancing/CHANGELOG.md#v1350-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2`: [v1.56.0](service/elasticloadbalancingv2/CHANGELOG.md#v1560-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/elasticsearchservice`: [v1.43.0](service/elasticsearchservice/CHANGELOG.md#v1430-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/elementalinference`: [v1.3.0](service/elementalinference/CHANGELOG.md#v130-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/emr`: [v1.62.0](service/emr/CHANGELOG.md#v1620-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/emrcontainers`: [v1.42.0](service/emrcontainers/CHANGELOG.md#v1420-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/emrserverless`: [v1.43.0](service/emrserverless/CHANGELOG.md#v1430-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/entityresolution`: [v1.29.0](service/entityresolution/CHANGELOG.md#v1290-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/eventbridge`: [v1.47.0](service/eventbridge/CHANGELOG.md#v1470-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/evs`: [v1.12.0](service/evs/CHANGELOG.md#v1120-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/finspace`: [v1.35.0](service/finspace/CHANGELOG.md#v1350-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/finspacedata`: [v1.35.0](service/finspacedata/CHANGELOG.md#v1350-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/firehose`: [v1.45.0](service/firehose/CHANGELOG.md#v1450-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/fis`: [v1.39.0](service/fis/CHANGELOG.md#v1390-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/fms`: [v1.46.0](service/fms/CHANGELOG.md#v1460-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/forecast`: [v1.43.0](service/forecast/CHANGELOG.md#v1430-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/forecastquery`: [v1.31.0](service/forecastquery/CHANGELOG.md#v1310-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/frauddetector`: [v1.43.0](service/frauddetector/CHANGELOG.md#v1430-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/freetier`: [v1.15.0](service/freetier/CHANGELOG.md#v1150-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/fsx`: [v1.67.0](service/fsx/CHANGELOG.md#v1670-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/gamelift`: [v1.57.0](service/gamelift/CHANGELOG.md#v1570-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/gameliftstreams`: [v1.13.0](service/gameliftstreams/CHANGELOG.md#v1130-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/geomaps`: [v1.12.0](service/geomaps/CHANGELOG.md#v1120-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/geoplaces`: [v1.10.0](service/geoplaces/CHANGELOG.md#v1100-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/georoutes`: [v1.13.0](service/georoutes/CHANGELOG.md#v1130-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/glacier`: [v1.34.0](service/glacier/CHANGELOG.md#v1340-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/globalaccelerator`: [v1.37.0](service/globalaccelerator/CHANGELOG.md#v1370-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/glue`: [v1.148.0](service/glue/CHANGELOG.md#v11480-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/grafana`: [v1.37.0](service/grafana/CHANGELOG.md#v1370-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/greengrass`: [v1.34.0](service/greengrass/CHANGELOG.md#v1340-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/greengrassv2`: [v1.44.0](service/greengrassv2/CHANGELOG.md#v1440-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/groundstation`: [v1.44.0](service/groundstation/CHANGELOG.md#v1440-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/guardduty`: [v1.81.0](service/guardduty/CHANGELOG.md#v1810-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/health`: [v1.39.0](service/health/CHANGELOG.md#v1390-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/healthlake`: [v1.40.0](service/healthlake/CHANGELOG.md#v1400-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/iam`: [v1.55.0](service/iam/CHANGELOG.md#v1550-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/identitystore`: [v1.38.0](service/identitystore/CHANGELOG.md#v1380-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/imagebuilder`: [v1.57.0](service/imagebuilder/CHANGELOG.md#v1570-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/inspector`: [v1.32.0](service/inspector/CHANGELOG.md#v1320-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/inspector2`: [v1.50.0](service/inspector2/CHANGELOG.md#v1500-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/inspectorscan`: [v1.15.0](service/inspectorscan/CHANGELOG.md#v1150-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/interconnect`: [v1.2.0](service/interconnect/CHANGELOG.md#v120-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/internetmonitor`: [v1.28.0](service/internetmonitor/CHANGELOG.md#v1280-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/invoicing`: [v1.12.0](service/invoicing/CHANGELOG.md#v1120-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/iot`: [v1.76.0](service/iot/CHANGELOG.md#v1760-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/iotdataplane`: [v1.34.0](service/iotdataplane/CHANGELOG.md#v1340-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/iotdeviceadvisor`: [v1.38.0](service/iotdeviceadvisor/CHANGELOG.md#v1380-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/iotfleetwise`: [v1.33.0](service/iotfleetwise/CHANGELOG.md#v1330-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/iotjobsdataplane`: [v1.32.0](service/iotjobsdataplane/CHANGELOG.md#v1320-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/iotmanagedintegrations`: [v1.11.0](service/iotmanagedintegrations/CHANGELOG.md#v1110-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/iotsecuretunneling`: [v1.35.0](service/iotsecuretunneling/CHANGELOG.md#v1350-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/iotsitewise`: [v1.54.0](service/iotsitewise/CHANGELOG.md#v1540-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/iotthingsgraph`: [v1.32.0](service/iotthingsgraph/CHANGELOG.md#v1320-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/iottwinmaker`: [v1.31.0](service/iottwinmaker/CHANGELOG.md#v1310-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/iotwireless`: [v1.57.0](service/iotwireless/CHANGELOG.md#v1570-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/ivs`: [v1.53.0](service/ivs/CHANGELOG.md#v1530-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/ivschat`: [v1.23.0](service/ivschat/CHANGELOG.md#v1230-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/ivsrealtime`: [v1.36.0](service/ivsrealtime/CHANGELOG.md#v1360-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/kafka`: [v1.55.0](service/kafka/CHANGELOG.md#v1550-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/kafkaconnect`: [v1.32.0](service/kafkaconnect/CHANGELOG.md#v1320-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/kendra`: [v1.62.0](service/kendra/CHANGELOG.md#v1620-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/kendraranking`: [v1.17.0](service/kendraranking/CHANGELOG.md#v1170-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/keyspaces`: [v1.27.0](service/keyspaces/CHANGELOG.md#v1270-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/keyspacesstreams`: [v1.9.0](service/keyspacesstreams/CHANGELOG.md#v190-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/kinesis`: [v1.45.0](service/kinesis/CHANGELOG.md#v1450-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/kinesisanalytics`: [v1.32.0](service/kinesisanalytics/CHANGELOG.md#v1320-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/kinesisanalyticsv2`: [v1.39.0](service/kinesisanalyticsv2/CHANGELOG.md#v1390-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/kinesisvideo`: [v1.35.0](service/kinesisvideo/CHANGELOG.md#v1350-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/kinesisvideoarchivedmedia`: [v1.35.0](service/kinesisvideoarchivedmedia/CHANGELOG.md#v1350-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/kinesisvideomedia`: [v1.29.0](service/kinesisvideomedia/CHANGELOG.md#v1290-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/kinesisvideosignaling`: [v1.30.0](service/kinesisvideosignaling/CHANGELOG.md#v1300-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/kinesisvideowebrtcstorage`: [v1.22.0](service/kinesisvideowebrtcstorage/CHANGELOG.md#v1220-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/kms`: [v1.54.0](service/kms/CHANGELOG.md#v1540-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/lakeformation`: [v1.49.0](service/lakeformation/CHANGELOG.md#v1490-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/lambda`: [v1.95.0](service/lambda/CHANGELOG.md#v1950-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/lambdacore`: [v1.1.0](service/lambdacore/CHANGELOG.md#v110-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/lambdamicrovms`: [v1.1.0](service/lambdamicrovms/CHANGELOG.md#v110-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/launchwizard`: [v1.16.0](service/launchwizard/CHANGELOG.md#v1160-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/lexmodelbuildingservice`: [v1.37.0](service/lexmodelbuildingservice/CHANGELOG.md#v1370-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/lexmodelsv2`: [v1.63.0](service/lexmodelsv2/CHANGELOG.md#v1630-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/lexruntimeservice`: [v1.31.0](service/lexruntimeservice/CHANGELOG.md#v1310-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/lexruntimev2`: [v1.37.0](service/lexruntimev2/CHANGELOG.md#v1370-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/licensemanager`: [v1.39.0](service/licensemanager/CHANGELOG.md#v1390-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/licensemanagerlinuxsubscriptions`: [v1.22.0](service/licensemanagerlinuxsubscriptions/CHANGELOG.md#v1220-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/licensemanagerusersubscriptions`: [v1.23.0](service/licensemanagerusersubscriptions/CHANGELOG.md#v1230-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/lightsail`: [v1.57.0](service/lightsail/CHANGELOG.md#v1570-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/location`: [v1.53.0](service/location/CHANGELOG.md#v1530-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/lookoutequipment`: [v1.38.0](service/lookoutequipment/CHANGELOG.md#v1380-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/m2`: [v1.28.0](service/m2/CHANGELOG.md#v1280-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/machinelearning`: [v1.36.0](service/machinelearning/CHANGELOG.md#v1360-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/macie2`: [v1.53.0](service/macie2/CHANGELOG.md#v1530-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/mailmanager`: [v1.20.0](service/mailmanager/CHANGELOG.md#v1200-2026-07-06) - **Feature**: Add request serialization snapshot tests. - **Feature**: This release adds Smithy RPC v2 CBOR as an additional protocol alongside the existing AWS JSON 1.0. The SDK will prioritize its most performant protocol. - `github.com/aws/aws-sdk-go-v2/service/managedblockchain`: [v1.33.0](service/managedblockchain/CHANGELOG.md#v1330-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/managedblockchainquery`: [v1.24.0](service/managedblockchainquery/CHANGELOG.md#v1240-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/marketplaceagreement`: [v1.18.0](service/marketplaceagreement/CHANGELOG.md#v1180-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/marketplacecatalog`: [v1.41.0](service/marketplacecatalog/CHANGELOG.md#v1410-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/marketplacecommerceanalytics`: [v1.32.0](service/marketplacecommerceanalytics/CHANGELOG.md#v1320-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/marketplacedeployment`: [v1.13.0](service/marketplacedeployment/CHANGELOG.md#v1130-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/marketplacediscovery`: [v1.2.0](service/marketplacediscovery/CHANGELOG.md#v120-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/marketplaceentitlementservice`: [v1.39.0](service/marketplaceentitlementservice/CHANGELOG.md#v1390-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/marketplacemetering`: [v1.38.0](service/marketplacemetering/CHANGELOG.md#v1380-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/marketplacereporting`: [v1.9.0](service/marketplacereporting/CHANGELOG.md#v190-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/mediaconnect`: [v1.52.0](service/mediaconnect/CHANGELOG.md#v1520-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/mediaconvert`: [v1.95.0](service/mediaconvert/CHANGELOG.md#v1950-2026-07-06) - **Feature**: Add request serialization snapshot tests. - `github.com/aws/aws-sdk-go-v2/service/medi </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. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiI0Mi45OS4wIiwidXBkYXRlZEluVmVyIjoiNDIuOTkuMCIsInRhcmdldEJyYW5jaCI6IjkuMyIsImxhYmVscyI6WyJUZWFtOlNlY3VyaXR5LUNsb3VkIFNlcnZpY2VzIiwiYmFja3BvcnQtc2tpcCIsImRlcGVuZGVuY2llcyIsInJlbm92YXRlIiwicmVub3ZhdGUtYXV0by1hcHByb3ZlIl19--> Co-authored-by: elastic-renovate-prod[bot] <174716857+elastic-renovate-prod[bot]@users.noreply.github.com>
chore(deps): update module github.com/pelletier/go-toml/v2 to v2.4.2 … …(8.19) (#6981) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/pelletier/go-toml/v2](https://redirect.github.com/pelletier/go-toml) | indirect | patch | `v2.4.0` -> `v2.4.2` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>pelletier/go-toml (github.com/pelletier/go-toml/v2)</summary> ### [`v2.4.2`](https://redirect.github.com/pelletier/go-toml/releases/tag/v2.4.2) [Compare Source](https://redirect.github.com/pelletier/go-toml/compare/v2.4.1...v2.4.2) <!-- Release notes generated using configuration in .github/release.yml at v2.4.2 --> #### What's Changed ##### Fixed bugs - Fix decode of embedded structs tagged with options only (e.g. `,inline`) by [@​pelletier](https://redirect.github.com/pelletier) in [https://github.com/pelletier/go-toml/pull/1079](https://redirect.github.com/pelletier/go-toml/pull/1079) **Full Changelog**: pelletier/go-toml@v2.4.1...v2.4.2 ### [`v2.4.1`](https://redirect.github.com/pelletier/go-toml/releases/tag/v2.4.1) [Compare Source](https://redirect.github.com/pelletier/go-toml/compare/v2.4.0...v2.4.1) <!-- Release notes generated using configuration in .github/release.yml at v2.4.1 --> #### What's Changed ##### Fixed bugs - Fix multiline string, array indentation, and omitempty behavior by [@​pelletier](https://redirect.github.com/pelletier) in [https://github.com/pelletier/go-toml/pull/1076](https://redirect.github.com/pelletier/go-toml/pull/1076) **Full Changelog**: pelletier/go-toml@v2.4.0...v2.4.1 </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:eyJjcmVhdGVkSW5WZXIiOiI0MC42Mi4xIiwidXBkYXRlZEluVmVyIjoiNDAuNjIuMSIsInRhcmdldEJyYW5jaCI6IjguMTkiLCJsYWJlbHMiOlsiVGVhbTpTZWN1cml0eS1DbG91ZCBTZXJ2aWNlcyIsImJhY2twb3J0LXNraXAiLCJkZXBlbmRlbmNpZXMiLCJyZW5vdmF0ZSIsInJlbm92YXRlLWF1dG8tYXBwcm92ZSJdfQ==--> Co-authored-by: elastic-renovate-prod[bot] <174716857+elastic-renovate-prod[bot]@users.noreply.github.com>
chore(deps): update module github.com/onsi/ginkgo/v2 to v2.32.0 (9.4) (… …#6957) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/onsi/ginkgo/v2](https://redirect.github.com/onsi/ginkgo) | indirect | minor | `v2.31.0` -> `v2.32.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>onsi/ginkgo (github.com/onsi/ginkgo/v2)</summary> ### [`v2.32.0`](https://redirect.github.com/onsi/ginkgo/releases/tag/v2.32.0) [Compare Source](https://redirect.github.com/onsi/ginkgo/compare/v2.31.0...v2.32.0) #### 2.32.0 `-fd` generate RSpec-style documentation output. Thank [@​woodie](https://redirect.github.com/woodie) ! \--sleep-on-failure pauses a failed spec before teardown. Thanks [@​qinqon](https://redirect.github.com/qinqon) ! </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:eyJjcmVhdGVkSW5WZXIiOiI0MC42Mi4xIiwidXBkYXRlZEluVmVyIjoiNDAuNjIuMSIsInRhcmdldEJyYW5jaCI6IjkuNCIsImxhYmVscyI6WyJUZWFtOlNlY3VyaXR5LUNsb3VkIFNlcnZpY2VzIiwiYmFja3BvcnQtc2tpcCIsImRlcGVuZGVuY2llcyIsInJlbm92YXRlIiwicmVub3ZhdGUtYXV0by1hcHByb3ZlIl19--> Co-authored-by: elastic-renovate-prod[bot] <174716857+elastic-renovate-prod[bot]@users.noreply.github.com>
PreviousNext