Skip to content

Conversation

@timostamm
Copy link
Member

@timostamm timostamm commented Jul 15, 2025

The option (buf.validate.field).ignore = IGNORE_IF_DEFAULT_VALUE disables validation rules for a field, depending on the value of the field: If the value equals the default value, rules are ignored.

We've found that this option overlaps with IGNORE_IF_UNPOPULATED for fields with implicit presence, and that the exact conditions for validation to apply are quite difficult to understand just from looking at a message definition.

To ensure that Protovalidate rules are easy to understand for authors and consumers, we are removing the option. This is a breaking change.

Updating your rules to this change is likely as simple as switching to IGNORE_IF_ZERO_VALUE (renamed from IGNORE_IF_UNPOPULATED in #397):

syntax="proto3";
message Example {
  string email = 1 [
    (buf.validate.field).string.email = true,
-   (buf.validate.field).ignore = IGNORE_IF_DEFAULT_VALUE
+   (buf.validate.field).ignore = IGNORE_IF_ZERO_VALUE
  ];
}

For proto3 string, bool, bytes, int32, and other numeric fields, as well as repeated fields and map fields, IGNORE_IF_ZERO_VALUE behaves the same as IGNORE_IF_DEFAULT_VALUE. For other fields, we recommend that you switch to CEL to express the exact requirements, which will improve the readability of your schema constraints.

@github-actions
Copy link

The latest Buf updates on your PR. Results from workflow Buf CI / buf (pull_request).

BuildFormatLintBreakingUpdated (UTC)
✅ passed✅ passed✅ passed⏩ skippedJul 15, 2025, 11:33 AM

@timostamm timostamm requested a review from srikrsna-buf July 15, 2025 12:36
@timostamm timostamm merged commit e3a20a6 into main Jul 17, 2025
11 checks passed
@timostamm timostamm deleted the tstamm/Remove-IGNORE_IF_DEFAULT_VALUE branch July 17, 2025 15:18
srikrsna-buf added a commit to bufbuild/protovalidate-java that referenced this pull request Jul 17, 2025
This implements the following upstream changes:
- bufbuild/protovalidate#397
- bufbuild/protovalidate#396
- bufbuild/protovalidate#394

---------

Signed-off-by: Sri Krishna <[email protected]>
srikrsna-buf added a commit to bufbuild/protovalidate-cc that referenced this pull request Jul 17, 2025
This implements the following upstream changes:
- bufbuild/protovalidate#397
- bufbuild/protovalidate#396
- bufbuild/protovalidate#394

---------

Signed-off-by: Sri Krishna <[email protected]>
Co-authored-by: jchadwick-buf <[email protected]>
srikrsna-buf added a commit to bufbuild/protovalidate-es that referenced this pull request Jul 17, 2025
This implements the following upstream changes:
- bufbuild/protovalidate#397
- bufbuild/protovalidate#396
- bufbuild/protovalidate#394

---------

Signed-off-by: Sri Krishna <[email protected]>
Co-authored-by: Sri Krishna <[email protected]>
srikrsna-buf added a commit to bufbuild/protovalidate-es that referenced this pull request Jul 17, 2025
This release is compatible with the
[v0.14.0](https://github.com/bufbuild/protovalidate/releases/tag/v0.14.0)
release of Protovalidate.


## Breaking changes


We want validation rules to be easy to understand for authors and
consumers. To simplify Protovalidate, we are renaming an option and
remove two others. This is a breaking change, and you will have to
update your Protobuf files if they use the relevant options :

- `IGNORE_IF_UNPOPULATED` is renamed to `IGNORE_IF_ZERO_VALUE`.
See bufbuild/protovalidate#397 for details.
- `(buf.validate.message).disabled` is removed.
You can replace it by adding `IGNORE_ALWAYS` to every field of the
message. See bufbuild/protovalidate#394 for
details.
- `IGNORE_IF_DEFAULT_VALUE` is removed.
In most cases, you can replace it with `IGNORE_IF_ZERO_VALUE`. See
bufbuild/protovalidate#396 for details.


## New Contributors
* @jrinehart-buf made their first contribution in
#56

**Full Changelog**:
v0.5.0...v0.6.0

Signed-off-by: Sri Krishna <[email protected]>
srikrsna-buf added a commit to bufbuild/protovalidate-go that referenced this pull request Jul 17, 2025
This implements the following upstream changes:
- bufbuild/protovalidate#397
- bufbuild/protovalidate#396
- bufbuild/protovalidate#394

---------

Signed-off-by: Sri Krishna <[email protected]>
Co-authored-by: jchadwick-buf <[email protected]>
srikrsna-buf added a commit to bufbuild/protovalidate-python that referenced this pull request Jul 17, 2025
This implements the following upstream changes:
- bufbuild/protovalidate#397
- bufbuild/protovalidate#396
- bufbuild/protovalidate#394

---------

Signed-off-by: Sri Krishna <[email protected]>
@bufbuild bufbuild deleted a comment from github-actions bot Jul 18, 2025
oguzhand95 added a commit to cerbos/cerbos that referenced this pull request Aug 25, 2025
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence | Type |
Update |
|---|---|---|---|---|---|---|---|
| buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go |
`v1.36.6-20250625184727-c923a0c2a132.1` ->
`v1.36.8-20250717185734-6c6e0d3c608e.1` |
[![age](https://developer.mend.io/api/mc/badges/age/go/buf.build%2fgen%2fgo%2fbufbuild%2fprotovalidate%2fprotocolbuffers%2fgo/v1.36.8-20250717185734-6c6e0d3c608e.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/buf.build%2fgen%2fgo%2fbufbuild%2fprotovalidate%2fprotocolbuffers%2fgo/v1.36.8-20250717185734-6c6e0d3c608e.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/buf.build%2fgen%2fgo%2fbufbuild%2fprotovalidate%2fprotocolbuffers%2fgo/v1.36.6-20250625184727-c923a0c2a132.1/v1.36.8-20250717185734-6c6e0d3c608e.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/buf.build%2fgen%2fgo%2fbufbuild%2fprotovalidate%2fprotocolbuffers%2fgo/v1.36.6-20250625184727-c923a0c2a132.1/v1.36.8-20250717185734-6c6e0d3c608e.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | patch |
|
[buf.build/go/protovalidate](https://redirect.github.com/bufbuild/protovalidate-go)
| `v0.13.1` -> `v0.14.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/buf.build%2fgo%2fprotovalidate/v0.14.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/buf.build%2fgo%2fprotovalidate/v0.14.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/buf.build%2fgo%2fprotovalidate/v0.13.1/v0.14.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/buf.build%2fgo%2fprotovalidate/v0.13.1/v0.14.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
|
[github.com/aws/aws-sdk-go-v2](https://redirect.github.com/aws/aws-sdk-go-v2)
| `v1.38.0` -> `v1.38.1` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2/v1.38.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go-v2/v1.38.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go-v2/v1.38.0/v1.38.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2/v1.38.0/v1.38.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | patch |
|
[github.com/aws/aws-sdk-go-v2/config](https://redirect.github.com/aws/aws-sdk-go-v2)
| `v1.30.3` -> `v1.31.2` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.31.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.31.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.30.3/v1.31.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.30.3/v1.31.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
|
[github.com/aws/aws-sdk-go-v2/service/marketplacemetering](https://redirect.github.com/aws/aws-sdk-go-v2)
| `v1.32.0` -> `v1.33.1` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fmarketplacemetering/v1.33.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fmarketplacemetering/v1.33.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fmarketplacemetering/v1.32.0/v1.33.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fmarketplacemetering/v1.32.0/v1.33.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
|
[github.com/aws/aws-sdk-go-v2/service/s3](https://redirect.github.com/aws/aws-sdk-go-v2)
| `v1.87.0` -> `v1.87.1` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fs3/v1.87.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fs3/v1.87.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fs3/v1.87.0/v1.87.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fs3/v1.87.0/v1.87.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | patch |
| [github.com/bufbuild/buf](https://redirect.github.com/bufbuild/buf) |
`v1.55.1` -> `v1.56.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fbufbuild%2fbuf/v1.56.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fbufbuild%2fbuf/v1.56.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fbufbuild%2fbuf/v1.55.1/v1.56.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fbufbuild%2fbuf/v1.55.1/v1.56.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
|
[github.com/cerbos/cerbos-sdk-go](https://redirect.github.com/cerbos/cerbos-sdk-go)
| `v0.3.8` -> `v0.3.9` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fcerbos%2fcerbos-sdk-go/v0.3.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fcerbos%2fcerbos-sdk-go/v0.3.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fcerbos%2fcerbos-sdk-go/v0.3.8/v0.3.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fcerbos%2fcerbos-sdk-go/v0.3.8/v0.3.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | patch |
|
[github.com/cerbos/cloud-api](https://redirect.github.com/cerbos/cloud-api)
| `v0.1.55` -> `v0.1.56` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fcerbos%2fcloud-api/v0.1.56?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fcerbos%2fcloud-api/v0.1.56?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fcerbos%2fcloud-api/v0.1.55/v0.1.56?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fcerbos%2fcloud-api/v0.1.55/v0.1.56?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | patch |
|
[github.com/cerbos/protoc-gen-jsonschema](https://redirect.github.com/cerbos/protoc-gen-jsonschema)
| `v0.1.6` -> `v0.1.7` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fcerbos%2fprotoc-gen-jsonschema/v0.1.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fcerbos%2fprotoc-gen-jsonschema/v0.1.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fcerbos%2fprotoc-gen-jsonschema/v0.1.6/v0.1.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fcerbos%2fprotoc-gen-jsonschema/v0.1.6/v0.1.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | patch |
|
[github.com/gdamore/tcell/v2](https://redirect.github.com/gdamore/tcell)
| `v2.8.1` -> `v2.9.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgdamore%2ftcell%2fv2/v2.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fgdamore%2ftcell%2fv2/v2.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fgdamore%2ftcell%2fv2/v2.8.1/v2.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgdamore%2ftcell%2fv2/v2.8.1/v2.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
|
[github.com/goreleaser/goreleaser/v2](https://redirect.github.com/goreleaser/goreleaser)
| `v2.11.0` -> `v2.11.2` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgoreleaser%2fgoreleaser%2fv2/v2.11.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fgoreleaser%2fgoreleaser%2fv2/v2.11.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fgoreleaser%2fgoreleaser%2fv2/v2.11.0/v2.11.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgoreleaser%2fgoreleaser%2fv2/v2.11.0/v2.11.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | patch |
|
[github.com/grpc-ecosystem/grpc-gateway/v2](https://redirect.github.com/grpc-ecosystem/grpc-gateway)
| `v2.27.1` -> `v2.27.2` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgrpc-ecosystem%2fgrpc-gateway%2fv2/v2.27.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fgrpc-ecosystem%2fgrpc-gateway%2fv2/v2.27.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fgrpc-ecosystem%2fgrpc-gateway%2fv2/v2.27.1/v2.27.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgrpc-ecosystem%2fgrpc-gateway%2fv2/v2.27.1/v2.27.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | patch |
|
[github.com/lestrrat-go/httprc/v3](https://redirect.github.com/lestrrat-go/httprc)
| `v3.0.0` -> `v3.0.1` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2flestrrat-go%2fhttprc%2fv3/v3.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2flestrrat-go%2fhttprc%2fv3/v3.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2flestrrat-go%2fhttprc%2fv3/v3.0.0/v3.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2flestrrat-go%2fhttprc%2fv3/v3.0.0/v3.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | patch |
|
[github.com/spiffe/go-spiffe/v2](https://redirect.github.com/spiffe/go-spiffe)
| `v2.5.0` -> `v2.6.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fspiffe%2fgo-spiffe%2fv2/v2.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fspiffe%2fgo-spiffe%2fv2/v2.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fspiffe%2fgo-spiffe%2fv2/v2.5.0/v2.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fspiffe%2fgo-spiffe%2fv2/v2.5.0/v2.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
|
[github.com/stretchr/testify](https://redirect.github.com/stretchr/testify)
| `v1.10.0` -> `v1.11.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fstretchr%2ftestify/v1.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fstretchr%2ftestify/v1.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fstretchr%2ftestify/v1.10.0/v1.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fstretchr%2ftestify/v1.10.0/v1.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
|
[google.golang.org/genproto/googleapis/api](https://redirect.github.com/googleapis/go-genproto)
| `5f3141c` -> `3122310` |
[![age](https://developer.mend.io/api/mc/badges/age/go/google.golang.org%2fgenproto%2fgoogleapis%2fapi/v0.0.0-20250818200422-3122310a409c?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/google.golang.org%2fgenproto%2fgoogleapis%2fapi/v0.0.0-20250818200422-3122310a409c?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/google.golang.org%2fgenproto%2fgoogleapis%2fapi/v0.0.0-20250811230008-5f3141c8851a/v0.0.0-20250818200422-3122310a409c?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/google.golang.org%2fgenproto%2fgoogleapis%2fapi/v0.0.0-20250811230008-5f3141c8851a/v0.0.0-20250818200422-3122310a409c?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | digest |
| [google.golang.org/grpc](https://redirect.github.com/grpc/grpc-go) |
`v1.74.2` -> `v1.75.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/google.golang.org%2fgrpc/v1.75.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/google.golang.org%2fgrpc/v1.75.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/google.golang.org%2fgrpc/v1.74.2/v1.75.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/google.golang.org%2fgrpc/v1.74.2/v1.75.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
|
[google.golang.org/protobuf](https://redirect.github.com/protocolbuffers/protobuf-go)
| `v1.36.7` -> `v1.36.8` |
[![age](https://developer.mend.io/api/mc/badges/age/go/google.golang.org%2fprotobuf/v1.36.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/google.golang.org%2fprotobuf/v1.36.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/google.golang.org%2fprotobuf/v1.36.7/v1.36.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/google.golang.org%2fprotobuf/v1.36.7/v1.36.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | patch |
| [helm.sh/helm/v3](https://redirect.github.com/helm/helm) | `v3.18.5`
-> `v3.18.6` |
[![age](https://developer.mend.io/api/mc/badges/age/go/helm.sh%2fhelm%2fv3/v3.18.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/helm.sh%2fhelm%2fv3/v3.18.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/helm.sh%2fhelm%2fv3/v3.18.5/v3.18.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/helm.sh%2fhelm%2fv3/v3.18.5/v3.18.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | patch |

---

### Release Notes

<details>
<summary>bufbuild/protovalidate-go
(buf.build/go/protovalidate)</summary>

###
[`v0.14.0`](https://redirect.github.com/bufbuild/protovalidate-go/releases/tag/v0.14.0)

[Compare
Source](https://redirect.github.com/bufbuild/protovalidate-go/compare/v0.13.1...v0.14.0)

This release is compatible with the
[v0.14.0](https://redirect.github.com/bufbuild/protovalidate/releases/tag/v0.14.0)
release of Protovalidate.

#### Breaking changes

We want validation rules to be easy to understand for authors and
consumers. To simplify Protovalidate, we are renaming an option and
remove two others. This is a breaking change, and you will have to
update your Protobuf files if they use the relevant options :

- `IGNORE_IF_UNPOPULATED` is renamed to `IGNORE_IF_ZERO_VALUE`.
See
[bufbuild/protovalidate#397](https://redirect.github.com/bufbuild/protovalidate/pull/397)
for details.
- `(buf.validate.message).disabled` is removed.
You can replace it by adding `IGNORE_ALWAYS` to every field of the
message. See
[bufbuild/protovalidate#394](https://redirect.github.com/bufbuild/protovalidate/pull/394)
for details.
- `IGNORE_IF_DEFAULT_VALUE` is removed.
In most cases, you can replace it with `IGNORE_IF_ZERO_VALUE`. See
[bufbuild/protovalidate#396](https://redirect.github.com/bufbuild/protovalidate/pull/396)
for details.

**Full Changelog**:
<https://github.com/bufbuild/protovalidate-go/compare/v0.13.1...v0.14.0>

</details>

<details>
<summary>aws/aws-sdk-go-v2 (github.com/aws/aws-sdk-go-v2)</summary>

###
[`v1.38.1`](https://redirect.github.com/aws/aws-sdk-go-v2/blob/HEAD/CHANGELOG.md#Release-2025-07-25)

[Compare
Source](https://redirect.github.com/aws/aws-sdk-go-v2/compare/v1.38.0...v1.38.1)

#### Module Highlights

- `github.com/aws/aws-sdk-go-v2/service/appintegrations`:
[v1.32.0](service/appintegrations/CHANGELOG.md#v1320-2025-07-25)
- **Feature**: Amazon AppIntegrations introduces new configuration
capabilities to enable customers to manage iframe permissions, control
application refresh behavior (per contact or per browser/cross-contact),
and run background applications (service).
- `github.com/aws/aws-sdk-go-v2/service/budgets`:
[v1.32.0](service/budgets/CHANGELOG.md#v1320-2025-07-25)
- **Feature**: Adds IPv6 and PrivateLink support for AWS Budgets in IAD.
- `github.com/aws/aws-sdk-go-v2/service/configservice`:
[v1.53.2](service/configservice/CHANGELOG.md#v1532-2025-07-25)
- **Documentation**: Documentation improvements have been made to the
EvaluationModel and DescribeConfigurationRecorders APIs.
- `github.com/aws/aws-sdk-go-v2/service/ec2`:
[v1.236.0](service/ec2/CHANGELOG.md#v12360-2025-07-25)
- **Feature**: Transit Gateway native integration with AWS Network
Firewall. Adding new enum value for the new Transit Gateway Attachment
type.
- `github.com/aws/aws-sdk-go-v2/service/kms`:
[v1.41.4](service/kms/CHANGELOG.md#v1414-2025-07-25)
  - **Documentation**: Doc only update: fixed grammatical errors.
- `github.com/aws/aws-sdk-go-v2/service/mediapackagev2`:
[v1.26.0](service/mediapackagev2/CHANGELOG.md#v1260-2025-07-25)
- **Feature**: This release adds support for specifying a preferred
input for channels using CMAF ingest.
- `github.com/aws/aws-sdk-go-v2/service/socialmessaging`:
[v1.3.0](service/socialmessaging/CHANGELOG.md#v130-2025-07-25)
- **Feature**: This release introduces new WhatsApp template management
APIs that enable customers to programmatically create and submit
templates for approval, monitor approval status, and manage the complete
template lifecycle
- `github.com/aws/aws-sdk-go-v2/service/sqs`:
[v1.38.10](service/sqs/CHANGELOG.md#v13810-2025-07-25)
- **Documentation**: Documentation updates for Amazon SQS fair queues
feature.

</details>

<details>
<summary>bufbuild/buf (github.com/bufbuild/buf)</summary>

###
[`v1.56.0`](https://redirect.github.com/bufbuild/buf/blob/HEAD/CHANGELOG.md#v1560---2025-07-31)

[Compare
Source](https://redirect.github.com/bufbuild/buf/compare/v1.55.1...v1.56.0)

- Add `buf export --all` flag to include non-proto source files.
- Add s390x binaries for Linux to releases.
- Fix ppc64le binaries for Linux released as x86\_64 binaries.
- `buf lint` will no longer warn about uses of
`(buf.validate.message).disabled`, as it was
removed in protovalidate v0.14.0. Please update to protovalidate v0.14.0
or higher, using the
  steps outlined in the
[protovalidate release
notes](https://redirect.github.com/bufbuild/protovalidate/releases/tag/v0.14.0).
- Fix `buf breaking --against-registry` to work with new modules that
have no commits on the
  default branch.

</details>

<details>
<summary>cerbos/cerbos-sdk-go
(github.com/cerbos/cerbos-sdk-go)</summary>

###
[`v0.3.9`](https://redirect.github.com/cerbos/cerbos-sdk-go/compare/v0.3.8...v0.3.9)

[Compare
Source](https://redirect.github.com/cerbos/cerbos-sdk-go/compare/v0.3.8...v0.3.9)

</details>

<details>
<summary>cerbos/cloud-api (github.com/cerbos/cloud-api)</summary>

###
[`v0.1.56`](https://redirect.github.com/cerbos/cloud-api/compare/v0.1.55...v0.1.56)

[Compare
Source](https://redirect.github.com/cerbos/cloud-api/compare/v0.1.55...v0.1.56)

</details>

<details>
<summary>cerbos/protoc-gen-jsonschema
(github.com/cerbos/protoc-gen-jsonschema)</summary>

###
[`v0.1.7`](https://redirect.github.com/cerbos/protoc-gen-jsonschema/compare/v0.1.6...v0.1.7)

[Compare
Source](https://redirect.github.com/cerbos/protoc-gen-jsonschema/compare/v0.1.6...v0.1.7)

</details>

<details>
<summary>gdamore/tcell (github.com/gdamore/tcell/v2)</summary>

###
[`v2.9.0`](https://redirect.github.com/gdamore/tcell/releases/tag/v2.9.0):
Version 2.9.0 Feature Release

[Compare
Source](https://redirect.github.com/gdamore/tcell/compare/v2.8.1...v2.9.0)

#### Main Features

- Initial support for Plan9 by
[@&#8203;mushkevych](https://redirect.github.com/mushkevych) in
[#&#8203;810](https://redirect.github.com/gdamore/tcell/pull/810)
- Optimized Windows performance by
[@&#8203;Bios-Marcel](https://redirect.github.com/Bios-Marcel) in
[#&#8203;772](https://redirect.github.com/gdamore/tcell/pull/772)
- Added public methods for Underline Style and Underline color by
[@&#8203;noborus](https://redirect.github.com/noborus) in
[#&#8203;790](https://redirect.github.com/gdamore/tcell/pull/790)
- Tmux is now in the "base" (always included by default) terminals
([#&#8203;812](https://redirect.github.com/gdamore/tcell/pull/812))
- New showcolor demo
([#&#8203;813](https://redirect.github.com/gdamore/tcell/pull/813))
- The gallery has been moved to a wiki to keep the readme manageable

#### Notable Bug Fixes

- Horizontal scroll events were not emitted by
[@&#8203;codelif](https://redirect.github.com/codelif) in
[#&#8203;789](https://redirect.github.com/gdamore/tcell/pull/789)
- Do not filter Ctrl+Alt in non-rune cases by
[@&#8203;masmu](https://redirect.github.com/masmu) in
[#&#8203;749](https://redirect.github.com/gdamore/tcell/pull/749)
- Close osc8 exitUrl correctly by
[@&#8203;phanen](https://redirect.github.com/phanen) in
[#&#8203;792](https://redirect.github.com/gdamore/tcell/pull/792)

#### New Contributors

- [@&#8203;itaranto](https://redirect.github.com/itaranto) made their
first contribution in
[#&#8203;791](https://redirect.github.com/gdamore/tcell/pull/791)
- [@&#8203;codelif](https://redirect.github.com/codelif) made their
first contribution in
[#&#8203;789](https://redirect.github.com/gdamore/tcell/pull/789)
- [@&#8203;phanen](https://redirect.github.com/phanen) made their first
contribution in
[#&#8203;792](https://redirect.github.com/gdamore/tcell/pull/792)
- [@&#8203;shikaan](https://redirect.github.com/shikaan) made their
first contribution in
[#&#8203;778](https://redirect.github.com/gdamore/tcell/pull/778)
- [@&#8203;mushkevych](https://redirect.github.com/mushkevych) made
their first contribution in
[#&#8203;810](https://redirect.github.com/gdamore/tcell/pull/810)
- [@&#8203;masmu](https://redirect.github.com/masmu) made their first
contribution in
[#&#8203;749](https://redirect.github.com/gdamore/tcell/pull/749)

**Full Changelog**:
<https://github.com/gdamore/tcell/compare/v2.8.1...v2.9.0>

</details>

<details>
<summary>goreleaser/goreleaser
(github.com/goreleaser/goreleaser/v2)</summary>

###
[`v2.11.2`](https://redirect.github.com/goreleaser/goreleaser/releases/tag/v2.11.2)

[Compare
Source](https://redirect.github.com/goreleaser/goreleaser/compare/v2.11.1...v2.11.2)

##### Announcement

Read the official announcement: [Announcing GoReleaser
v2.11](https://goreleaser.com/blog/goreleaser-v2.11/).

##### Changelog

##### Bug fixes

-
[`3d51f80`](https://redirect.github.com/goreleaser/goreleaser/commit/3d51f80d6af46f5f7ab1eda03c2e6fdbd0b17d28):
fix(shell): prevent panic on empty commands
([#&#8203;5929](https://redirect.github.com/goreleaser/goreleaser/issues/5929))
([@&#8203;caarlos0](https://redirect.github.com/caarlos0))

##### Other work

-
[`881cb1e`](https://redirect.github.com/goreleaser/goreleaser/commit/881cb1ebd4db0dd758315a0380abe25fc5b827be):
chore(site): rm google analytics
([@&#8203;caarlos0](https://redirect.github.com/caarlos0))

**Full Changelog**:
<https://github.com/goreleaser/goreleaser/compare/v2.11.1...v2.11.2>

##### Helping out

This release is only possible thanks to **all** the support of some
**awesome people**!

Want to be one of them?
You can [sponsor](https://goreleaser.com/sponsors/), get a [Pro
License](https://goreleaser.com/pro) or [contribute with
code](https://goreleaser.com/contributing).

##### Where to go next?

- Find examples and commented usage of all options in our
[website](https://goreleaser.com/intro/).
- Reach out on [Discord](https://discord.gg/RGEBtg8vQ6) and
[Twitter](https://twitter.com/goreleaser)!

<a href="https://goreleaser.com"><img
src="https://github.com/goreleaser/artwork/master/opencollective-header.png"
with="100%" alt="GoReleaser logo"></a>

###
[`v2.11.1`](https://redirect.github.com/goreleaser/goreleaser/releases/tag/v2.11.1)

[Compare
Source](https://redirect.github.com/goreleaser/goreleaser/compare/v2.11.0...v2.11.1)

##### Announcement

Read the official announcement: [Announcing GoReleaser
v2.11](https://goreleaser.com/blog/goreleaser-v2.11/).

##### Changelog

##### Bug fixes

-
[`7903227`](https://redirect.github.com/goreleaser/goreleaser/commit/79032277d8ea11f64a54239bd0efefb478e740df):
fix(artifactory,http): exts filter not working properly
([#&#8203;5892](https://redirect.github.com/goreleaser/goreleaser/issues/5892))
([@&#8203;caarlos0](https://redirect.github.com/caarlos0))
-
[`63a4e0a`](https://redirect.github.com/goreleaser/goreleaser/commit/63a4e0abc1f42c3e5d5f6fef65286053fa7c87bc):
fix(aur): quotting when binary
([#&#8203;5914](https://redirect.github.com/goreleaser/goreleaser/issues/5914))
([@&#8203;caarlos0](https://redirect.github.com/caarlos0))
-
[`9e1f87f`](https://redirect.github.com/goreleaser/goreleaser/commit/9e1f87ff991c5ff1c000b7951ecda14ab1358237):
fix(nix): snapshot builds can now hash files as well
([#&#8203;5894](https://redirect.github.com/goreleaser/goreleaser/issues/5894))
([@&#8203;caarlos0](https://redirect.github.com/caarlos0))
-
[`37ecf0b`](https://redirect.github.com/goreleaser/goreleaser/commit/37ecf0bbf26b571e4deba6dbf397289ab63f6ec7):
fix(s3): acls not working on aws sdk v2
([#&#8203;5904](https://redirect.github.com/goreleaser/goreleaser/issues/5904))
([@&#8203;caarlos0](https://redirect.github.com/caarlos0))
-
[`58cccd0`](https://redirect.github.com/goreleaser/goreleaser/commit/58cccd08357080536fa1ec95cf49d3411be7b683):
fix: exec.CommandContext
([#&#8203;5913](https://redirect.github.com/goreleaser/goreleaser/issues/5913))
([@&#8203;caarlos0](https://redirect.github.com/caarlos0))
-
[`58ac17a`](https://redirect.github.com/goreleaser/goreleaser/commit/58ac17ae87e2dc8ef4081a86f792c4a508409b75):
fix: make brews deprecation "soft"
([#&#8203;5924](https://redirect.github.com/goreleaser/goreleaser/issues/5924))
([@&#8203;caarlos0](https://redirect.github.com/caarlos0))

##### Documentation updates

-
[`32b43f7`](https://redirect.github.com/goreleaser/goreleaser/commit/32b43f7dfc854c0bf2f2a0dea26b61e030bc6f9b):
docs: announce v2.11
([#&#8203;5886](https://redirect.github.com/goreleaser/goreleaser/issues/5886))
([@&#8203;caarlos0](https://redirect.github.com/caarlos0))
-
[`e9308f6`](https://redirect.github.com/goreleaser/goreleaser/commit/e9308f679f2e45c69449f016987fc676bcf8a024):
docs: fix pro inline shortcode
([@&#8203;caarlos0](https://redirect.github.com/caarlos0))
-
[`8a9115e`](https://redirect.github.com/goreleaser/goreleaser/commit/8a9115ecfb266d94203874024b32966284ac646d):
docs: update USERS.md
([#&#8203;5895](https://redirect.github.com/goreleaser/goreleaser/issues/5895))
([@&#8203;2xburnt](https://redirect.github.com/2xburnt))
-
[`3f2ba29`](https://redirect.github.com/goreleaser/goreleaser/commit/3f2ba2946b788ff2e8119ae8d525f478b8f05f79):
docs: update post
([@&#8203;caarlos0](https://redirect.github.com/caarlos0))
-
[`4901e72`](https://redirect.github.com/goreleaser/goreleaser/commit/4901e7275af1e4816d3b3b2651829e0b87a7e5f8):
docs: update required workflow permissions in attestations.md
([#&#8203;5900](https://redirect.github.com/goreleaser/goreleaser/issues/5900))
([@&#8203;mroth](https://redirect.github.com/mroth))
-
[`c0dc03d`](https://redirect.github.com/goreleaser/goreleaser/commit/c0dc03d8cecde92e59bbc50b3a54b879173202d6):
docs: update users.md
([@&#8203;caarlos0](https://redirect.github.com/caarlos0))

**Full Changelog**:
<https://github.com/goreleaser/goreleaser/compare/v2.11.0...v2.11.1>

##### Helping out

This release is only possible thanks to **all** the support of some
**awesome people**!

Want to be one of them?
You can [sponsor](https://goreleaser.com/sponsors/), get a [Pro
License](https://goreleaser.com/pro) or [contribute with
code](https://goreleaser.com/contributing).

##### Where to go next?

- Find examples and commented usage of all options in our
[website](https://goreleaser.com/intro/).
- Reach out on [Discord](https://discord.gg/RGEBtg8vQ6) and
[Twitter](https://twitter.com/goreleaser)!

<a href="https://goreleaser.com"><img
src="https://github.com/goreleaser/artwork/master/opencollective-header.png"
with="100%" alt="GoReleaser logo"></a>

</details>

<details>
<summary>grpc-ecosystem/grpc-gateway
(github.com/grpc-ecosystem/grpc-gateway/v2)</summary>

###
[`v2.27.2`](https://redirect.github.com/grpc-ecosystem/grpc-gateway/releases/tag/v2.27.2)

[Compare
Source](https://redirect.github.com/grpc-ecosystem/grpc-gateway/compare/v2.27.1...v2.27.2)

#### What's Changed

- Fix nested schema definition for body parameter
([#&#8203;3058](https://redirect.github.com/grpc-ecosystem/grpc-gateway/issues/3058))
by
[@&#8203;ilyongcho-moloco](https://redirect.github.com/ilyongcho-moloco)
in
[#&#8203;5827](https://redirect.github.com/grpc-ecosystem/grpc-gateway/pull/5827)
- Replace gopkg.in/yaml.v3 with go.yaml.in/yaml/v3 by
[@&#8203;MB175](https://redirect.github.com/MB175) in
[#&#8203;5857](https://redirect.github.com/grpc-ecosystem/grpc-gateway/pull/5857)

#### New Contributors

-
[@&#8203;ilyongcho-moloco](https://redirect.github.com/ilyongcho-moloco)
made their first contribution in
[#&#8203;5827](https://redirect.github.com/grpc-ecosystem/grpc-gateway/pull/5827)
- [@&#8203;MB175](https://redirect.github.com/MB175) made their first
contribution in
[#&#8203;5857](https://redirect.github.com/grpc-ecosystem/grpc-gateway/pull/5857)

**Full Changelog**:
<https://github.com/grpc-ecosystem/grpc-gateway/compare/v2.27.1...v2.27.2>

</details>

<details>
<summary>lestrrat-go/httprc (github.com/lestrrat-go/httprc/v3)</summary>

###
[`v3.0.1`](https://redirect.github.com/lestrrat-go/httprc/compare/v3.0.0...v3.0.1)

[Compare
Source](https://redirect.github.com/lestrrat-go/httprc/compare/v3.0.0...v3.0.1)

</details>

<details>
<summary>spiffe/go-spiffe (github.com/spiffe/go-spiffe/v2)</summary>

###
[`v2.6.0`](https://redirect.github.com/spiffe/go-spiffe/releases/tag/v2.6.0)

[Compare
Source](https://redirect.github.com/spiffe/go-spiffe/compare/v2.5.0...v2.6.0)

##### Changed

- Minimum Go version is now go1.24.0, following our support policy.
- Other dependency updates.

</details>

<details>
<summary>stretchr/testify (github.com/stretchr/testify)</summary>

###
[`v1.11.0`](https://redirect.github.com/stretchr/testify/releases/tag/v1.11.0)

[Compare
Source](https://redirect.github.com/stretchr/testify/compare/v1.10.0...v1.11.0)

#### What's Changed

##### Functional Changes

v1.11.0 Includes a number of performance improvements.

- Call stack perf change for CallerInfo by
[@&#8203;mikeauclair](https://redirect.github.com/mikeauclair) in
[#&#8203;1614](https://redirect.github.com/stretchr/testify/pull/1614)
- Lazily render mock diff output on successful match by
[@&#8203;mikeauclair](https://redirect.github.com/mikeauclair) in
[#&#8203;1615](https://redirect.github.com/stretchr/testify/pull/1615)
- assert: check early in Eventually, EventuallyWithT, and Never by
[@&#8203;cszczepaniak](https://redirect.github.com/cszczepaniak) in
[#&#8203;1427](https://redirect.github.com/stretchr/testify/pull/1427)
- assert: add IsNotType by
[@&#8203;bartventer](https://redirect.github.com/bartventer) in
[#&#8203;1730](https://redirect.github.com/stretchr/testify/pull/1730)
- assert.JSONEq: shortcut if same strings by
[@&#8203;dolmen](https://redirect.github.com/dolmen) in
[#&#8203;1754](https://redirect.github.com/stretchr/testify/pull/1754)
- assert.YAMLEq: shortcut if same strings by
[@&#8203;dolmen](https://redirect.github.com/dolmen) in
[#&#8203;1755](https://redirect.github.com/stretchr/testify/pull/1755)
- assert: faster and simpler isEmpty using reflect.Value.IsZero by
[@&#8203;dolmen](https://redirect.github.com/dolmen) in
[#&#8203;1761](https://redirect.github.com/stretchr/testify/pull/1761)
- suite: faster methods filtering (internal refactor) by
[@&#8203;dolmen](https://redirect.github.com/dolmen) in
[#&#8203;1758](https://redirect.github.com/stretchr/testify/pull/1758)

##### Fixes

- assert.ErrorAs: log target type by
[@&#8203;craig65535](https://redirect.github.com/craig65535) in
[#&#8203;1345](https://redirect.github.com/stretchr/testify/pull/1345)
- Fix failure message formatting for Positive and Negative asserts in
[#&#8203;1062](https://redirect.github.com/stretchr/testify/pull/1062)
- Improve ErrorIs message when error is nil but an error was expected by
[@&#8203;tsioftas](https://redirect.github.com/tsioftas) in
[#&#8203;1681](https://redirect.github.com/stretchr/testify/pull/1681)
- fix Subset/NotSubset when calling with mixed input types by
[@&#8203;siliconbrain](https://redirect.github.com/siliconbrain) in
[#&#8203;1729](https://redirect.github.com/stretchr/testify/pull/1729)
- Improve ErrorAs failure message when error is nil by
[@&#8203;ccoVeille](https://redirect.github.com/ccoVeille) in
[#&#8203;1734](https://redirect.github.com/stretchr/testify/pull/1734)
- mock.AssertNumberOfCalls: improve error msg by
[@&#8203;3scalation](https://redirect.github.com/3scalation) in
[#&#8203;1743](https://redirect.github.com/stretchr/testify/pull/1743)

##### Documentation, Build & CI

- docs: Fix typo in README by
[@&#8203;alexandear](https://redirect.github.com/alexandear) in
[#&#8203;1688](https://redirect.github.com/stretchr/testify/pull/1688)
- Replace deprecated io/ioutil with io and os by
[@&#8203;alexandear](https://redirect.github.com/alexandear) in
[#&#8203;1684](https://redirect.github.com/stretchr/testify/pull/1684)
- Document consequences of calling t.FailNow() by
[@&#8203;greg0ire](https://redirect.github.com/greg0ire) in
[#&#8203;1710](https://redirect.github.com/stretchr/testify/pull/1710)
- chore: update docs for Unset
[#&#8203;1621](https://redirect.github.com/stretchr/testify/issues/1621)
by [@&#8203;techfg](https://redirect.github.com/techfg) in
[#&#8203;1709](https://redirect.github.com/stretchr/testify/pull/1709)
- README: apply gofmt to examples by
[@&#8203;alexandear](https://redirect.github.com/alexandear) in
[#&#8203;1687](https://redirect.github.com/stretchr/testify/pull/1687)
- refactor: use %q and %T to simplify fmt.Sprintf by
[@&#8203;alexandear](https://redirect.github.com/alexandear) in
[#&#8203;1674](https://redirect.github.com/stretchr/testify/pull/1674)
- Propose Christophe Colombier (ccoVeille) as approver by
[@&#8203;brackendawson](https://redirect.github.com/brackendawson) in
[#&#8203;1716](https://redirect.github.com/stretchr/testify/pull/1716)
- Update documentation for the Error function in assert or require
package by [@&#8203;architagr](https://redirect.github.com/architagr) in
[#&#8203;1675](https://redirect.github.com/stretchr/testify/pull/1675)
- assert: remove deprecated build constraints by
[@&#8203;alexandear](https://redirect.github.com/alexandear) in
[#&#8203;1671](https://redirect.github.com/stretchr/testify/pull/1671)
- assert: apply gofumpt to internal test suite by
[@&#8203;ccoVeille](https://redirect.github.com/ccoVeille) in
[#&#8203;1739](https://redirect.github.com/stretchr/testify/pull/1739)
- CI: fix shebang in .ci.\*.sh scripts by
[@&#8203;dolmen](https://redirect.github.com/dolmen) in
[#&#8203;1746](https://redirect.github.com/stretchr/testify/pull/1746)
- assert,require: enable parallel testing on (almost) all top tests by
[@&#8203;dolmen](https://redirect.github.com/dolmen) in
[#&#8203;1747](https://redirect.github.com/stretchr/testify/pull/1747)
- suite.Passed: add one more status test report by
[@&#8203;Ararsa-Derese](https://redirect.github.com/Ararsa-Derese) in
[#&#8203;1706](https://redirect.github.com/stretchr/testify/pull/1706)
- Add Helper() method in internal mocks and assert.CollectT by
[@&#8203;dolmen](https://redirect.github.com/dolmen) in
[#&#8203;1423](https://redirect.github.com/stretchr/testify/pull/1423)
- assert.Same/NotSame: improve usage of Sprintf by
[@&#8203;ccoVeille](https://redirect.github.com/ccoVeille) in
[#&#8203;1742](https://redirect.github.com/stretchr/testify/pull/1742)
- mock: enable parallel testing on internal testsuite by
[@&#8203;dolmen](https://redirect.github.com/dolmen) in
[#&#8203;1756](https://redirect.github.com/stretchr/testify/pull/1756)
- suite: cleanup use of 'testing' internals at runtime by
[@&#8203;dolmen](https://redirect.github.com/dolmen) in
[#&#8203;1751](https://redirect.github.com/stretchr/testify/pull/1751)
- assert: check test failure message for Empty and NotEmpty by
[@&#8203;ccoVeille](https://redirect.github.com/ccoVeille) in
[#&#8203;1745](https://redirect.github.com/stretchr/testify/pull/1745)
- deps: fix dependency cycle with objx (again) by
[@&#8203;dolmen](https://redirect.github.com/dolmen) in
[#&#8203;1567](https://redirect.github.com/stretchr/testify/pull/1567)
- assert.Empty: comprehensive doc of "Empty"-ness rules by
[@&#8203;dolmen](https://redirect.github.com/dolmen) in
[#&#8203;1753](https://redirect.github.com/stretchr/testify/pull/1753)
- doc: improve godoc of top level 'testify' package by
[@&#8203;dolmen](https://redirect.github.com/dolmen) in
[#&#8203;1760](https://redirect.github.com/stretchr/testify/pull/1760)
- assert.ErrorAs: simplify retrieving the type name by
[@&#8203;ccoVeille](https://redirect.github.com/ccoVeille) in
[#&#8203;1740](https://redirect.github.com/stretchr/testify/pull/1740)
- assert.EqualValues: improve test coverage to 100% by
[@&#8203;dolmen](https://redirect.github.com/dolmen) in
[#&#8203;1763](https://redirect.github.com/stretchr/testify/pull/1763)
- suite.Run: simplify running of Setup/TeardownSuite by
[@&#8203;renzoarreaza](https://redirect.github.com/renzoarreaza) in
[#&#8203;1769](https://redirect.github.com/stretchr/testify/pull/1769)
- assert.CallerInfo: micro optimization by using LastIndexByte by
[@&#8203;dolmen](https://redirect.github.com/dolmen) in
[#&#8203;1767](https://redirect.github.com/stretchr/testify/pull/1767)
- assert.CallerInfo: micro cleanup by
[@&#8203;dolmen](https://redirect.github.com/dolmen) in
[#&#8203;1768](https://redirect.github.com/stretchr/testify/pull/1768)
- assert: refactor Test*FileExists and Test*DirExists tests to enable
parallel testing by [@&#8203;dolmen](https://redirect.github.com/dolmen)
in
[#&#8203;1766](https://redirect.github.com/stretchr/testify/pull/1766)
- suite.Run: refactor handling of stats for improved readability by
[@&#8203;dolmen](https://redirect.github.com/dolmen) in
[#&#8203;1764](https://redirect.github.com/stretchr/testify/pull/1764)
- tests: improve captureTestingT helper by
[@&#8203;ccoVeille](https://redirect.github.com/ccoVeille) in
[#&#8203;1741](https://redirect.github.com/stretchr/testify/pull/1741)
- build(deps): bump actions/checkout from 4 to 5 by
[@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in
[#&#8203;1778](https://redirect.github.com/stretchr/testify/pull/1778)

#### New Contributors

- [@&#8203;greg0ire](https://redirect.github.com/greg0ire) made their
first contribution in
[#&#8203;1710](https://redirect.github.com/stretchr/testify/pull/1710)
- [@&#8203;techfg](https://redirect.github.com/techfg) made their first
contribution in
[#&#8203;1709](https://redirect.github.com/stretchr/testify/pull/1709)
- [@&#8203;mikeauclair](https://redirect.github.com/mikeauclair) made
their first contribution in
[#&#8203;1614](https://redirect.github.com/stretchr/testify/pull/1614)
- [@&#8203;cszczepaniak](https://redirect.github.com/cszczepaniak) made
their first contribution in
[#&#8203;1427](https://redirect.github.com/stretchr/testify/pull/1427)
- [@&#8203;architagr](https://redirect.github.com/architagr) made their
first contribution in
[#&#8203;1675](https://redirect.github.com/stretchr/testify/pull/1675)
- [@&#8203;tsioftas](https://redirect.github.com/tsioftas) made their
first contribution in
[#&#8203;1681](https://redirect.github.com/stretchr/testify/pull/1681)
- [@&#8203;siliconbrain](https://redirect.github.com/siliconbrain) made
their first contribution in
[#&#8203;1729](https://redirect.github.com/stretchr/testify/pull/1729)
- [@&#8203;bartventer](https://redirect.github.com/bartventer) made
their first contribution in
[#&#8203;1730](https://redirect.github.com/stretchr/testify/pull/1730)
- [@&#8203;Ararsa-Derese](https://redirect.github.com/Ararsa-Derese)
made their first contribution in
[#&#8203;1706](https://redirect.github.com/stretchr/testify/pull/1706)
- [@&#8203;renzoarreaza](https://redirect.github.com/renzoarreaza) made
their first contribution in
[#&#8203;1769](https://redirect.github.com/stretchr/testify/pull/1769)
- [@&#8203;3scalation](https://redirect.github.com/3scalation) made
their first contribution in
[#&#8203;1743](https://redirect.github.com/stretchr/testify/pull/1743)

**Full Changelog**:
<https://github.com/stretchr/testify/compare/v1.10.0...v1.11.0>

</details>

<details>
<summary>grpc/grpc-go (google.golang.org/grpc)</summary>

###
[`v1.75.0`](https://redirect.github.com/grpc/grpc-go/releases/tag/v1.75.0):
Release 1.75.0

[Compare
Source](https://redirect.github.com/grpc/grpc-go/compare/v1.74.2...v1.75.0)

### Behavior Changes

- xds: Remove support for GRPC\_EXPERIMENTAL\_XDS\_FALLBACK environment
variable. Fallback support can no longer be disabled.
([#&#8203;8482](https://redirect.github.com/grpc/grpc-go/issues/8482))
- stats: Introduce `DelayedPickComplete` event, a type alias of
`PickerUpdated`.
([#&#8203;8465](https://redirect.github.com/grpc/grpc-go/issues/8465))
- This (combined) event will now be emitted only once per call, when a
transport is successfully selected for the attempt.
- OpenTelemetry metrics will no longer have multiple "Delayed LB pick
complete" events in Go, matching other gRPC languages.
  - A future release will delete the `PickerUpdated` symbol.
- credentials: Properly apply `grpc.WithAuthority` as the
highest-priority option for setting authority, above the setting in the
credentials themselves.
([#&#8203;8488](https://redirect.github.com/grpc/grpc-go/issues/8488))
- Now that this `WithAuthority` is available, the credentials should not
be used to override the authority.
- round\_robin: Randomize the order in which addresses are connected to
in order to spread out initial RPC load between clients.
([#&#8203;8438](https://redirect.github.com/grpc/grpc-go/issues/8438))
- server: Return status code INTERNAL when a client sends more than one
request in unary and server streaming RPC.
([#&#8203;8385](https://redirect.github.com/grpc/grpc-go/issues/8385))
- This is a behavior change but also a bug fix to bring gRPC-Go in line
with the gRPC spec.

### New Features

- dns: Add an environment variable (`GRPC_ENABLE_TXT_SERVICE_CONFIG`) to
provide a way to disable TXT lookups in the DNS resolver (by setting it
to `false`). By default, TXT lookups are enabled, as they were
previously.
([#&#8203;8377](https://redirect.github.com/grpc/grpc-go/issues/8377))

### Bug Fixes

- xds: Fix regression preventing empty node IDs in xDS bootstrap
configuration.
([#&#8203;8476](https://redirect.github.com/grpc/grpc-go/issues/8476))
- Special Thanks:
[@&#8203;davinci26](https://redirect.github.com/davinci26)
- xds: Fix possible panic when certain invalid resources are
encountered.
([#&#8203;8412](https://redirect.github.com/grpc/grpc-go/issues/8412))
- Special Thanks: [@&#8203;wooffie](https://redirect.github.com/wooffie)
- xdsclient: Fix a rare panic caused by processing a response from a
closed server.
([#&#8203;8389](https://redirect.github.com/grpc/grpc-go/issues/8389))
- stats: Fix metric unit formatting by enclosing non-standard units like
`call` and `endpoint` in curly braces to comply with UCUM and gRPC
OpenTelemetry guidelines.
([#&#8203;8481](https://redirect.github.com/grpc/grpc-go/issues/8481))
- xds: Fix possible panic when clusters are removed from the xds
configuration.
([#&#8203;8428](https://redirect.github.com/grpc/grpc-go/issues/8428))
- xdsclient: Fix a race causing "resource doesn not exist" when rapidly
subscribing and unsubscribing to the same resource.
([#&#8203;8369](https://redirect.github.com/grpc/grpc-go/issues/8369))
- client: When determining the authority, properly percent-encode (if
needed, which is unlikely) when the target string omits the hostname and
only specifies a port (`grpc.NewClient(":<port-number-or-name>")`).
([#&#8203;8488](https://redirect.github.com/grpc/grpc-go/issues/8488))

</details>

<details>
<summary>protocolbuffers/protobuf-go
(google.golang.org/protobuf)</summary>

###
[`v1.36.8`](https://redirect.github.com/protocolbuffers/protobuf-go/releases/tag/v1.36.8)

[Compare
Source](https://redirect.github.com/protocolbuffers/protobuf-go/compare/v1.36.7...v1.36.8)

Maintenance:

[CL/696316](https://go-review.googlesource.com/c/protobuf/+/696316):
all: set Go language version to Go 1.23
[CL/696315](https://go-review.googlesource.com/c/protobuf/+/696315):
types: regenerate using latest protobuf v32 release

</details>

<details>
<summary>helm/helm (helm.sh/helm/v3)</summary>

###
[`v3.18.6`](https://redirect.github.com/helm/helm/releases/tag/v3.18.6):
Helm v3.18.6

[Compare
Source](https://redirect.github.com/helm/helm/compare/v3.18.5...v3.18.6)

Helm v3.18.6 is a patch release. Users are encouraged to upgrade for the
best experience. Users are encouraged to upgrade for the best
experience.

The community keeps growing, and we'd love to see you there!

- Join the discussion in [Kubernetes
Slack](https://kubernetes.slack.com):
  - for questions and just to hang out
  - for discussing PRs, code, and bugs
- Hang out at the Public Developer Call: Thursday, 9:30 Pacific via
[Zoom](https://zoom.us/j/696660622)
- Test, debug, and contribute charts:
[ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0)

#### Installation and Upgrading

Download Helm v3.18.6. The common platform binaries are here:

- [MacOS amd64](https://get.helm.sh/helm-v3.18.6-darwin-amd64.tar.gz)
([checksum](https://get.helm.sh/helm-v3.18.6-darwin-amd64.tar.gz.sha256sum)
/ 80cad0470e38cf25731cdead7c32dfbeb887bc177bd6fa01e31b065722f8f06b)
- [MacOS arm64](https://get.helm.sh/helm-v3.18.6-darwin-arm64.tar.gz)
([checksum](https://get.helm.sh/helm-v3.18.6-darwin-arm64.tar.gz.sha256sum)
/ 48e30d236a1f334c6acb78501be5a851eaa2a267fefeb1131b6484eb2f9f30d7)
- [Linux amd64](https://get.helm.sh/helm-v3.18.6-linux-amd64.tar.gz)
([checksum](https://get.helm.sh/helm-v3.18.6-linux-amd64.tar.gz.sha256sum)
/ 3f43c0aa57243852dd542493a0f54f1396c0bc8ec7296bbb2c01e802010819ce)
- [Linux arm](https://get.helm.sh/helm-v3.18.6-linux-arm.tar.gz)
([checksum](https://get.helm.sh/helm-v3.18.6-linux-arm.tar.gz.sha256sum)
/ 13156fbe87a9db201b7d8fd0b42dee2a2e76a77388ea3bd59e3074cfa49d3619)
- [Linux arm64](https://get.helm.sh/helm-v3.18.6-linux-arm64.tar.gz)
([checksum](https://get.helm.sh/helm-v3.18.6-linux-arm64.tar.gz.sha256sum)
/ 5b8e00b6709caab466cbbb0bc29ee09059b8dc9417991dd04b497530e49b1737)
- [Linux i386](https://get.helm.sh/helm-v3.18.6-linux-386.tar.gz)
([checksum](https://get.helm.sh/helm-v3.18.6-linux-386.tar.gz.sha256sum)
/ d245db7c80edaf47bc42d3fab0b79d2e75d63fa49d06bc0ca599686ebdbd1422)
- [Linux ppc64le](https://get.helm.sh/helm-v3.18.6-linux-ppc64le.tar.gz)
([checksum](https://get.helm.sh/helm-v3.18.6-linux-ppc64le.tar.gz.sha256sum)
/ 61eac730dac2029d7acf1c53bd0b1056f78ca2c3f915da7fa3995e74c021eae8)
- [Linux s390x](https://get.helm.sh/helm-v3.18.6-linux-s390x.tar.gz)
([checksum](https://get.helm.sh/helm-v3.18.6-linux-s390x.tar.gz.sha256sum)
/ c6435c220b2577abea11ee9281fda8a5164583fb1f502702f6ef5c2b4347e38f)
- [Linux riscv64](https://get.helm.sh/helm-v3.18.6-linux-riscv64.tar.gz)
([checksum](https://get.helm.sh/helm-v3.18.6-linux-riscv64.tar.gz.sha256sum)
/ cea696b01b66fad76b24d9ef28a86802b0931cbc25cec687e8469589438995eb)
- [Windows amd64](https://get.helm.sh/helm-v3.18.6-windows-amd64.zip)
([checksum](https://get.helm.sh/helm-v3.18.6-windows-amd64.zip.sha256sum)
/ 4263320a8d70df0bb1e245534fba1b541f9889005cdb68dec9798b197c3f66b0)
- [Windows arm64](https://get.helm.sh/helm-v3.18.6-windows-arm64.zip)
([checksum](https://get.helm.sh/helm-v3.18.6-windows-arm64.zip.sha256sum)
/ fdff469f270d8a155d9289843b92f7b00b2ca353b8ec61532e920eeb3fc2b480)

This release was signed with `672C 657B E06B 4B30 969C 4A57 4614 49C2
5E36 B98E ` and can be found at
[@&#8203;mattfarina](https://redirect.github.com/mattfarina) [keybase
account](https://keybase.io/mattfarina). Please use the attached
signatures for verifying this release using `gpg`.

The [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get
you going from there. For **upgrade instructions** or detailed
installation notes, check the [install
guide](https://helm.sh/docs/intro/install/). You can also use a [script
to
install](https://github.com/helm/helm/main/scripts/get-helm-3)
on any system with `bash`.

#### What's Next

- 3.19.0 is the next minor release and will be on September 11, 2025

#### Changelog

- fix(helm-lint): fmt
[`b76a950`](https://redirect.github.com/helm/helm/commit/b76a950f6835474e0906b96c9ec68a2eff3a6430)
(Isaiah Lewis)
- fix(helm-lint): Add TLSClientConfig
[`b79a421`](https://redirect.github.com/helm/helm/commit/b79a4212e803ad50c66f06799b8bbdb51f918603)
(Isaiah Lewis)
- fix(helm-lint): Add HTTP/HTTPS URL support for json schema references
[`b9180e6`](https://redirect.github.com/helm/helm/commit/b9180e674fccb57e6ea6934ed7deb4448a3c9ddb)
(Isaiah Lewis)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - Between 12:00 AM and 03:59 AM, only on
Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule
defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **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 was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/cerbos/cerbos).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi43IiwidXBkYXRlZEluVmVyIjoiNDEuODIuNyIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiYXJlYS9kZXBlbmRlbmNpZXMiLCJib3RzIiwia2luZC9jaG9yZSJdfQ==-->

---------

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: Charith Ellawala <[email protected]>
Signed-off-by: Oğuzhan Durgun <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Charith Ellawala <[email protected]>
Co-authored-by: Oğuzhan Durgun <[email protected]>
haines added a commit to cerbos/cerbos that referenced this pull request Sep 2, 2025
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence | Type |
Update |
|---|---|---|---|---|---|---|---|
| buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go |
`v1.36.6-20250625184727-c923a0c2a132.1` ->
`v1.36.8-20250717185734-6c6e0d3c608e.1` |
[![age](https://developer.mend.io/api/mc/badges/age/go/buf.build%2fgen%2fgo%2fbufbuild%2fprotovalidate%2fprotocolbuffers%2fgo/v1.36.8-20250717185734-6c6e0d3c608e.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/buf.build%2fgen%2fgo%2fbufbuild%2fprotovalidate%2fprotocolbuffers%2fgo/v1.36.8-20250717185734-6c6e0d3c608e.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/buf.build%2fgen%2fgo%2fbufbuild%2fprotovalidate%2fprotocolbuffers%2fgo/v1.36.6-20250625184727-c923a0c2a132.1/v1.36.8-20250717185734-6c6e0d3c608e.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/buf.build%2fgen%2fgo%2fbufbuild%2fprotovalidate%2fprotocolbuffers%2fgo/v1.36.6-20250625184727-c923a0c2a132.1/v1.36.8-20250717185734-6c6e0d3c608e.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | patch |
|
[buf.build/go/protovalidate](https://redirect.github.com/bufbuild/protovalidate-go)
| `v0.13.1` -> `v0.14.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/buf.build%2fgo%2fprotovalidate/v0.14.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/buf.build%2fgo%2fprotovalidate/v0.14.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/buf.build%2fgo%2fprotovalidate/v0.13.1/v0.14.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/buf.build%2fgo%2fprotovalidate/v0.13.1/v0.14.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
|
[github.com/aws/aws-sdk-go-v2](https://redirect.github.com/aws/aws-sdk-go-v2)
| `v1.38.1` -> `v1.38.3` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2/v1.38.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go-v2/v1.38.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go-v2/v1.38.1/v1.38.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2/v1.38.1/v1.38.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | patch |
|
[github.com/aws/aws-sdk-go-v2/config](https://redirect.github.com/aws/aws-sdk-go-v2)
| `v1.31.2` -> `v1.31.6` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.31.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.31.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.31.2/v1.31.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.31.2/v1.31.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | patch |
|
[github.com/aws/aws-sdk-go-v2/service/marketplacemetering](https://redirect.github.com/aws/aws-sdk-go-v2)
| `v1.33.1` -> `v1.33.3` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fmarketplacemetering/v1.33.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fmarketplacemetering/v1.33.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fmarketplacemetering/v1.33.1/v1.33.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fmarketplacemetering/v1.33.1/v1.33.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | patch |
|
[github.com/aws/aws-sdk-go-v2/service/s3](https://redirect.github.com/aws/aws-sdk-go-v2)
| `v1.87.1` -> `v1.87.3` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fs3/v1.87.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fs3/v1.87.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fs3/v1.87.1/v1.87.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fs3/v1.87.1/v1.87.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | patch |
| [github.com/aws/smithy-go](https://redirect.github.com/aws/smithy-go)
| `v1.22.5` -> `v1.23.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2fsmithy-go/v1.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2fsmithy-go/v1.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2fsmithy-go/v1.22.5/v1.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2fsmithy-go/v1.22.5/v1.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
| [github.com/bufbuild/buf](https://redirect.github.com/bufbuild/buf) |
`v1.55.1` -> `v1.57.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fbufbuild%2fbuf/v1.57.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fbufbuild%2fbuf/v1.57.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fbufbuild%2fbuf/v1.55.1/v1.57.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fbufbuild%2fbuf/v1.55.1/v1.57.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
|
[github.com/cerbos/cerbos-sdk-go](https://redirect.github.com/cerbos/cerbos-sdk-go)
| `v0.3.8` -> `v0.3.9` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fcerbos%2fcerbos-sdk-go/v0.3.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fcerbos%2fcerbos-sdk-go/v0.3.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fcerbos%2fcerbos-sdk-go/v0.3.8/v0.3.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fcerbos%2fcerbos-sdk-go/v0.3.8/v0.3.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | patch |
|
[github.com/cerbos/cloud-api](https://redirect.github.com/cerbos/cloud-api)
| `v0.1.55` -> `v0.1.56` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fcerbos%2fcloud-api/v0.1.56?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fcerbos%2fcloud-api/v0.1.56?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fcerbos%2fcloud-api/v0.1.55/v0.1.56?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fcerbos%2fcloud-api/v0.1.55/v0.1.56?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | patch |
|
[github.com/cerbos/protoc-gen-jsonschema](https://redirect.github.com/cerbos/protoc-gen-jsonschema)
| `v0.1.6` -> `v0.1.7` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fcerbos%2fprotoc-gen-jsonschema/v0.1.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fcerbos%2fprotoc-gen-jsonschema/v0.1.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fcerbos%2fprotoc-gen-jsonschema/v0.1.6/v0.1.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fcerbos%2fprotoc-gen-jsonschema/v0.1.6/v0.1.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | patch |
|
[github.com/golang-migrate/migrate/v4](https://redirect.github.com/golang-migrate/migrate)
| `v4.18.3` -> `v4.19.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgolang-migrate%2fmigrate%2fv4/v4.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fgolang-migrate%2fmigrate%2fv4/v4.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fgolang-migrate%2fmigrate%2fv4/v4.18.3/v4.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgolang-migrate%2fmigrate%2fv4/v4.18.3/v4.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
| [github.com/google/cel-go](https://redirect.github.com/google/cel-go)
| `v0.26.0` -> `v0.26.1` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgoogle%2fcel-go/v0.26.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fgoogle%2fcel-go/v0.26.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fgoogle%2fcel-go/v0.26.0/v0.26.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgoogle%2fcel-go/v0.26.0/v0.26.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | patch |
|
[github.com/goreleaser/goreleaser/v2](https://redirect.github.com/goreleaser/goreleaser)
| `v2.11.0` -> `v2.11.2` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgoreleaser%2fgoreleaser%2fv2/v2.11.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fgoreleaser%2fgoreleaser%2fv2/v2.11.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fgoreleaser%2fgoreleaser%2fv2/v2.11.0/v2.11.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgoreleaser%2fgoreleaser%2fv2/v2.11.0/v2.11.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | patch |
| [github.com/rivo/tview](https://redirect.github.com/rivo/tview) |
`v0.0.0-20250625164341-a4a78f1e05cb` -> `v0.42.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2frivo%2ftview/v0.42.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2frivo%2ftview/v0.42.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2frivo%2ftview/v0.0.0-20250625164341-a4a78f1e05cb/v0.42.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2frivo%2ftview/v0.0.0-20250625164341-a4a78f1e05cb/v0.42.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
|
[github.com/stretchr/testify](https://redirect.github.com/stretchr/testify)
| `v1.10.0` -> `v1.11.1` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fstretchr%2ftestify/v1.11.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fstretchr%2ftestify/v1.11.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fstretchr%2ftestify/v1.10.0/v1.11.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fstretchr%2ftestify/v1.10.0/v1.11.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
|
[github.com/vektra/mockery/v3](https://redirect.github.com/vektra/mockery)
| `v3.5.3` -> `v3.5.4` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fvektra%2fmockery%2fv3/v3.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fvektra%2fmockery%2fv3/v3.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fvektra%2fmockery%2fv3/v3.5.3/v3.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fvektra%2fmockery%2fv3/v3.5.3/v3.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | patch |
|
[go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc](https://redirect.github.com/open-telemetry/opentelemetry-go-contrib)
| `v0.62.0` -> `v0.63.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/go.opentelemetry.io%2fcontrib%2finstrumentation%2fgoogle.golang.org%2fgrpc%2fotelgrpc/v0.63.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/go.opentelemetry.io%2fcontrib%2finstrumentation%2fgoogle.golang.org%2fgrpc%2fotelgrpc/v0.63.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/go.opentelemetry.io%2fcontrib%2finstrumentation%2fgoogle.golang.org%2fgrpc%2fotelgrpc/v0.62.0/v0.63.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/go.opentelemetry.io%2fcontrib%2finstrumentation%2fgoogle.golang.org%2fgrpc%2fotelgrpc/v0.62.0/v0.63.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
|
[go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp](https://redirect.github.com/open-telemetry/opentelemetry-go-contrib)
| `v0.62.0` -> `v0.63.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/go.opentelemetry.io%2fcontrib%2finstrumentation%2fnet%2fhttp%2fotelhttp/v0.63.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/go.opentelemetry.io%2fcontrib%2finstrumentation%2fnet%2fhttp%2fotelhttp/v0.63.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/go.opentelemetry.io%2fcontrib%2finstrumentation%2fnet%2fhttp%2fotelhttp/v0.62.0/v0.63.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/go.opentelemetry.io%2fcontrib%2finstrumentation%2fnet%2fhttp%2fotelhttp/v0.62.0/v0.63.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
|
[go.opentelemetry.io/contrib/instrumentation/runtime](https://redirect.github.com/open-telemetry/opentelemetry-go-contrib)
| `v0.62.0` -> `v0.63.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/go.opentelemetry.io%2fcontrib%2finstrumentation%2fruntime/v0.63.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/go.opentelemetry.io%2fcontrib%2finstrumentation%2fruntime/v0.63.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/go.opentelemetry.io%2fcontrib%2finstrumentation%2fruntime/v0.62.0/v0.63.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/go.opentelemetry.io%2fcontrib%2finstrumentation%2fruntime/v0.62.0/v0.63.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
|
[go.opentelemetry.io/contrib/propagators/autoprop](https://redirect.github.com/open-telemetry/opentelemetry-go-contrib)
| `v0.62.0` -> `v0.63.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/go.opentelemetry.io%2fcontrib%2fpropagators%2fautoprop/v0.63.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/go.opentelemetry.io%2fcontrib%2fpropagators%2fautoprop/v0.63.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/go.opentelemetry.io%2fcontrib%2fpropagators%2fautoprop/v0.62.0/v0.63.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/go.opentelemetry.io%2fcontrib%2fpropagators%2fautoprop/v0.62.0/v0.63.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
|
[go.opentelemetry.io/contrib/propagators/b3](https://redirect.github.com/open-telemetry/opentelemetry-go-contrib)
| `v1.37.0` -> `v1.38.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/go.opentelemetry.io%2fcontrib%2fpropagators%2fb3/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/go.opentelemetry.io%2fcontrib%2fpropagators%2fb3/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/go.opentelemetry.io%2fcontrib%2fpropagators%2fb3/v1.37.0/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/go.opentelemetry.io%2fcontrib%2fpropagators%2fb3/v1.37.0/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
|
[go.opentelemetry.io/otel](https://redirect.github.com/open-telemetry/opentelemetry-go)
| `v1.37.0` -> `v1.38.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/go.opentelemetry.io%2fotel/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/go.opentelemetry.io%2fotel/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/go.opentelemetry.io%2fotel/v1.37.0/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/go.opentelemetry.io%2fotel/v1.37.0/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
|
[go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc](https://redirect.github.com/open-telemetry/opentelemetry-go)
| `v1.37.0` -> `v1.38.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/go.opentelemetry.io%2fotel%2fexporters%2fotlp%2fotlpmetric%2fotlpmetricgrpc/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/go.opentelemetry.io%2fotel%2fexporters%2fotlp%2fotlpmetric%2fotlpmetricgrpc/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/go.opentelemetry.io%2fotel%2fexporters%2fotlp%2fotlpmetric%2fotlpmetricgrpc/v1.37.0/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/go.opentelemetry.io%2fotel%2fexporters%2fotlp%2fotlpmetric%2fotlpmetricgrpc/v1.37.0/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
|
[go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp](https://redirect.github.com/open-telemetry/opentelemetry-go)
| `v1.37.0` -> `v1.38.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/go.opentelemetry.io%2fotel%2fexporters%2fotlp%2fotlpmetric%2fotlpmetrichttp/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/go.opentelemetry.io%2fotel%2fexporters%2fotlp%2fotlpmetric%2fotlpmetrichttp/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/go.opentelemetry.io%2fotel%2fexporters%2fotlp%2fotlpmetric%2fotlpmetrichttp/v1.37.0/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/go.opentelemetry.io%2fotel%2fexporters%2fotlp%2fotlpmetric%2fotlpmetrichttp/v1.37.0/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
|
[go.opentelemetry.io/otel/exporters/otlp/otlptrace](https://redirect.github.com/open-telemetry/opentelemetry-go)
| `v1.37.0` -> `v1.38.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/go.opentelemetry.io%2fotel%2fexporters%2fotlp%2fotlptrace/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/go.opentelemetry.io%2fotel%2fexporters%2fotlp%2fotlptrace/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/go.opentelemetry.io%2fotel%2fexporters%2fotlp%2fotlptrace/v1.37.0/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/go.opentelemetry.io%2fotel%2fexporters%2fotlp%2fotlptrace/v1.37.0/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
|
[go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc](https://redirect.github.com/open-telemetry/opentelemetry-go)
| `v1.37.0` -> `v1.38.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/go.opentelemetry.io%2fotel%2fexporters%2fotlp%2fotlptrace%2fotlptracegrpc/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/go.opentelemetry.io%2fotel%2fexporters%2fotlp%2fotlptrace%2fotlptracegrpc/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/go.opentelemetry.io%2fotel%2fexporters%2fotlp%2fotlptrace%2fotlptracegrpc/v1.37.0/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/go.opentelemetry.io%2fotel%2fexporters%2fotlp%2fotlptrace%2fotlptracegrpc/v1.37.0/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
|
[go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp](https://redirect.github.com/open-telemetry/opentelemetry-go)
| `v1.37.0` -> `v1.38.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/go.opentelemetry.io%2fotel%2fexporters%2fotlp%2fotlptrace%2fotlptracehttp/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/go.opentelemetry.io%2fotel%2fexporters%2fotlp%2fotlptrace%2fotlptracehttp/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/go.opentelemetry.io%2fotel%2fexporters%2fotlp%2fotlptrace%2fotlptracehttp/v1.37.0/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/go.opentelemetry.io%2fotel%2fexporters%2fotlp%2fotlptrace%2fotlptracehttp/v1.37.0/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
|
[go.opentelemetry.io/otel/exporters/prometheus](https://redirect.github.com/open-telemetry/opentelemetry-go)
| `v0.59.1` -> `v0.60.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/go.opentelemetry.io%2fotel%2fexporters%2fprometheus/v0.60.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/go.opentelemetry.io%2fotel%2fexporters%2fprometheus/v0.60.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/go.opentelemetry.io%2fotel%2fexporters%2fprometheus/v0.59.1/v0.60.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/go.opentelemetry.io%2fotel%2fexporters%2fprometheus/v0.59.1/v0.60.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
|
[go.opentelemetry.io/otel/metric](https://redirect.github.com/open-telemetry/opentelemetry-go)
| `v1.37.0` -> `v1.38.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/go.opentelemetry.io%2fotel%2fmetric/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/go.opentelemetry.io%2fotel%2fmetric/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/go.opentelemetry.io%2fotel%2fmetric/v1.37.0/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/go.opentelemetry.io%2fotel%2fmetric/v1.37.0/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
|
[go.opentelemetry.io/otel/sdk](https://redirect.github.com/open-telemetry/opentelemetry-go)
| `v1.37.0` -> `v1.38.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/go.opentelemetry.io%2fotel%2fsdk/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/go.opentelemetry.io%2fotel%2fsdk/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/go.opentelemetry.io%2fotel%2fsdk/v1.37.0/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/go.opentelemetry.io%2fotel%2fsdk/v1.37.0/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
|
[go.opentelemetry.io/otel/sdk/metric](https://redirect.github.com/open-telemetry/opentelemetry-go)
| `v1.37.0` -> `v1.38.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/go.opentelemetry.io%2fotel%2fsdk%2fmetric/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/go.opentelemetry.io%2fotel%2fsdk%2fmetric/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/go.opentelemetry.io%2fotel%2fsdk%2fmetric/v1.37.0/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/go.opentelemetry.io%2fotel%2fsdk%2fmetric/v1.37.0/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
|
[go.opentelemetry.io/otel/trace](https://redirect.github.com/open-telemetry/opentelemetry-go)
| `v1.37.0` -> `v1.38.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/go.opentelemetry.io%2fotel%2ftrace/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/go.opentelemetry.io%2fotel%2ftrace/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/go.opentelemetry.io%2fotel%2ftrace/v1.37.0/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/go.opentelemetry.io%2fotel%2ftrace/v1.37.0/v1.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
|
[google.golang.org/genproto/googleapis/api](https://redirect.github.com/googleapis/go-genproto)
| `3122310` -> `ef028d9` |
[![age](https://developer.mend.io/api/mc/badges/age/go/google.golang.org%2fgenproto%2fgoogleapis%2fapi/v0.0.0-20250826171959-ef028d996bc1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/google.golang.org%2fgenproto%2fgoogleapis%2fapi/v0.0.0-20250826171959-ef028d996bc1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/google.golang.org%2fgenproto%2fgoogleapis%2fapi/v0.0.0-20250818200422-3122310a409c/v0.0.0-20250826171959-ef028d996bc1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/google.golang.org%2fgenproto%2fgoogleapis%2fapi/v0.0.0-20250818200422-3122310a409c/v0.0.0-20250826171959-ef028d996bc1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | digest |

---

### Release Notes

<details>
<summary>bufbuild/protovalidate-go
(buf.build/go/protovalidate)</summary>

###
[`v0.14.0`](https://redirect.github.com/bufbuild/protovalidate-go/releases/tag/v0.14.0)

[Compare
Source](https://redirect.github.com/bufbuild/protovalidate-go/compare/v0.13.1...v0.14.0)

This release is compatible with the
[v0.14.0](https://redirect.github.com/bufbuild/protovalidate/releases/tag/v0.14.0)
release of Protovalidate.

#### Breaking changes

We want validation rules to be easy to understand for authors and
consumers. To simplify Protovalidate, we are renaming an option and
remove two others. This is a breaking change, and you will have to
update your Protobuf files if they use the relevant options :

- `IGNORE_IF_UNPOPULATED` is renamed to `IGNORE_IF_ZERO_VALUE`.
See
[bufbuild/protovalidate#397](https://redirect.github.com/bufbuild/protovalidate/pull/397)
for details.
- `(buf.validate.message).disabled` is removed.
You can replace it by adding `IGNORE_ALWAYS` to every field of the
message. See
[bufbuild/protovalidate#394](https://redirect.github.com/bufbuild/protovalidate/pull/394)
for details.
- `IGNORE_IF_DEFAULT_VALUE` is removed.
In most cases, you can replace it with `IGNORE_IF_ZERO_VALUE`. See
[bufbuild/protovalidate#396](https://redirect.github.com/bufbuild/protovalidate/pull/396)
for details.

**Full Changelog**:
<https://github.com/bufbuild/protovalidate-go/compare/v0.13.1...v0.14.0>

</details>

<details>
<summary>aws/aws-sdk-go-v2 (github.com/aws/aws-sdk-go-v2)</summary>

###
[`v1.38.3`](https://redirect.github.com/aws/aws-sdk-go-v2/blob/HEAD/CHANGELOG.md#Release-2024-11-07)

[Compare
Source](https://redirect.github.com/aws/aws-sdk-go-v2/compare/v1.38.2...v1.38.3)

#### General Highlights

- **Dependency Update**: Updated to the latest SDK module versions

#### Module Highlights

- `github.com/aws/aws-sdk-go-v2/service/accessanalyzer`:
[v1.34.5](service/accessanalyzer/CHANGELOG.md#v1345-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/account`:
[v1.21.5](service/account/CHANGELOG.md#v1215-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/acm`:
[v1.30.5](service/acm/CHANGELOG.md#v1305-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/acmpca`:
[v1.37.6](service/acmpca/CHANGELOG.md#v1376-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/amp`:
[v1.30.2](service/amp/CHANGELOG.md#v1302-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/amplify`:
[v1.27.3](service/amplify/CHANGELOG.md#v1273-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/amplifybackend`:
[v1.27.5](service/amplifybackend/CHANGELOG.md#v1275-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/amplifyuibuilder`:
[v1.23.5](service/amplifyuibuilder/CHANGELOG.md#v1235-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/apigateway`:
[v1.27.5](service/apigateway/CHANGELOG.md#v1275-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/apigatewaymanagementapi`:
[v1.23.5](service/apigatewaymanagementapi/CHANGELOG.md#v1235-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/apigatewayv2`:
[v1.24.5](service/apigatewayv2/CHANGELOG.md#v1245-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/appconfig`:
[v1.35.3](service/appconfig/CHANGELOG.md#v1353-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/appconfigdata`:
[v1.18.5](service/appconfigdata/CHANGELOG.md#v1185-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/appfabric`:
[v1.11.5](service/appfabric/CHANGELOG.md#v1115-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/appflow`:
[v1.45.6](service/appflow/CHANGELOG.md#v1456-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/appintegrations`:
[v1.30.5](service/appintegrations/CHANGELOG.md#v1305-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/applicationautoscaling`:
[v1.33.5](service/applicationautoscaling/CHANGELOG.md#v1335-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/applicationcostprofiler`:
[v1.21.5](service/applicationcostprofiler/CHANGELOG.md#v1215-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/applicationdiscoveryservice`:
[v1.28.5](service/applicationdiscoveryservice/CHANGELOG.md#v1285-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/applicationinsights`:
[v1.29.3](service/applicationinsights/CHANGELOG.md#v1293-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/applicationsignals`:
[v1.6.5](service/applicationsignals/CHANGELOG.md#v165-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/appmesh`:
[v1.29.5](service/appmesh/CHANGELOG.md#v1295-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/apprunner`:
[v1.32.5](service/apprunner/CHANGELOG.md#v1325-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/appstream`:
[v1.41.5](service/appstream/CHANGELOG.md#v1415-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/appsync`:
[v1.39.2](service/appsync/CHANGELOG.md#v1392-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/apptest`:
[v1.4.5](service/apptest/CHANGELOG.md#v145-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/arczonalshift`:
[v1.14.5](service/arczonalshift/CHANGELOG.md#v1145-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/artifact`:
[v1.6.5](service/artifact/CHANGELOG.md#v165-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/athena`:
[v1.48.3](service/athena/CHANGELOG.md#v1483-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/auditmanager`:
[v1.37.5](service/auditmanager/CHANGELOG.md#v1375-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/autoscaling`:
[v1.48.0](service/autoscaling/CHANGELOG.md#v1480-2024-11-07)
- **Feature**: Auto Scaling groups now support the ability to strictly
balance instances across Availability Zones by configuring the
AvailabilityZoneDistribution parameter. If balanced-only is configured
for a group, launches will always be attempted in the under scaled
Availability Zone even if it is unhealthy.
- `github.com/aws/aws-sdk-go-v2/service/autoscalingplans`:
[v1.24.5](service/autoscalingplans/CHANGELOG.md#v1245-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/b2bi`:
[v1.0.0-preview.51](service/b2bi/CHANGELOG.md#v100-preview51-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/backup`:
[v1.39.6](service/backup/CHANGELOG.md#v1396-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/backupgateway`:
[v1.20.5](service/backupgateway/CHANGELOG.md#v1205-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/batch`:
[v1.47.2](service/batch/CHANGELOG.md#v1472-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/bcmdataexports`:
[v1.7.5](service/bcmdataexports/CHANGELOG.md#v175-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/bedrock`:
[v1.22.2](service/bedrock/CHANGELOG.md#v1222-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/bedrockagent`:
[v1.27.0](service/bedrockagent/CHANGELOG.md#v1270-2024-11-07)
- **Feature**: Add prompt support for chat template configuration and
agent generative AI resource. Add support for configuring an optional
guardrail in Prompt and Knowledge Base nodes in Prompt Flows. Add API to
validate flow definition
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/bedrockagentruntime`:
[v1.23.3](service/bedrockagentruntime/CHANGELOG.md#v1233-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/bedrockruntime`:
[v1.20.0](service/bedrockruntime/CHANGELOG.md#v1200-2024-11-07)
- **Feature**: Add Prompt management support to Bedrock runtime APIs:
Converse, ConverseStream, InvokeModel, InvokeModelWithStreamingResponse
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/billingconductor`:
[v1.20.5](service/billingconductor/CHANGELOG.md#v1205-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/braket`:
[v1.31.5](service/braket/CHANGELOG.md#v1315-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/budgets`:
[v1.28.5](service/budgets/CHANGELOG.md#v1285-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/chatbot`:
[v1.8.5](service/chatbot/CHANGELOG.md#v185-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/chime`:
[v1.34.5](service/chime/CHANGELOG.md#v1345-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/chimesdkidentity`:
[v1.22.5](service/chimesdkidentity/CHANGELOG.md#v1225-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/chimesdkmediapipelines`:
[v1.20.5](service/chimesdkmediapipelines/CHANGELOG.md#v1205-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/chimesdkmeetings`:
[v1.27.5](service/chimesdkmeetings/CHANGELOG.md#v1275-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/chimesdkmessaging`:
[v1.26.5](service/chimesdkmessaging/CHANGELOG.md#v1265-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/chimesdkvoice`:
[v1.19.5](service/chimesdkvoice/CHANGELOG.md#v1195-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/cleanrooms`:
[v1.20.0](service/cleanrooms/CHANGELOG.md#v1200-2024-11-07)
- **Feature**: This release introduces support for Custom Models in AWS
Clean Rooms ML.
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/cleanroomsml`:
[v1.10.0](service/cleanroomsml/CHANGELOG.md#v1100-2024-11-07)
- **Feature**: This release introduces support for Custom Models in AWS
Clean Rooms ML.
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/cloud9`:
[v1.28.5](service/cloud9/CHANGELOG.md#v1285-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/cloudcontrol`:
[v1.22.5](service/cloudcontrol/CHANGELOG.md#v1225-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/clouddirectory`:
[v1.24.5](service/clouddirectory/CHANGELOG.md#v1245-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/cloudfrontkeyvaluestore`:
[v1.8.5](service/cloudfrontkeyvaluestore/CHANGELOG.md#v185-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/cloudhsm`:
[v1.24.5](service/cloudhsm/CHANGELOG.md#v1245-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/cloudhsmv2`:
[v1.27.6](service/cloudhsmv2/CHANGELOG.md#v1276-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/cloudsearchdomain`:
[v1.23.5](service/cloudsearchdomain/CHANGELOG.md#v1235-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/cloudtrail`:
[v1.44.5](service/cloudtrail/CHANGELOG.md#v1445-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/cloudtraildata`:
[v1.11.5](service/cloudtraildata/CHANGELOG.md#v1115-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/cloudwatchevents`:
[v1.27.5](service/cloudwatchevents/CHANGELOG.md#v1275-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs`:
[v1.43.2](service/cloudwatchlogs/CHANGELOG.md#v1432-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/codeartifact`:
[v1.33.5](service/codeartifact/CHANGELOG.md#v1335-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/codebuild`:
[v1.48.1](service/codebuild/CHANGELOG.md#v1481-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/codecatalyst`:
[v1.17.5](service/codecatalyst/CHANGELOG.md#v1175-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/codecommit`:
[v1.27.5](service/codecommit/CHANGELOG.md#v1275-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/codeconnections`:
[v1.5.5](service/codeconnections/CHANGELOG.md#v155-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/codedeploy`:
[v1.29.5](service/codedeploy/CHANGELOG.md#v1295-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/codeguruprofiler`:
[v1.24.5](service/codeguruprofiler/CHANGELOG.md#v1245-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/codegurureviewer`:
[v1.29.5](service/codegurureviewer/CHANGELOG.md#v1295-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/codegurusecurity`:
[v1.12.5](service/codegurusecurity/CHANGELOG.md#v1125-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/codepipeline`:
[v1.36.3](service/codepipeline/CHANGELOG.md#v1363-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/codestarconnections`:
[v1.29.5](service/codestarconnections/CHANGELOG.md#v1295-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/codestarnotifications`:
[v1.26.5](service/codestarnotifications/CHANGELOG.md#v1265-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/cognitoidentity`:
[v1.27.5](service/cognitoidentity/CHANGELOG.md#v1275-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/cognitoidentityprovider`:
[v1.46.5](service/cognitoidentityprovider/CHANGELOG.md#v1465-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/cognitosync`:
[v1.23.5](service/cognitosync/CHANGELOG.md#v1235-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/comprehend`:
[v1.35.5](service/comprehend/CHANGELOG.md#v1355-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/comprehendmedical`:
[v1.26.5](service/comprehendmedical/CHANGELOG.md#v1265-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/computeoptimizer`:
[v1.39.5](service/computeoptimizer/CHANGELOG.md#v1395-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/configservice`:
[v1.50.5](service/configservice/CHANGELOG.md#v1505-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/connect`:
[v1.115.2](service/connect/CHANGELOG.md#v11152-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/connectcampaigns`:
[v1.15.5](service/connectcampaigns/CHANGELOG.md#v1155-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/connectcases`:
[v1.21.5](service/connectcases/CHANGELOG.md#v1215-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/connectcontactlens`:
[v1.26.5](service/connectcontactlens/CHANGELOG.md#v1265-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/connectparticipant`:
[v1.27.5](service/connectparticipant/CHANGELOG.md#v1275-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/controlcatalog`:
[v1.5.5](service/controlcatalog/CHANGELOG.md#v155-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/controltower`:
[v1.18.6](service/controltower/CHANGELOG.md#v1186-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/costandusagereportservice`:
[v1.28.5](service/costandusagereportservice/CHANGELOG.md#v1285-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/costexplorer`:
[v1.43.5](service/costexplorer/CHANGELOG.md#v1435-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/costoptimizationhub`:
[v1.10.5](service/costoptimizationhub/CHANGELOG.md#v1105-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/customerprofiles`:
[v1.42.5](service/customerprofiles/CHANGELOG.md#v1425-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/databasemigrationservice`:
[v1.44.3](service/databasemigrationservice/CHANGELOG.md#v1443-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/databrew`:
[v1.33.5](service/databrew/CHANGELOG.md#v1335-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/dataexchange`:
[v1.33.3](service/dataexchange/CHANGELOG.md#v1333-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/datapipeline`:
[v1.25.5](service/datapipeline/CHANGELOG.md#v1255-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/datasync`:
[v1.43.2](service/datasync/CHANGELOG.md#v1432-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/datazone`:
[v1.23.3](service/datazone/CHANGELOG.md#v1233-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/dax`:
[v1.23.5](service/dax/CHANGELOG.md#v1235-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/deadline`:
[v1.6.4](service/deadline/CHANGELOG.md#v164-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/detective`:
[v1.31.5](service/detective/CHANGELOG.md#v1315-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/devicefarm`:
[v1.28.5](service/devicefarm/CHANGELOG.md#v1285-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/devopsguru`:
[v1.34.5](service/devopsguru/CHANGELOG.md#v1345-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/directconnect`:
[v1.29.5](service/directconnect/CHANGELOG.md#v1295-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/directoryservice`:
[v1.30.5](service/directoryservice/CHANGELOG.md#v1305-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/directoryservicedata`:
[v1.2.5](service/directoryservicedata/CHANGELOG.md#v125-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/dlm`:
[v1.28.5](service/dlm/CHANGELOG.md#v1285-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/docdbelastic`:
[v1.14.2](service/docdbelastic/CHANGELOG.md#v1142-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/drs`:
[v1.30.5](service/drs/CHANGELOG.md#v1305-2024-11-07)
- **Bug Fix**: Adds case-insensitive handling of error message fields in
service responses
- `github.com/aws/aws-sdk-go-v2/service/dynamodb`:
[v1.36.5](service/dynamodb/CHANGELOG.md#v1365-2024-11-07)
  - **Bug Fix**: Adds case-insensitive handling of 

</details>

---

### Configuration

📅 **Schedule**: Branch creation - Between 12:00 AM and 03:59 AM, only on
Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule
defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **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 was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/cerbos/cerbos).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS45MS4xIiwidXBkYXRlZEluVmVyIjoiNDEuOTEuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiYXJlYS9kZXBlbmRlbmNpZXMiLCJib3RzIiwia2luZC9jaG9yZSJdfQ==-->

---------

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: Andrew Haines <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Andrew Haines <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants