Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 8, 2025

Bumps the external group with 17 updates in the /service directory:

Package From To
buf.build/go/protovalidate 0.13.1 0.14.0
github.com/casbin/casbin/v2 2.108.0 2.122.0
github.com/docker/docker 28.3.3+incompatible 28.4.0+incompatible
github.com/docker/go-connections 0.5.0 0.6.0
github.com/eko/gocache/lib/v4 4.2.0 4.2.1
github.com/eko/gocache/store/ristretto/v4 4.2.2 4.3.1
github.com/go-chi/cors 1.2.1 1.2.2
github.com/go-playground/validator/v10 10.26.0 10.27.0
github.com/grpc-ecosystem/grpc-gateway/v2 2.27.0 2.27.2
github.com/jackc/pgx/v5 5.7.5 5.7.6
github.com/mattn/go-sqlite3 1.14.29 1.14.32
github.com/open-policy-agent/opa 1.5.1 1.8.0
github.com/pressly/goose/v3 3.24.3 3.25.0
github.com/spf13/cobra 1.9.1 1.10.1
github.com/spf13/viper 1.20.1 1.21.0
github.com/testcontainers/testcontainers-go 0.37.0 0.38.0
go.opentelemetry.io/otel/exporters/stdout/stdouttrace 1.36.0 1.38.0

Updates buf.build/go/protovalidate from 0.13.1 to 0.14.0

Release notes

Sourced from buf.build/go/protovalidate's releases.

v0.14.0

This release is compatible with the 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.

Full Changelog: bufbuild/protovalidate-go@v0.13.1...v0.14.0

Commits
  • 80cf168 Update protovalidate (#268)
  • fd668f0 Bump buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go from 1.36.6-2...
  • 455a8cb Update README to be consistent with core Protovalidate repo (#265)
  • 174bfe6 Update copyright years (#264)
  • 4bb452b Add test for pre-warming with compilation error (#263)
  • d2edffe Delete unused github-tag-action/entrypoint.sh (#262)
  • 08c7b5c Avoid allocation if there are no rules (#261)
  • See full diff in compare view

Updates github.com/casbin/casbin/v2 from 2.108.0 to 2.122.0

Release notes

Sourced from github.com/casbin/casbin/v2's releases.

v2.122.0

2.122.0 (2025-09-04)

Features

  • add mutex protection for FieldIndexMap to prevent concurrent writes (#1537) (33e2e50)

v2.121.0

2.121.0 (2025-08-27)

Features

  • add GetImplicitObjectPatternsForUser API to get user's resource access patterns (#1532) (b75a3e7)

v2.120.0

2.120.0 (2025-08-14)

Features

  • add GetNamedImplicitUsersForResource() API to support g2 resource roles (#1523) (c33fbc2)

v2.119.0

2.119.0 (2025-08-12)

Features

v2.118.0

2.118.0 (2025-08-10)

Features

v2.117.0

2.117.0 (2025-08-09)

Features

  • improve BLP model example by removing levelMatch() custom function (#1519) (5d4a973)

v2.116.0

2.116.0 (2025-08-07)

... (truncated)

Commits
  • 33e2e50 feat: add mutex protection for FieldIndexMap to prevent concurrent writes (#1...
  • b75a3e7 feat: add GetImplicitObjectPatternsForUser API to get user's resource access ...
  • c33fbc2 feat: add GetNamedImplicitUsersForResource() API to support g2 resource roles...
  • e92c4ca feat: add LBAC model and test case (#1522)
  • 5bddec5 feat: add Biba model and test case (#1520)
  • 5d4a973 feat: improve BLP model example by removing levelMatch() custom function (#1519)
  • a2a6c3a feat: add BLP (Bell-LaPadula) model support and test (#1512)
  • 78ef2c1 feat: ensure consistent maxHierarchyLevel behavior across RBAC functions (#1508)
  • 8701b5a feat: fix issue that RBAC pattern doesn't work with conditions (#1506)
  • a58af29 feat: resolve issue where Enforcer could not retrieve roles from ConditionalR...
  • Additional commits viewable in compare view

Updates github.com/docker/docker from 28.3.3+incompatible to 28.4.0+incompatible

Release notes

Sourced from github.com/docker/docker's releases.

v28.4.0

28.4.0

For a full list of pull requests and changes in this release, refer to the relevant GitHub milestones:

New

  • Allow Docker CLI to set the GODEBUG environment variable when the key-value pair ("GODEBUG":"...") exists inside the docker context metadata. docker/cli#6399

Bug fixes and enhancements

  • Add shell completion for docker pull and docker image pull. docker/cli#6420
  • Fix a regression in v28.3.3 that could cause a panic on docker push if the client did not send an X-Registry-Auth header. moby/moby#50738
  • Windows: Potentially fix an issue with "access denied" error when pulling images. moby/moby#50871
  • containerd image store: Fix docker history failing with snapshot X does not exist when calling on a non-native image that was built locally. moby/moby#50875
  • containerd image store: Fix docker image prune to emit correct untag and delete events and list only the deleted images root digests instead of every blob. moby/moby#50837
  • Remove interactive login prompt from docker push and docker pull after a failure caused by missing authentication. docker/cli#6256

Packaging updates

Networking

  • Fix an issue that could cause slow container restart on live-restore. moby/moby#50829

API

Go SDK

Deprecations

  • Deprecate special handling for quoted values for the --tlscacert, --tlscert, and --tlskey command-line flags. docker/cli#6291
  • Mark legacy links env vars (DOCKER_KEEP_DEPRECATED_LEGACY_LINKS_ENV_VARS) as deprecated in v28.4 and set for removal in v30.0. docker/cli#6309
  • Go-SDK: Deprecate field NetworkSettingsBase.Bridge, struct NetworkSettingsBase, all the fields of DefaultNetworkSettings, and struct DefaultNetworkSettings. moby/moby#50839
  • Go-SDK: api/types: build.CacheDiskUsage, container.DiskUsage, images.DiskUsage and volumes.DiskUsage are now deprecated and will be removed in the next major release. moby/moby#50768
  • Go-SDK: cli-plugins/manager: deprecate ReexecEnvvar. docker/cli#6411
  • Go-SDK: cli-plugins/manager: deprecate annotation aliases (CommandAnnotationPlugin, CommandAnnotationPluginVendor, CommandAnnotationPluginVersion, CommandAnnotationPluginInvalid, CommandAnnotationPluginCommandPath) in favor of their equivalent in cli-plugins/manager/metadata. docker/cli#6298

... (truncated)

Commits
  • 249d679 Merge pull request #50890 from vvoland/50889-28.x
  • d664cfe update to go1.24.7
  • b384cd2 Merge pull request #50888 from vvoland/50885-28.x
  • c1ce88e vendor: update buildkit to v0.24.0
  • 4a34e8e Merge pull request #50875 from vvoland/50867-28.x
  • cfa70d0 gha/arm64: Setup qemu
  • d70382e integration/internal: Print Buildkit logs
  • 687b206 c8d/history: Fix non-native platforms
  • e4224f8 integration/internal: Handle Buildkit in GetImageIDFromBody
  • 5d5332b Merge pull request #50871 from vvoland/50870-28.x
  • Additional commits viewable in compare view

Updates github.com/docker/go-connections from 0.5.0 to 0.6.0

Commits
  • 42faf79 Merge pull request #138 from thaJeztah/sockets_move_unix_options
  • 9ffab7e sockets: make NewUnixSocket, WithChown, WithChmod unix-only
  • 6bb1d15 Merge pull request #135 from thaJeztah/rename_test_files
  • b6c843d sockets: rename files to be considered test files
  • 80898b6 Merge pull request #133 from thaJeztah/deprecate_socket_dialpipe
  • a4399e5 socket: deprecate DialPipe
  • b071e04 Merge pull request #128 from thaJeztah/remove_old_cyphers
  • 578bfde Merge pull request #132 from thaJeztah/optimize_ParsePortSpec
  • deccd71 tlsconfig: align client and server defaults, remove weak CBC ciphers
  • 30b91c8 nat: ParsePortSpec: combine some conditions
  • Additional commits viewable in compare view

Updates github.com/eko/gocache/lib/v4 from 4.2.0 to 4.2.1

Release notes

Sourced from github.com/eko/gocache/lib/v4's releases.

store/bigcache/v4.2.1

What's Changed

New Contributors

Full Changelog: eko/gocache@lib/v4.1.4...store/bigcache/v4.2.1

store/freecache/v4.2.1

What's Changed

New Contributors

Full Changelog: eko/gocache@lib/v4.1.4...store/freecache/v4.2.1

store/go_cache/v4.2.1

What's Changed

New Contributors

Full Changelog: eko/gocache@lib/v4.1.4...store/go_cache/v4.2.1

store/memcache/v4.2.1

What's Changed

New Contributors

... (truncated)

Commits
  • 9bf4ddf Merge pull request #294 from eko/fixed-chain-cache-when-same-type
  • 9e9377a Fixed chain cache type when 2 caches of same type and update stores
  • 4e33fa8 Merge pull request #293 from eko/fixed-chain-cache-when-same-type
  • 7129ed6 Fixed chain cache type when 2 caches of same type given
  • 40f450c Merge pull request #289 from pelageech/issue-288/prometheus-namespace
  • af33a0a Merge pull request #290 from dzbanek717/master
  • d215a32 Do early exit on nil value
  • b990574 Return true rueidis TTL value
  • ec94520 add doc for WithAttributesNamespace
  • 222a3b8 add attributes namespaces option for prometheus metrics
  • Additional commits viewable in compare view

Updates github.com/eko/gocache/store/ristretto/v4 from 4.2.2 to 4.3.1

Release notes

Sourced from github.com/eko/gocache/store/ristretto/v4's releases.

store/memcache/v4.2.3

What's Changed

Full Changelog: eko/gocache@lib/v4.2.1...store/memcache/v4.2.3

Commits
  • 9bf4ddf Merge pull request #294 from eko/fixed-chain-cache-when-same-type
  • 9e9377a Fixed chain cache type when 2 caches of same type and update stores
  • 4e33fa8 Merge pull request #293 from eko/fixed-chain-cache-when-same-type
  • 7129ed6 Fixed chain cache type when 2 caches of same type given
  • 40f450c Merge pull request #289 from pelageech/issue-288/prometheus-namespace
  • af33a0a Merge pull request #290 from dzbanek717/master
  • d215a32 Do early exit on nil value
  • b990574 Return true rueidis TTL value
  • ec94520 add doc for WithAttributesNamespace
  • 222a3b8 add attributes namespaces option for prometheus metrics
  • Additional commits viewable in compare view

Updates github.com/go-chi/cors from 1.2.1 to 1.2.2

Release notes

Sourced from github.com/go-chi/cors's releases.

v1.2.2

What's Changed

New Contributors

Full Changelog: go-chi/cors@v1.2.1...v1.2.2

Commits

Updates github.com/go-playground/validator/v10 from 10.26.0 to 10.27.0

Release notes

Sourced from github.com/go-playground/validator/v10's releases.

Release 10.27.0

What's Changed

New Contributors

Full Changelog: go-playground/validator@v10.26.0...v10.27.0

Commits
  • bc77d03 use golangci lint file for disables (#1447)
  • 4a1bc2f disable way too aggressive and disagreeable linters (#1445)
  • cf2267f fix: make "file://" fail url validation (#1444)
  • 3fd4678 docs: typos (#1440)
  • ec374ef Fix: Validator panics when 'nil' is used along with required if for slices an...
  • 0e3e2f9 Omitzero does not work with slice and map bug (#1436)
  • dfc7ccd Fix: support validation for map values with struct types (#1433)
  • 5b9542b fix: panics when private field is validated (#1423)
  • f9a5a1f feat(translation): add en translation for urn_rfc2141 (#1431)
  • 20f7df6 Bump golangci/golangci-lint-action from 7 to 8 (#1425)
  • Additional commits viewable in compare view

Updates github.com/grpc-ecosystem/grpc-gateway/v2 from 2.27.0 to 2.27.2

Release notes

Sourced from github.com/grpc-ecosystem/grpc-gateway/v2's releases.

v2.27.2

What's Changed

New Contributors

Full Changelog: grpc-ecosystem/grpc-gateway@v2.27.1...v2.27.2

v2.27.1

What's Changed

New Contributors

Full Changelog: grpc-ecosystem/grpc-gateway@v2.27.0...v2.27.1

Commits
  • 91958df chore(deps): update dependency rules_shell to v0.6.0 (#5862)
  • 74cf2e0 Replace gopkg.in/yaml.v3 with go.yaml.in/yaml/v3 (#5857)
  • 2fba191 chore(deps): update googleapis digest to 3b2a2ae (#5860)
  • ed12336 fix(deps): update module google.golang.org/grpc to v1.75.0 (#5859)
  • c2a8616 chore(deps): update googleapis digest to 2032c33 (#5858)
  • 77e504f Fix nested schema definition for body parameter (#3058) (#5827)
  • 7df4168 fix(deps): update google.golang.org/genproto/googleapis/rpc digest to 3122310...
  • 6d1d1fc fix(deps): update google.golang.org/genproto/googleapis/api digest to 3122310...
  • ec3d9b2 chore(deps): update googleapis digest to d869249 (#5852)
  • 8499438 chore(deps): update googleapis digest to 6429996 (#5851)
  • Additional commits viewable in compare view

Updates github.com/jackc/pgx/v5 from 5.7.5 to 5.7.6

Changelog

Sourced from github.com/jackc/pgx/v5's changelog.

5.7.6 (September 8, 2025)

  • Use ParseConfigError in pgx.ParseConfig and pgxpool.ParseConfig (Yurasov Ilia)
  • Add PrepareConn hook to pgxpool (Jonathan Hall)
  • Reduce allocations in QueryContext (Dominique Lefevre)
  • Add MarshalJSON and UnmarshalJSON for pgtype.Uint32 (Panos Koutsovasilis)
  • Configure ping behavior on pgxpool with ShouldPing (Christian Kiely)
  • zeronull int types implement Int64Valuer and Int64Scanner (Li Zeghong)
  • Fix panic when receiving terminate connection message during CopyFrom (Michal Drausowski)
  • Fix statement cache not being invalidated on error during batch (Muhammadali Nazarov)
Commits
  • a2fca03 Release v5.7.6
  • 95fc312 Add link to github.com/KoNekoD/pgx-colon-query-rewriter
  • 5534fa9 Improve Rows docs
  • a295d68 Merge pull request #2368 from zeghong/zeronull-int-valuer
  • 03f32c0 Merge branch 'master' into zeronull-int-valuer
  • 82fbe49 Merge pull request #2372 from WGH-/improve-batch-doc
  • 594d9d6 Merge pull request #2367 from zeghong/zeronull-int-scanner
  • 5a18241 Merge branch 'master' into zeronull-int-scanner
  • cc34da5 Merge pull request #2370 from Saurabh2402/improvement/setup-linters
  • dd81f81 Merge pull request #2369 from zeghong/go-doc-links
  • Additional commits viewable in compare view

Updates github.com/mattn/go-sqlite3 from 1.14.29 to 1.14.32

Commits

Updates github.com/open-policy-agent/opa from 1.5.1 to 1.8.0

Release notes

Sourced from github.com/open-policy-agent/opa's releases.

v1.8.0

This release contains a mix of new features, performance improvements, and bugfixes. Notably:

  • Support for EdDSA signatures in io.jwt built-ins, including a new io.jwt.verify_eddsa built-in.

EdDSA Support in built-ins (#7824)

Support for the EdDSA signing algorithm has been added to built-in functions in the io.jwt namespace.

This introduces the new io.jwt.verify_eddsa built-in function, and adds EdDSA support for the following built-ins:

This feature benefited greatly from the groundwork laid by @​lestrrat in (#7638). 👏 🎉 🥳

Authored by @​johanfylling reported by @​aromeyer

Runtime

Topdown

  • perf: Performance greatly improved for Object.Insert on existing key (#7820) authored by @​anderseknert
  • topdown,bundle,plugins: Upgrade interned jwx (0.9.x) with github.com/lestrrat-go/jwx/v3 (#7638) authored by @​lestrrat

Docs, Website

Miscellaneous

... (truncated)

Changelog

Sourced from github.com/open-policy-agent/opa's changelog.

1.8.0

This release contains a mix of new features, performance improvements, and bugfixes. Notably:

  • Support for EdDSA signatures in io.jwt built-ins, including a new io.jwt.verify_eddsa built-in.

EdDSA Support in built-ins (#7824)

Support for the EdDSA signing algorithm has been added to built-in functions in the io.jwt namespace.

This introduces the new io.jwt.verify_eddsa built-in function, and adds EdDSA support for the following built-ins:

This feature benefited greatly from the groundwork laid by @​lestrrat in (#7638). 👏 🎉 🥳

Authored...

Description has been truncated

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Sep 8, 2025
@dependabot dependabot bot requested a review from a team as a code owner September 8, 2025 17:35
@dependabot dependabot bot added the go Pull requests that update Go code label Sep 8, 2025
@dependabot dependabot bot requested a review from a team as a code owner September 8, 2025 17:35
@github-actions github-actions bot added the size/m label Sep 8, 2025
@dependabot dependabot bot force-pushed the dependabot/go_modules/service/external-c4823031e8 branch 6 times, most recently from c145f5a to da00264 Compare September 12, 2025 17:11
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 15, 2025

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot rebase.

1 similar comment
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 15, 2025

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot rebase.

@dependabot dependabot bot force-pushed the dependabot/go_modules/service/external-c4823031e8 branch from da00264 to cdd5397 Compare September 16, 2025 17:12
@jakedoublev
Copy link
Contributor

@dependabot rebase

@dependabot dependabot bot force-pushed the dependabot/go_modules/service/external-c4823031e8 branch 8 times, most recently from 8ace152 to 8f3a219 Compare September 22, 2025 17:42
Bumps the external group with 17 updates in the /service directory:

| Package | From | To |
| --- | --- | --- |
| [buf.build/go/protovalidate](https://github.com/bufbuild/protovalidate-go) | `0.13.1` | `0.14.0` |
| [github.com/casbin/casbin/v2](https://github.com/casbin/casbin) | `2.108.0` | `2.122.0` |
| [github.com/docker/docker](https://github.com/docker/docker) | `28.3.3+incompatible` | `28.4.0+incompatible` |
| [github.com/docker/go-connections](https://github.com/docker/go-connections) | `0.5.0` | `0.6.0` |
| [github.com/eko/gocache/lib/v4](https://github.com/eko/gocache) | `4.2.0` | `4.2.1` |
| [github.com/eko/gocache/store/ristretto/v4](https://github.com/eko/gocache) | `4.2.2` | `4.3.1` |
| [github.com/go-chi/cors](https://github.com/go-chi/cors) | `1.2.1` | `1.2.2` |
| [github.com/go-playground/validator/v10](https://github.com/go-playground/validator) | `10.26.0` | `10.27.0` |
| [github.com/grpc-ecosystem/grpc-gateway/v2](https://github.com/grpc-ecosystem/grpc-gateway) | `2.27.0` | `2.27.2` |
| [github.com/jackc/pgx/v5](https://github.com/jackc/pgx) | `5.7.5` | `5.7.6` |
| [github.com/mattn/go-sqlite3](https://github.com/mattn/go-sqlite3) | `1.14.29` | `1.14.32` |
| [github.com/open-policy-agent/opa](https://github.com/open-policy-agent/opa) | `1.5.1` | `1.8.0` |
| [github.com/pressly/goose/v3](https://github.com/pressly/goose) | `3.24.3` | `3.25.0` |
| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.9.1` | `1.10.1` |
| [github.com/spf13/viper](https://github.com/spf13/viper) | `1.20.1` | `1.21.0` |
| [github.com/testcontainers/testcontainers-go](https://github.com/testcontainers/testcontainers-go) | `0.37.0` | `0.38.0` |
| [go.opentelemetry.io/otel/exporters/stdout/stdouttrace](https://github.com/open-telemetry/opentelemetry-go) | `1.36.0` | `1.38.0` |



Updates `buf.build/go/protovalidate` from 0.13.1 to 0.14.0
- [Release notes](https://github.com/bufbuild/protovalidate-go/releases)
- [Commits](bufbuild/protovalidate-go@v0.13.1...v0.14.0)

Updates `github.com/casbin/casbin/v2` from 2.108.0 to 2.122.0
- [Release notes](https://github.com/casbin/casbin/releases)
- [Changelog](https://github.com/casbin/casbin/blob/master/.releaserc.json)
- [Commits](casbin/casbin@v2.108.0...v2.122.0)

Updates `github.com/docker/docker` from 28.3.3+incompatible to 28.4.0+incompatible
- [Release notes](https://github.com/docker/docker/releases)
- [Commits](moby/moby@v28.3.3...v28.4.0)

Updates `github.com/docker/go-connections` from 0.5.0 to 0.6.0
- [Commits](docker/go-connections@v0.5.0...v0.6.0)

Updates `github.com/eko/gocache/lib/v4` from 4.2.0 to 4.2.1
- [Release notes](https://github.com/eko/gocache/releases)
- [Commits](eko/gocache@lib/v4.2.0...lib/v4.2.1)

Updates `github.com/eko/gocache/store/ristretto/v4` from 4.2.2 to 4.3.1
- [Release notes](https://github.com/eko/gocache/releases)
- [Commits](eko/gocache@store/redis/v4.2.2...store/ristretto/v4.3.1)

Updates `github.com/go-chi/cors` from 1.2.1 to 1.2.2
- [Release notes](https://github.com/go-chi/cors/releases)
- [Commits](go-chi/cors@v1.2.1...v1.2.2)

Updates `github.com/go-playground/validator/v10` from 10.26.0 to 10.27.0
- [Release notes](https://github.com/go-playground/validator/releases)
- [Commits](go-playground/validator@v10.26.0...v10.27.0)

Updates `github.com/grpc-ecosystem/grpc-gateway/v2` from 2.27.0 to 2.27.2
- [Release notes](https://github.com/grpc-ecosystem/grpc-gateway/releases)
- [Changelog](https://github.com/grpc-ecosystem/grpc-gateway/blob/main/.goreleaser.yml)
- [Commits](grpc-ecosystem/grpc-gateway@v2.27.0...v2.27.2)

Updates `github.com/jackc/pgx/v5` from 5.7.5 to 5.7.6
- [Changelog](https://github.com/jackc/pgx/blob/master/CHANGELOG.md)
- [Commits](jackc/pgx@v5.7.5...v5.7.6)

Updates `github.com/mattn/go-sqlite3` from 1.14.29 to 1.14.32
- [Release notes](https://github.com/mattn/go-sqlite3/releases)
- [Commits](mattn/go-sqlite3@v1.14.29...v1.14.32)

Updates `github.com/open-policy-agent/opa` from 1.5.1 to 1.8.0
- [Release notes](https://github.com/open-policy-agent/opa/releases)
- [Changelog](https://github.com/open-policy-agent/opa/blob/main/CHANGELOG.md)
- [Commits](open-policy-agent/opa@v1.5.1...v1.8.0)

Updates `github.com/pressly/goose/v3` from 3.24.3 to 3.25.0
- [Release notes](https://github.com/pressly/goose/releases)
- [Changelog](https://github.com/pressly/goose/blob/main/CHANGELOG.md)
- [Commits](pressly/goose@v3.24.3...v3.25.0)

Updates `github.com/spf13/cobra` from 1.9.1 to 1.10.1
- [Release notes](https://github.com/spf13/cobra/releases)
- [Commits](spf13/cobra@v1.9.1...v1.10.1)

Updates `github.com/spf13/viper` from 1.20.1 to 1.21.0
- [Release notes](https://github.com/spf13/viper/releases)
- [Commits](spf13/viper@v1.20.1...v1.21.0)

Updates `github.com/stretchr/testify` from 1.10.0 to 1.11.1
- [Release notes](https://github.com/stretchr/testify/releases)
- [Commits](stretchr/testify@v1.10.0...v1.11.1)

Updates `github.com/testcontainers/testcontainers-go` from 0.37.0 to 0.38.0
- [Release notes](https://github.com/testcontainers/testcontainers-go/releases)
- [Commits](testcontainers/testcontainers-go@v0.37.0...v0.38.0)

Updates `go.opentelemetry.io/otel` from 1.36.0 to 1.37.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.36.0...v1.37.0)

Updates `go.opentelemetry.io/otel/exporters/otlp/otlptrace` from 1.36.0 to 1.37.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.36.0...v1.37.0)

Updates `go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc` from 1.36.0 to 1.37.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.36.0...v1.37.0)

Updates `go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp` from 1.36.0 to 1.37.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.36.0...v1.37.0)

Updates `go.opentelemetry.io/otel/exporters/stdout/stdouttrace` from 1.36.0 to 1.38.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.36.0...v1.38.0)

Updates `go.opentelemetry.io/otel/sdk` from 1.36.0 to 1.38.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.36.0...v1.38.0)

Updates `go.opentelemetry.io/otel/trace` from 1.36.0 to 1.38.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.36.0...v1.38.0)

Updates `golang.org/x/net` from 0.41.0 to 0.42.0
- [Commits](golang/net@v0.41.0...v0.42.0)

Updates `google.golang.org/grpc` from 1.73.0 to 1.75.0
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.73.0...v1.75.0)

Updates `google.golang.org/protobuf` from 1.36.6 to 1.36.7

Updates `golang.org/x/text` from 0.26.0 to 0.28.0
- [Release notes](https://github.com/golang/text/releases)
- [Commits](golang/text@v0.26.0...v0.28.0)

---
updated-dependencies:
- dependency-name: buf.build/go/protovalidate
  dependency-version: 0.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: external
- dependency-name: github.com/casbin/casbin/v2
  dependency-version: 2.122.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: external
- dependency-name: github.com/docker/docker
  dependency-version: 28.4.0+incompatible
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: external
- dependency-name: github.com/docker/go-connections
  dependency-version: 0.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: external
- dependency-name: github.com/eko/gocache/lib/v4
  dependency-version: 4.2.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: external
- dependency-name: github.com/eko/gocache/store/ristretto/v4
  dependency-version: 4.3.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: external
- dependency-name: github.com/go-chi/cors
  dependency-version: 1.2.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: external
- dependency-name: github.com/go-playground/validator/v10
  dependency-version: 10.27.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: external
- dependency-name: github.com/grpc-ecosystem/grpc-gateway/v2
  dependency-version: 2.27.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: external
- dependency-name: github.com/jackc/pgx/v5
  dependency-version: 5.7.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: external
- dependency-name: github.com/mattn/go-sqlite3
  dependency-version: 1.14.32
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: external
- dependency-name: github.com/open-policy-agent/opa
  dependency-version: 1.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: external
- dependency-name: github.com/pressly/goose/v3
  dependency-version: 3.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: external
- dependency-name: github.com/spf13/cobra
  dependency-version: 1.10.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: external
- dependency-name: github.com/spf13/viper
  dependency-version: 1.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: external
- dependency-name: github.com/stretchr/testify
  dependency-version: 1.11.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: external
- dependency-name: github.com/testcontainers/testcontainers-go
  dependency-version: 0.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: external
- dependency-name: go.opentelemetry.io/otel
  dependency-version: 1.37.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: external
- dependency-name: go.opentelemetry.io/otel/exporters/otlp/otlptrace
  dependency-version: 1.37.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: external
- dependency-name: go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc
  dependency-version: 1.37.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: external
- dependency-name: go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp
  dependency-version: 1.37.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: external
- dependency-name: go.opentelemetry.io/otel/exporters/stdout/stdouttrace
  dependency-version: 1.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: external
- dependency-name: go.opentelemetry.io/otel/sdk
  dependency-version: 1.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: external
- dependency-name: go.opentelemetry.io/otel/trace
  dependency-version: 1.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: external
- dependency-name: golang.org/x/net
  dependency-version: 0.42.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: external
- dependency-name: google.golang.org/grpc
  dependency-version: 1.75.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: external
- dependency-name: google.golang.org/protobuf
  dependency-version: 1.36.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: external
- dependency-name: golang.org/x/text
  dependency-version: 0.28.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: external
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/go_modules/service/external-c4823031e8 branch from 8f3a219 to dff7405 Compare September 23, 2025 17:12
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 25, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Sep 25, 2025
@dependabot dependabot bot deleted the dependabot/go_modules/service/external-c4823031e8 branch September 25, 2025 17:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file go Pull requests that update Go code size/m
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant