Skip to content

Bump the gomod group across 1 directory with 9 updates#133

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/gomod-99241436a9
Open

Bump the gomod group across 1 directory with 9 updates#133
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/gomod-99241436a9

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 21, 2026

Copy link
Copy Markdown
Contributor

Bumps the gomod group with 6 updates in the / directory:

Package From To
github.com/mattn/go-sqlite3 1.14.47 1.14.48
github.com/rabbitmq/amqp091-go 1.12.0 1.13.0
go.etcd.io/etcd/api/v3 3.6.13 3.7.0
go.etcd.io/etcd/client/v3 3.6.13 3.7.0
go.etcd.io/etcd/server/v3 3.6.13 3.7.0
golang.org/x/crypto 0.53.0 0.54.0

Updates github.com/mattn/go-sqlite3 from 1.14.47 to 1.14.48

Release notes

Sourced from github.com/mattn/go-sqlite3's releases.

1.14.48

What's Changed

... (truncated)

Commits
  • 0cfec60 Merge pull request #1427 from mattn/sqlite-amalgamation-3053003
  • 603b1ba Upgrade SQLite to version 3053003
  • 3be2bdb Merge pull request #1426 from mattn/fix-load-extension-errmsg-leak
  • 7a3f560 Merge pull request #1425 from mattn/fix-trampoline-abi
  • a5fd1f6 Merge pull request #1424 from mattn/fix-preupdate-null-deref
  • 66371d2 Merge pull request #1423 from mattn/fix-open-error-leak
  • b55096d Merge pull request #1418 from mattn/add-coderabbit-config
  • fa5cf80 Merge pull request #1422 from mattn/fix-bind-unsupported-type
  • 08a4ce4 Add regression tests for bind error paths
  • ca77cf4 Merge pull request #1421 from mattn/fix-callback-named-types
  • Additional commits viewable in compare view

Updates github.com/rabbitmq/amqp091-go from 1.12.0 to 1.13.0

Release notes

Sourced from github.com/rabbitmq/amqp091-go's releases.

v1.13.0

What's Changed

Full Changelog: rabbitmq/amqp091-go@v1.12.0...v1.13.0

Changelog

Sourced from github.com/rabbitmq/amqp091-go's changelog.

v1.13.0 (2026-07-21)

Full Changelog

Implemented enhancements:

  • feat: skip-and-continue topology recovery with per-entity error surfacing #365 (suchitd)
  • Make TopologyRecoveryAllEnabled the default topology recovery mode #362 (suchitd)
  • feature: implement automatic topology recovery #357 (suchitd)

Fixed bugs:

  • Evict auto-delete queues and exchanges from topology store to prevent stale resurrection during recovery #368
  • Data race in Connection.shutdown between buffered listener send goroutine and close(listener) #360
  • fix: reject frames exceeding negotiated frame_max before allocation #369 (suchitd)
  • fix: prevent recursive channel recovery during connection reconnection #367 (suchitd)
  • fix: eliminate multiple data races in Channel and Connection operations #366 (suchitd)
  • fix: forget auto-delete topology on last consumer/binding removal #363 (suchitd)
  • fix: explicitly enforce TLS 1.2 minimum version in tlsConfigFromURI #355 (suchitd)
  • fix: return error when shortstr exceeds 255 bytes #354 (suchitd)
  • fix: enforce AMQP minimum frame size during negotiation #353 (suchitd)
  • fix: URL-encode TLS file paths in URI.String() query string #352 (suchitd)
  • Reject negative prefetch values in Qos #351 (suchitd)
  • fix: redact and zero out plaintext SASL credentials after handshake #350 (suchitd)
  • Avoid notifications blocking reader. #349 (MirahImage)
  • Return error when longstring too long. #347 (MirahImage)
  • Cap body pre-allocation to FrameMax. #346 (MirahImage)
  • Safely handle negative x- field length. #344 (MirahImage)

Merged pull requests:

  • chore(deps): bump actions/setup-go from 6 to 7 in the github-actions group #370 (dependabot[bot])
  • docs: update CLAUDE.md to document automatic recovery and new notify methods #359 (suchitd)
  • chore(deps): bump actions/cache from 5 to 6 in the github-actions group #358 (dependabot[bot])
  • chore(deps): bump actions/checkout from 6 to 7 in the github-actions group #356 (dependabot[bot])
Commits
  • d26d57e Release v1.13.0
  • df5953b Merge pull request #365 from rabbitmq/feature/topology-recovery-skip-failure-...
  • 80e7d1e refactor: extract Channel.reopenIfClosed, fix channel-id leak, add error context
  • 2219a1f fix: infinite recovery loop from skipped, permanently-failing topology entities
  • 3d42358 refactor: remove isRecoverable check in favor of unified recovery shunts
  • cb4e045 Enhance TopologyRecoveryEntity to work with bindings
  • d69d856 feat: skip-and-continue topology recovery with per-entity error surfacing
  • 1b0bfd8 chore(deps): bump actions/setup-go in the github-actions group (#370)
  • 08f7f63 fix: reject frames exceeding negotiated frame_max before allocation (#369)
  • 3a6c497 fix: eliminate multiple data races in Channel and Connection operations (#366)
  • Additional commits viewable in compare view

Updates go.etcd.io/etcd/api/v3 from 3.6.13 to 3.7.0

Release notes

Sourced from go.etcd.io/etcd/api/v3's releases.

v3.7.0

Please check out CHANGELOG for a full list of changes. And make sure to read upgrade guide before upgrading etcd (there may be breaking changes).

For installation guides, please check out operating etcd. Latest support status for common architectures and operating systems can be found at supported platforms.

Linux
ETCD_VER=v3.7.0
choose either URL
GOOGLE_URL=https://storage.googleapis.com/etcd
GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
DOWNLOAD_URL=${GOOGLE_URL}
rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test
curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
tar xzvf /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz -C /tmp/etcd-download-test --strip-components=1 --no-same-owner
rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
/tmp/etcd-download-test/etcd --version
/tmp/etcd-download-test/etcdctl version
/tmp/etcd-download-test/etcdutl version
start a local etcd server
/tmp/etcd-download-test/etcd
write,read to etcd
/tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 put foo bar
/tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 get foo

macOS (Darwin)
ETCD_VER=v3.7.0
choose either URL
GOOGLE_URL=https://storage.googleapis.com/etcd
GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
DOWNLOAD_URL=${GOOGLE_URL}
rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test
curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-darwin-amd64.zip -o /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
unzip /tmp/etcd-${ETCD_VER}-darwin-amd64.zip -d /tmp && rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
mv /tmp/etcd-${ETCD_VER}-darwin-amd64/* /tmp/etcd-download-test && rm -rf mv /tmp/etcd-${ETCD_VER}-darwin-amd64
</tr></table>

... (truncated)

Commits
  • 4d71f7c version: bump up to 3.7.0
  • b4bbb7c Merge pull request #22058 from ivanvc/release-3.7-go-1.26.5-bump
  • 2d6d9a0 Bump go toolchain to 1.26.5
  • e1fd700 Merge pull request #22031 from ivanvc/release-3.7-x-net-bump-to-0.55.0
  • f2280ae dependency: bump golang.org/x/net from 0.54.0 to 0.55.0
  • 7a64574 Merge pull request #22024 from ahrtr/20260701_crl_3.7
  • d227a3c Reject the client request if the client certificate has been revoked
  • 18f048e Merge pull request #22009 from ahrtr/20260629_deps_3.7
  • 721e394 Bump go.etcd.io/raft/v3 to v3.7.0
  • b0a329a Bump go.etcd.io/bbolt to v1.5.0
  • Additional commits viewable in compare view

Updates go.etcd.io/etcd/client/v3 from 3.6.13 to 3.7.0

Release notes

Sourced from go.etcd.io/etcd/client/v3's releases.

v3.7.0

Please check out CHANGELOG for a full list of changes. And make sure to read upgrade guide before upgrading etcd (there may be breaking changes).

For installation guides, please check out operating etcd. Latest support status for common architectures and operating systems can be found at supported platforms.

Linux
ETCD_VER=v3.7.0
choose either URL
GOOGLE_URL=https://storage.googleapis.com/etcd
GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
DOWNLOAD_URL=${GOOGLE_URL}
rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test
curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
tar xzvf /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz -C /tmp/etcd-download-test --strip-components=1 --no-same-owner
rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
/tmp/etcd-download-test/etcd --version
/tmp/etcd-download-test/etcdctl version
/tmp/etcd-download-test/etcdutl version
start a local etcd server
/tmp/etcd-download-test/etcd
write,read to etcd
/tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 put foo bar
/tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 get foo

macOS (Darwin)
ETCD_VER=v3.7.0
choose either URL
GOOGLE_URL=https://storage.googleapis.com/etcd
GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
DOWNLOAD_URL=${GOOGLE_URL}
rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test
curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-darwin-amd64.zip -o /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
unzip /tmp/etcd-${ETCD_VER}-darwin-amd64.zip -d /tmp && rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
mv /tmp/etcd-${ETCD_VER}-darwin-amd64/* /tmp/etcd-download-test && rm -rf mv /tmp/etcd-${ETCD_VER}-darwin-amd64
</tr></table>

... (truncated)

Commits
  • 4d71f7c version: bump up to 3.7.0
  • b4bbb7c Merge pull request #22058 from ivanvc/release-3.7-go-1.26.5-bump
  • 2d6d9a0 Bump go toolchain to 1.26.5
  • e1fd700 Merge pull request #22031 from ivanvc/release-3.7-x-net-bump-to-0.55.0
  • f2280ae dependency: bump golang.org/x/net from 0.54.0 to 0.55.0
  • 7a64574 Merge pull request #22024 from ahrtr/20260701_crl_3.7
  • d227a3c Reject the client request if the client certificate has been revoked
  • 18f048e Merge pull request #22009 from ahrtr/20260629_deps_3.7
  • 721e394 Bump go.etcd.io/raft/v3 to v3.7.0
  • b0a329a Bump go.etcd.io/bbolt to v1.5.0
  • Additional commits viewable in compare view

Updates go.etcd.io/etcd/server/v3 from 3.6.13 to 3.7.0

Release notes

Sourced from go.etcd.io/etcd/server/v3's releases.

v3.7.0

Please check out CHANGELOG for a full list of changes. And make sure to read upgrade guide before upgrading etcd (there may be breaking changes).

For installation guides, please check out operating etcd. Latest support status for common architectures and operating systems can be found at supported platforms.

Linux
ETCD_VER=v3.7.0
choose either URL
GOOGLE_URL=https://storage.googleapis.com/etcd
GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
DOWNLOAD_URL=${GOOGLE_URL}
rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test
curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
tar xzvf /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz -C /tmp/etcd-download-test --strip-components=1 --no-same-owner
rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
/tmp/etcd-download-test/etcd --version
/tmp/etcd-download-test/etcdctl version
/tmp/etcd-download-test/etcdutl version
start a local etcd server
/tmp/etcd-download-test/etcd
write,read to etcd
/tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 put foo bar
/tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 get foo

macOS (Darwin)
ETCD_VER=v3.7.0
choose either URL
GOOGLE_URL=https://storage.googleapis.com/etcd
GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
DOWNLOAD_URL=${GOOGLE_URL}
rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test
curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-darwin-amd64.zip -o /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
unzip /tmp/etcd-${ETCD_VER}-darwin-amd64.zip -d /tmp && rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
mv /tmp/etcd-${ETCD_VER}-darwin-amd64/* /tmp/etcd-download-test && rm -rf mv /tmp/etcd-${ETCD_VER}-darwin-amd64
</tr></table>

... (truncated)

Commits
  • 4d71f7c version: bump up to 3.7.0
  • b4bbb7c Merge pull request #22058 from ivanvc/release-3.7-go-1.26.5-bump
  • 2d6d9a0 Bump go toolchain to 1.26.5
  • e1fd700 Merge pull request #22031 from ivanvc/release-3.7-x-net-bump-to-0.55.0
  • f2280ae dependency: bump golang.org/x/net from 0.54.0 to 0.55.0
  • 7a64574 Merge pull request #22024 from ahrtr/20260701_crl_3.7
  • d227a3c Reject the client request if the client certificate has been revoked
  • 18f048e Merge pull request #22009 from ahrtr/20260629_deps_3.7
  • 721e394 Bump go.etcd.io/raft/v3 to v3.7.0
  • b0a329a Bump go.etcd.io/bbolt to v1.5.0
  • Additional commits viewable in compare view

Updates golang.org/x/crypto from 0.53.0 to 0.54.0

Commits
  • cdce021 go.mod: update golang.org/x dependencies
  • d9474cc openpgp: make the deprecation message more explicit
  • 7626c50 ssh: verify declared key type matches decoded key in authorized_keys
  • 0471e79 ssh/agent: enforce strict limits on DSA key parameters
  • 6435c37 ssh: sanitize client disconnect messages
  • 7d695da ssh/agent: drain channel stderr in agent forwarders
  • 5b7f841 acme/autocert: fix data race in Manager.createCert
  • 0b316e7 argon2: update RFC 9106 parameter recommendations
  • 55aec0a x509roots/fallback: update bundle
  • 5f2de1a internal: remove wycheproof tests
  • See full diff in compare view

Updates golang.org/x/sync from 0.21.0 to 0.22.0

Commits

Updates golang.org/x/sys from 0.46.0 to 0.47.0

Commits
  • 9e7e939 cpu: handle vendor suffixes in parseRelease
  • f6fb8a1 unix: use epoll_pwait rather than epoll_wait
  • f3eeabf windows: avoid length overflow in NewNTString
  • 3cb6647 unix: update glibc to 2.43
  • c507910 windows: document safe usage of TrusteeValue
  • See full diff in compare view

Updates golang.org/x/text from 0.39.0 to 0.40.0

Commits
  • 724af9c go.mod: update golang.org/x dependencies
  • bf5b9d6 internal/export/idna: always treat Punycode encoding pure ASCII as an error
  • See full diff in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the gomod group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/mattn/go-sqlite3](https://github.com/mattn/go-sqlite3) | `1.14.47` | `1.14.48` |
| [github.com/rabbitmq/amqp091-go](https://github.com/rabbitmq/amqp091-go) | `1.12.0` | `1.13.0` |
| [go.etcd.io/etcd/api/v3](https://github.com/etcd-io/etcd) | `3.6.13` | `3.7.0` |
| [go.etcd.io/etcd/client/v3](https://github.com/etcd-io/etcd) | `3.6.13` | `3.7.0` |
| [go.etcd.io/etcd/server/v3](https://github.com/etcd-io/etcd) | `3.6.13` | `3.7.0` |
| [golang.org/x/crypto](https://github.com/golang/crypto) | `0.53.0` | `0.54.0` |



Updates `github.com/mattn/go-sqlite3` from 1.14.47 to 1.14.48
- [Release notes](https://github.com/mattn/go-sqlite3/releases)
- [Commits](mattn/go-sqlite3@v1.14.47...v1.14.48)

Updates `github.com/rabbitmq/amqp091-go` from 1.12.0 to 1.13.0
- [Release notes](https://github.com/rabbitmq/amqp091-go/releases)
- [Changelog](https://github.com/rabbitmq/amqp091-go/blob/main/CHANGELOG.md)
- [Commits](rabbitmq/amqp091-go@v1.12.0...v1.13.0)

Updates `go.etcd.io/etcd/api/v3` from 3.6.13 to 3.7.0
- [Release notes](https://github.com/etcd-io/etcd/releases)
- [Commits](etcd-io/etcd@v3.6.13...v3.7.0)

Updates `go.etcd.io/etcd/client/v3` from 3.6.13 to 3.7.0
- [Release notes](https://github.com/etcd-io/etcd/releases)
- [Commits](etcd-io/etcd@v3.6.13...v3.7.0)

Updates `go.etcd.io/etcd/server/v3` from 3.6.13 to 3.7.0
- [Release notes](https://github.com/etcd-io/etcd/releases)
- [Commits](etcd-io/etcd@v3.6.13...v3.7.0)

Updates `golang.org/x/crypto` from 0.53.0 to 0.54.0
- [Commits](golang/crypto@v0.53.0...v0.54.0)

Updates `golang.org/x/sync` from 0.21.0 to 0.22.0
- [Commits](golang/sync@v0.21.0...v0.22.0)

Updates `golang.org/x/sys` from 0.46.0 to 0.47.0
- [Commits](golang/sys@v0.46.0...v0.47.0)

Updates `golang.org/x/text` from 0.39.0 to 0.40.0
- [Release notes](https://github.com/golang/text/releases)
- [Commits](golang/text@v0.39.0...v0.40.0)

---
updated-dependencies:
- dependency-name: github.com/mattn/go-sqlite3
  dependency-version: 1.14.48
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod
- dependency-name: github.com/rabbitmq/amqp091-go
  dependency-version: 1.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: go.etcd.io/etcd/api/v3
  dependency-version: 3.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: go.etcd.io/etcd/client/v3
  dependency-version: 3.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: go.etcd.io/etcd/server/v3
  dependency-version: 3.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: golang.org/x/crypto
  dependency-version: 0.54.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: golang.org/x/sync
  dependency-version: 0.22.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: golang.org/x/sys
  dependency-version: 0.47.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: golang.org/x/text
  dependency-version: 0.40.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels Jul 21, 2026
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant