Skip to content

chore(deps): bump the all group across 2 directories with 29 updates #976

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 18, 2025

Bumps the all group with 14 updates in the / directory:

Package From To
github.com/onsi/gomega 1.36.3 1.37.0
github.com/uptrace/bun 1.2.13 1.2.14
github.com/uptrace/bun/dialect/pgdialect 1.2.13 1.2.14
github.com/uptrace/bun/extra/bundebug 1.2.12 1.2.14
github.com/moby/sys/user 0.3.0 0.4.0
github.com/aws/aws-sdk-go-v2 1.36.4 1.36.5
github.com/aws/aws-sdk-go-v2/config 1.29.16 1.29.17
github.com/aws/aws-sdk-go-v2/feature/rds/auth 1.5.12 1.5.13
github.com/docker/cli 27.4.1+incompatible 28.2.2+incompatible
github.com/go-viper/mapstructure/v2 2.2.1 2.3.0
github.com/grpc-ecosystem/grpc-gateway/v2 2.26.3 2.27.0
github.com/opencontainers/runc 1.2.3 1.3.0
github.com/uptrace/bun/extra/bunotel 1.2.13 1.2.14
golang.org/x/time 0.11.0 0.12.0

Bumps the all group with 5 updates in the /tools/provisioner directory:

Package From To
golang.org/x/sync 0.14.0 0.15.0
github.com/go-logr/logr 1.4.2 1.4.3
golang.org/x/net 0.40.0 0.41.0
golang.org/x/time 0.11.0 0.12.0
sigs.k8s.io/structured-merge-diff/v4 4.6.0 4.7.0

Updates github.com/onsi/gomega from 1.36.3 to 1.37.0

Release notes

Sourced from github.com/onsi/gomega's releases.

v1.37.0

1.37.0

Features

  • add To/ToNot/NotTo aliases for AsyncAssertion [5666f98]
Changelog

Sourced from github.com/onsi/gomega's changelog.

1.37.0

Features

  • add To/ToNot/NotTo aliases for AsyncAssertion [5666f98]
Commits

Updates github.com/uptrace/bun from 1.2.13 to 1.2.14

Release notes

Sourced from github.com/uptrace/bun's releases.

v1.2.14

Please refer to CHANGELOG.md for details

Changelog

Sourced from github.com/uptrace/bun's changelog.

1.2.14 (2025-06-16)

Bug Fixes

Commits
  • b25423b Merge pull request #1216 from uptrace/release/v1.2.14
  • e14d18a chore: release v1.2.14 (release.sh)
  • ca94f25 Merge pull request #1214 from uptrace/fix/add-comments-and-restore-check
  • 07d32c1 fix: restore q.limit check
  • See full diff in compare view

Updates github.com/uptrace/bun/dialect/pgdialect from 1.2.13 to 1.2.14

Release notes

Sourced from github.com/uptrace/bun/dialect/pgdialect's releases.

v1.2.14

Please refer to CHANGELOG.md for details

Changelog

Sourced from github.com/uptrace/bun/dialect/pgdialect's changelog.

1.2.14 (2025-06-16)

Bug Fixes

Commits
  • b25423b Merge pull request #1216 from uptrace/release/v1.2.14
  • e14d18a chore: release v1.2.14 (release.sh)
  • ca94f25 Merge pull request #1214 from uptrace/fix/add-comments-and-restore-check
  • 07d32c1 fix: restore q.limit check
  • See full diff in compare view

Updates github.com/uptrace/bun/extra/bundebug from 1.2.12 to 1.2.14

Release notes

Sourced from github.com/uptrace/bun/extra/bundebug's releases.

v1.2.14

Please refer to CHANGELOG.md for details

v1.2.13

Please refer to CHANGELOG.md for details

Changelog

Sourced from github.com/uptrace/bun/extra/bundebug's changelog.

1.2.14 (2025-06-16)

Bug Fixes

1.2.13 (2025-06-11)

Bug Fixes

  • query: scanAndCount without model (07fb7ec), closes #1209
  • sort fk constraints before appending (c87fa90)
  • use slices sort (8555900)
Commits
  • b25423b Merge pull request #1216 from uptrace/release/v1.2.14
  • e14d18a chore: release v1.2.14 (release.sh)
  • ca94f25 Merge pull request #1214 from uptrace/fix/add-comments-and-restore-check
  • 07d32c1 fix: restore q.limit check
  • 868b17d Merge pull request #1211 from uptrace/release/v1.2.13
  • 07aad46 chore: release v1.2.13 (release.sh)
  • 1a7d07e Merge pull request #1210 from uptrace/fix-clone-with-nil-model
  • 07fb7ec fix(query): scanAndCount without model
  • 4bda447 Merge pull request #1208 from luantranminh/master
  • ebe12c6 Merge pull request #1207 from shota3506/refactor/use-slices-sort
  • Additional commits viewable in compare view

Updates github.com/moby/sys/user from 0.3.0 to 0.4.0

Release notes

Sourced from github.com/moby/sys/user's releases.

mountinfo v0.4.0

Breaking changes:

  • PidMountInfo is now deprecated and will be removed before v1.0; users should switch to GetMountsFromReader (#47)

Fixes and improvements:

  • run filter after all fields are parsed (#50)
  • correct handling errors from bufio.Scan
  • documentation formatting fixes (#48)

Thanks to:

  • Aleksa Sarai

capability v0.4.0

Added

Fixed

  • Apply now returns an error if called for non-zero pid. Before this change, it could silently change some capabilities of the current process, instead of the one identified by the pid. (#168, #174)
  • Fixed tests that change capabilities to be run in a separate process. (#173)
  • Other improvements in tests. (#169, #170)

Changed

  • Use raw syscalls (which are slightly faster). (#176)
  • Most tests are now limited to testing the public API of the package. (#162)
  • Simplify parsing /proc/pid/status, add a test case. (#162)
  • Optimize the number of syscall to set ambient capabilities in Apply by clearing them first; add a test case. (#163, #164)
  • Better documentation for Apply, [NewFile], [NewFile2], [NewPid], [NewPid2]. (#175)

Removed

  • .golangci.yml and .codespellrc are no longer part of the package. (#158)

For the complete list of changes, see https://github.com/moby/sys/blob/HEAD/capability/CHANGELOG.md.


Thanks to all of the contributors who made this release possible:

... (truncated)

Commits
  • 71f0c5e Merge pull request #182 from dmcgowan/merge-idtools
  • db55716 Update interface to fit into user package
  • 8e08d6b Merge idtools from github.com/moby/moby/pkg/idtools
  • 7e518ec Merge pull request #49087 from dmcgowan/split-idtools-internal
  • 6134528 Split internal idtools functionality
  • 9ecbe7b pkg/idtools: rewrite to use moby/sys/user
  • 5805d70 pkg/idtools: use lazyregexp to compile regexes on first use
  • fdf2879 Merge pull request #49162 from thaJeztah/pkg_system_volume_uuid
  • 3d38759 pkg/idtools: remove uses of deprecated system.MkdirAll
  • ca0444f Merge pull request #180 from thaJeztah/add_codecov
  • Additional commits viewable in compare view

Updates github.com/aws/aws-sdk-go-v2 from 1.36.4 to 1.36.5

Commits

Updates github.com/aws/aws-sdk-go-v2/config from 1.29.16 to 1.29.17

Commits

Updates github.com/aws/aws-sdk-go-v2/credentials from 1.17.69 to 1.17.70

Commits

Updates github.com/aws/aws-sdk-go-v2/feature/ec2/imds from 1.16.31 to 1.16.32

Commits

Updates github.com/aws/aws-sdk-go-v2/feature/rds/auth from 1.5.12 to 1.5.13

Commits

Updates github.com/aws/aws-sdk-go-v2/internal/configsources from 1.3.35 to 1.3.36

Commits

Updates github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 from 2.6.35 to 2.6.36

Commits

Updates github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding from 1.12.3 to 1.12.4

Commits

Updates github.com/aws/aws-sdk-go-v2/service/internal/presigned-url from 1.12.16 to 1.12.17

Commits

Updates github.com/aws/aws-sdk-go-v2/service/sso from 1.25.4 to 1.25.5

Commits
  • fa3ee1a Release 2023-11-21
  • 6e0c553 Regenerated Clients
  • 32fa00b Update endpoints model
  • 72eae5c Update API model
  • 1c69d08 fix: don't expect response to be json in endpointcreds provider (#2381)
  • 3bd97c0 fix: don't send 0 max items for object version and multipart upload paginator...
  • See full diff in compare view

Updates github.com/aws/aws-sdk-go-v2/service/ssooidc from 1.30.2 to 1.30.3

Commits

Updates github.com/aws/aws-sdk-go-v2/service/sts from 1.33.21 to 1.34.0

Commits

Updates github.com/aws/smithy-go from 1.22.3 to 1.22.4

Release notes

Sourced from github.com/aws/smithy-go's releases.

v1.22.4

Release (2025-06-16)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.22.4
    • Bug Fix: Fix CBOR serd empty check for string and enum fields
Changelog

Sourced from github.com/aws/smithy-go's changelog.

Release (2025-06-16)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.22.4
    • Bug Fix: Fix CBOR serd empty check for string and enum fields
    • Bug Fix: Fix HTTP metrics data race.
    • Bug Fix: Replace usages of deprecated ioutil package.

Release (2025-02-17)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.22.3
  • Dependency Update: Bump minimum Go version to 1.22 per our language support policy.

Release (2025-01-21)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.22.2
    • Bug Fix: Fix HTTP metrics data race.
    • Bug Fix: Replace usages of deprecated ioutil package.

Release (2024-11-15)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.22.1
    • Bug Fix: Fix failure to replace URI path segments when their names overlap.

Release (2024-10-03)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.22.0
    • Feature: Add HTTP client metrics.

Release (2024-09-25)

... (truncated)

Commits
  • bf8427e Release 2025-06-16
  • f173ede add changelog for manual release (#585)
  • 49e32ad add empty check for string and enum serialization in cbor (#584)
  • 4114b6e set missing x-amzn-query-mode for awsQueryCompatible (#583)
  • ac97392 qt->qtype
  • 3f73d67 upgrade smithy, correct serialization of empty-prefix httpPrefixHeaders (#582)
  • a14e8e7 test protocol selection (#581)
  • a13e2d5 Move CBOR deserialization timers to AFTER calling middleware.Next (#580)
  • 4e627e9 abstract directed codegen
  • d2fdc13 Close cbor serde timers to accurately measure middleware timing (#578)
  • Additional commits viewable in compare view

Updates github.com/docker/cli from 27.4.1+incompatible to 28.2.2+incompatible

Commits
  • e6534b4 Merge pull request #6116 from vvoland/vendor-docker
  • 5c3128e vendor: github.com/docker/docker v28.2.2-dev (45873be4ae3f)
  • 879ac3f Merge pull request #6110 from thaJeztah/bump_engine
  • 92fa1e1 vendor: github.com/docker/docker 0e2cc22d36ae (v28.2-dev)
  • 4bec3a6 Merge pull request #6114 from thaJeztah/deprecate_non_compliant_registries
  • a007d1a Merge pull request #6113 from thaJeztah/config_suppress_err
  • bbfbd54 docs: deprecated: fallback for non-OCI-compliant registries is removed
  • 2d21e1f cli/config/configfile: explicitly ignore error
  • bc9be0b Merge pull request #6112 from thaJeztah/bump_tools
  • 3fe7dc5 Dockerfile: update compose to v2.36.2
  • Additional commits viewable in compare view

Updates github.com/go-viper/mapstructure/v2 from 2.2.1 to 2.3.0

Release notes

Sourced from github.com/go-viper/mapstructure/v2's releases.

v2.3.0

What's Changed

New Contributors

Full Changelog: go-viper/mapstructure@v2.2.1...v2.3.0

Commits
  • 8c61ec1 Merge pull request #80 from rostislaved/feature-allow-unset-pointer
  • df765f4 Merge pull request #106 from go-viper/update-linter
  • 5f34b05 update linter
  • 36de1e1 Merge pull request #105 from go-viper/error-refactor
  • 6a283a3 chore: update error type doc
  • 599cb73 Merge pull request #101 from go-viper/dependabot/github_actions/github/codeql...
  • ed3f921 feat: remove value from error messages
  • a3f8b22 revert: error message change
  • 9661f6d feat: add common error interface
  • f12f6c7 Merge pull request #102 from m1k1o/prettify-errors2
  • Additional commits viewable in compare view

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

Release notes

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

v2.27.0

What's Changed

New Contributors

Full Changelog: grpc-ecosystem/grpc-gateway@v2.26.3...v2.26.4

Commits
  • a8a7bb0 protoc-gen-grpc-gateway: guard against nil on drain (#5668)
  • e87b1b8 chore(deps): update googleapis digest to ab2a125 (#5666)
  • 59f6e69 chore(deps): update googleapis digest to 970e98f (#5665)
  • 5702c8b chore(deps): update dependency bazel_features to v1.32.0 (#5664)
  • 4d991f0 chore(deps): update googleapis digest to e929e30 (#5663)
  • 8441628 chore(deps): update googleapis digest to b6b04bf (#5662)
  • d326825 chore(deps): update googleapis digest to 7bdfcb7 (#5661)
  • d70759e chore(deps): update dependency gazelle to v0.44.0 (#5660)
  • ce9f90b chore(deps): update dependency bazel_gazelle to v0.44.0 (#5659)
  • a6a9d27 chore(deps): update dependency io_bazel_rules_go to v0.55.1 (#5658)
  • Additional commits viewable in compare view

Updates github.com/opencontainers/runc from 1.2.3 to 1.3.0

Release notes

Sourced from github.com/opencontainers/runc's releases.

runc v1.2.5 -- "Мороз и солнце; день чудесный!"

This is the fifth patch release in the 1.2.z series of runc. It primarily fixes an issue caused by an upstream systemd bug.

  • There was a regression in systemd v230 which made the way we define device rule restrictions require a systemctl daemon-reload for our transient units. This caused issues for workloads using NVIDIA GPUs. Workaround the upstream regression by re-arranging how the unit properties are defined. (#4568, #4612, #4615)
  • Dependency github.com/cypha...

    Description has been truncated

Bumps the all group with 14 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/onsi/gomega](https://github.com/onsi/gomega) | `1.36.3` | `1.37.0` |
| [github.com/uptrace/bun](https://github.com/uptrace/bun) | `1.2.13` | `1.2.14` |
| [github.com/uptrace/bun/dialect/pgdialect](https://github.com/uptrace/bun) | `1.2.13` | `1.2.14` |
| [github.com/uptrace/bun/extra/bundebug](https://github.com/uptrace/bun) | `1.2.12` | `1.2.14` |
| [github.com/moby/sys/user](https://github.com/moby/sys) | `0.3.0` | `0.4.0` |
| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.36.4` | `1.36.5` |
| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.29.16` | `1.29.17` |
| [github.com/aws/aws-sdk-go-v2/feature/rds/auth](https://github.com/aws/aws-sdk-go-v2) | `1.5.12` | `1.5.13` |
| [github.com/docker/cli](https://github.com/docker/cli) | `27.4.1+incompatible` | `28.2.2+incompatible` |
| [github.com/go-viper/mapstructure/v2](https://github.com/go-viper/mapstructure) | `2.2.1` | `2.3.0` |
| [github.com/grpc-ecosystem/grpc-gateway/v2](https://github.com/grpc-ecosystem/grpc-gateway) | `2.26.3` | `2.27.0` |
| [github.com/opencontainers/runc](https://github.com/opencontainers/runc) | `1.2.3` | `1.3.0` |
| [github.com/uptrace/bun/extra/bunotel](https://github.com/uptrace/bun) | `1.2.13` | `1.2.14` |
| [golang.org/x/time](https://github.com/golang/time) | `0.11.0` | `0.12.0` |

Bumps the all group with 5 updates in the /tools/provisioner directory:

| Package | From | To |
| --- | --- | --- |
| [golang.org/x/sync](https://github.com/golang/sync) | `0.14.0` | `0.15.0` |
| [github.com/go-logr/logr](https://github.com/go-logr/logr) | `1.4.2` | `1.4.3` |
| [golang.org/x/net](https://github.com/golang/net) | `0.40.0` | `0.41.0` |
| [golang.org/x/time](https://github.com/golang/time) | `0.11.0` | `0.12.0` |
| [sigs.k8s.io/structured-merge-diff/v4](https://github.com/kubernetes-sigs/structured-merge-diff) | `4.6.0` | `4.7.0` |



Updates `github.com/onsi/gomega` from 1.36.3 to 1.37.0
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](onsi/gomega@v1.36.3...v1.37.0)

Updates `github.com/uptrace/bun` from 1.2.13 to 1.2.14
- [Release notes](https://github.com/uptrace/bun/releases)
- [Changelog](https://github.com/uptrace/bun/blob/master/CHANGELOG.md)
- [Commits](uptrace/bun@v1.2.13...v1.2.14)

Updates `github.com/uptrace/bun/dialect/pgdialect` from 1.2.13 to 1.2.14
- [Release notes](https://github.com/uptrace/bun/releases)
- [Changelog](https://github.com/uptrace/bun/blob/master/CHANGELOG.md)
- [Commits](uptrace/bun@v1.2.13...v1.2.14)

Updates `github.com/uptrace/bun/extra/bundebug` from 1.2.12 to 1.2.14
- [Release notes](https://github.com/uptrace/bun/releases)
- [Changelog](https://github.com/uptrace/bun/blob/master/CHANGELOG.md)
- [Commits](uptrace/bun@v1.2.12...v1.2.14)

Updates `github.com/moby/sys/user` from 0.3.0 to 0.4.0
- [Release notes](https://github.com/moby/sys/releases)
- [Commits](moby/sys@user/v0.3.0...user/v0.4.0)

Updates `github.com/aws/aws-sdk-go-v2` from 1.36.4 to 1.36.5
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/changelog-template.json)
- [Commits](aws/aws-sdk-go-v2@v1.36.4...v1.36.5)

Updates `github.com/aws/aws-sdk-go-v2/config` from 1.29.16 to 1.29.17
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/changelog-template.json)
- [Commits](aws/aws-sdk-go-v2@config/v1.29.16...config/v1.29.17)

Updates `github.com/aws/aws-sdk-go-v2/credentials` from 1.17.69 to 1.17.70
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/changelog-template.json)
- [Commits](aws/aws-sdk-go-v2@credentials/v1.17.69...credentials/v1.17.70)

Updates `github.com/aws/aws-sdk-go-v2/feature/ec2/imds` from 1.16.31 to 1.16.32
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/changelog-template.json)
- [Commits](aws/aws-sdk-go-v2@feature/ec2/imds/v1.16.31...feature/ec2/imds/v1.16.32)

Updates `github.com/aws/aws-sdk-go-v2/feature/rds/auth` from 1.5.12 to 1.5.13
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/changelog-template.json)
- [Commits](aws/aws-sdk-go-v2@feature/rds/auth/v1.5.12...feature/rds/auth/v1.5.13)

Updates `github.com/aws/aws-sdk-go-v2/internal/configsources` from 1.3.35 to 1.3.36
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/changelog-template.json)
- [Commits](aws/aws-sdk-go-v2@internal/ini/v1.3.35...internal/ini/v1.3.36)

Updates `github.com/aws/aws-sdk-go-v2/internal/endpoints/v2` from 2.6.35 to 2.6.36
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/changelog-template.json)
- [Commits](aws/aws-sdk-go-v2@internal/endpoints/v2.6.35...internal/endpoints/v2.6.36)

Updates `github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding` from 1.12.3 to 1.12.4
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/changelog-template.json)
- [Commits](aws/aws-sdk-go-v2@service/m2/v1.12.3...service/m2/v1.12.4)

Updates `github.com/aws/aws-sdk-go-v2/service/internal/presigned-url` from 1.12.16 to 1.12.17
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/changelog-template.json)
- [Commits](aws/aws-sdk-go-v2@credentials/v1.12.16...credentials/v1.12.17)

Updates `github.com/aws/aws-sdk-go-v2/service/sso` from 1.25.4 to 1.25.5
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/changelog-template.json)
- [Commits](aws/aws-sdk-go-v2@config/v1.25.4...config/v1.25.5)

Updates `github.com/aws/aws-sdk-go-v2/service/ssooidc` from 1.30.2 to 1.30.3
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/changelog-template.json)
- [Commits](aws/aws-sdk-go-v2@v1.30.2...v1.30.3)

Updates `github.com/aws/aws-sdk-go-v2/service/sts` from 1.33.21 to 1.34.0
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/changelog-template.json)
- [Commits](aws/aws-sdk-go-v2@service/sts/v1.33.21...v1.34.0)

Updates `github.com/aws/smithy-go` from 1.22.3 to 1.22.4
- [Release notes](https://github.com/aws/smithy-go/releases)
- [Changelog](https://github.com/aws/smithy-go/blob/main/CHANGELOG.md)
- [Commits](aws/smithy-go@v1.22.3...v1.22.4)

Updates `github.com/docker/cli` from 27.4.1+incompatible to 28.2.2+incompatible
- [Commits](docker/cli@v27.4.1...v28.2.2)

Updates `github.com/go-viper/mapstructure/v2` from 2.2.1 to 2.3.0
- [Release notes](https://github.com/go-viper/mapstructure/releases)
- [Changelog](https://github.com/go-viper/mapstructure/blob/main/CHANGELOG.md)
- [Commits](go-viper/mapstructure@v2.2.1...v2.3.0)

Updates `github.com/grpc-ecosystem/grpc-gateway/v2` from 2.26.3 to 2.27.0
- [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.26.3...v2.27.0)

Updates `github.com/opencontainers/runc` from 1.2.3 to 1.3.0
- [Release notes](https://github.com/opencontainers/runc/releases)
- [Changelog](https://github.com/opencontainers/runc/blob/main/CHANGELOG.md)
- [Commits](opencontainers/runc@v1.2.3...v1.3.0)

Updates `github.com/uptrace/bun/extra/bunotel` from 1.2.13 to 1.2.14
- [Release notes](https://github.com/uptrace/bun/releases)
- [Changelog](https://github.com/uptrace/bun/blob/master/CHANGELOG.md)
- [Commits](uptrace/bun@v1.2.13...v1.2.14)

Updates `golang.org/x/time` from 0.11.0 to 0.12.0
- [Commits](golang/time@v0.11.0...v0.12.0)

Updates `golang.org/x/time` from 0.11.0 to 0.12.0
- [Commits](golang/time@v0.11.0...v0.12.0)

Updates `golang.org/x/sync` from 0.14.0 to 0.15.0
- [Commits](golang/sync@v0.14.0...v0.15.0)

Updates `github.com/go-logr/logr` from 1.4.2 to 1.4.3
- [Release notes](https://github.com/go-logr/logr/releases)
- [Changelog](https://github.com/go-logr/logr/blob/master/CHANGELOG.md)
- [Commits](go-logr/logr@v1.4.2...v1.4.3)

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

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

Updates `golang.org/x/time` from 0.11.0 to 0.12.0
- [Commits](golang/time@v0.11.0...v0.12.0)

Updates `github.com/go-logr/logr` from 1.4.2 to 1.4.3
- [Release notes](https://github.com/go-logr/logr/releases)
- [Changelog](https://github.com/go-logr/logr/blob/master/CHANGELOG.md)
- [Commits](go-logr/logr@v1.4.2...v1.4.3)

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

Updates `golang.org/x/sync` from 0.14.0 to 0.15.0
- [Commits](golang/sync@v0.14.0...v0.15.0)

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

Updates `golang.org/x/time` from 0.11.0 to 0.12.0
- [Commits](golang/time@v0.11.0...v0.12.0)

Updates `sigs.k8s.io/structured-merge-diff/v4` from 4.6.0 to 4.7.0
- [Release notes](https://github.com/kubernetes-sigs/structured-merge-diff/releases)
- [Changelog](https://github.com/kubernetes-sigs/structured-merge-diff/blob/master/RELEASE.md)
- [Commits](kubernetes-sigs/structured-merge-diff@v4.6.0...v4.7.0)

---
updated-dependencies:
- dependency-name: github.com/onsi/gomega
  dependency-version: 1.37.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/uptrace/bun
  dependency-version: 1.2.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/uptrace/bun/dialect/pgdialect
  dependency-version: 1.2.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/uptrace/bun/extra/bundebug
  dependency-version: 1.2.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/moby/sys/user
  dependency-version: 0.4.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/aws/aws-sdk-go-v2
  dependency-version: 1.36.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/aws/aws-sdk-go-v2/config
  dependency-version: 1.29.17
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/aws/aws-sdk-go-v2/credentials
  dependency-version: 1.17.70
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/aws/aws-sdk-go-v2/feature/ec2/imds
  dependency-version: 1.16.32
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/aws/aws-sdk-go-v2/feature/rds/auth
  dependency-version: 1.5.13
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/aws/aws-sdk-go-v2/internal/configsources
  dependency-version: 1.3.36
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/aws/aws-sdk-go-v2/internal/endpoints/v2
  dependency-version: 2.6.36
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding
  dependency-version: 1.12.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/aws/aws-sdk-go-v2/service/internal/presigned-url
  dependency-version: 1.12.17
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/aws/aws-sdk-go-v2/service/sso
  dependency-version: 1.25.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/aws/aws-sdk-go-v2/service/ssooidc
  dependency-version: 1.30.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/aws/aws-sdk-go-v2/service/sts
  dependency-version: 1.34.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/aws/smithy-go
  dependency-version: 1.22.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/docker/cli
  dependency-version: 28.2.2+incompatible
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: github.com/go-viper/mapstructure/v2
  dependency-version: 2.3.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/grpc-ecosystem/grpc-gateway/v2
  dependency-version: 2.27.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/opencontainers/runc
  dependency-version: 1.3.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/uptrace/bun/extra/bunotel
  dependency-version: 1.2.14
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: golang.org/x/time
  dependency-version: 0.12.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: golang.org/x/time
  dependency-version: 0.12.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: golang.org/x/sync
  dependency-version: 0.15.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/go-logr/logr
  dependency-version: 1.4.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: golang.org/x/net
  dependency-version: 0.41.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: golang.org/x/text
  dependency-version: 0.26.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: golang.org/x/time
  dependency-version: 0.12.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/go-logr/logr
  dependency-version: 1.4.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: golang.org/x/net
  dependency-version: 0.41.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: golang.org/x/sync
  dependency-version: 0.15.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: golang.org/x/text
  dependency-version: 0.26.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: golang.org/x/time
  dependency-version: 0.12.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: sigs.k8s.io/structured-merge-diff/v4
  dependency-version: 4.7.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jun 18, 2025
@dependabot dependabot bot requested a review from a team as a code owner June 18, 2025 03:56
Copy link

coderabbitai bot commented Jun 18, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need help? Join our Discord community for assistance with any issues or questions.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 19, 2025

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

@dependabot dependabot bot closed this Jun 19, 2025
@dependabot dependabot bot deleted the dependabot/go_modules/all-5dcb7f5af0 branch June 19, 2025 03:58
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants