Skip to content

chore(deps): bump the dependencies group with 15 updates#312

Merged
github-actions[bot] merged 1 commit intomasterfrom
dependabot/go_modules/dependencies-84fc3ab640
Jan 1, 2026
Merged

chore(deps): bump the dependencies group with 15 updates#312
github-actions[bot] merged 1 commit intomasterfrom
dependabot/go_modules/dependencies-84fc3ab640

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Jan 1, 2026

Bumps the dependencies group with 15 updates:

Package From To
github.com/bits-and-blooms/bitset 1.24.3 1.24.4
github.com/moby/moby 28.5.1+incompatible 28.5.2+incompatible
go.etcd.io/etcd/api/v3 3.6.5 3.6.7
go.etcd.io/etcd/client/v3 3.6.5 3.6.7
golang.org/x/sys 0.37.0 0.39.0
google.golang.org/grpc 1.76.0 1.78.0
github.com/Scalingo/logrus-rollbar 1.4.2 1.4.3
github.com/grpc-ecosystem/grpc-gateway/v2 2.27.3 2.27.4
go.etcd.io/etcd/client/pkg/v3 3.6.5 3.6.7
go.uber.org/zap 1.27.0 1.27.1
golang.org/x/net 0.46.0 0.47.0
golang.org/x/text 0.30.0 0.32.0
google.golang.org/genproto/googleapis/api 0.0.0-20250929231259-57b25ae835d4 0.0.0-20251222181119-0a764e51fe1b
google.golang.org/genproto/googleapis/rpc 0.0.0-20250929231259-57b25ae835d4 0.0.0-20251222181119-0a764e51fe1b
google.golang.org/protobuf 1.36.10 1.36.11

Updates github.com/bits-and-blooms/bitset from 1.24.3 to 1.24.4

Release notes

Sourced from github.com/bits-and-blooms/bitset's releases.

Version 1.24.4

What's Changed

Full Changelog: bits-and-blooms/bitset@v1.24.3...v1.24.4

Commits
  • 8c1b8bc Merge pull request #213 from whisk/fix/ShiftRight-pages-zeroing
  • f0f8af2 fixed panic in ShiftRight when zeroing pages for the happy case
  • See full diff in compare view

Updates github.com/moby/moby from 28.5.1+incompatible to 28.5.2+incompatible

Release notes

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

v28.5.2

28.5.2

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

[!CAUTION] This release contains fixes for three high-severity security vulnerabilities in runc:

All three vulnerabilities ultimately allow (through different methods) for full container breakouts by bypassing runc's restrictions for writing to arbitrary /proc files.

Packaging updates

Bug fixes and enhancements

Deprecations

  • Go-SDK: cli/command/image/build: deprecate DefaultDockerfileName, DetectArchiveReader, WriteTempDockerfile, ResolveAndValidateContextPath. These utilities were only used internally and will be removed in the next release. docker/cli#6610
  • Go-SDK: cli/command/image/build: deprecate IsArchive utility. docker/cli#6560
  • Go-SDK: opts: deprecate ValidateMACAddress. docker/cli#6560
  • Go-SDK: opts: deprecate ListOpts.Delete(). docker/cli#6560
Commits
  • 89c5e8f Merge pull request #51396 from thaJeztah/28.x_backport_api_docs
  • 9b93878 Merge pull request #51395 from thaJeztah/28.x_backport_rootless_reject
  • 6178456 Merge pull request #51398 from vvoland/51397-28.x
  • 0cae4e5 vendor: github.com/moby/buildkit v0.25.2
  • 33cc06f Merge pull request #51394 from vvoland/51393-28.x
  • d525277 api/docs: remove BuildCache.Parent field for API v1.42 and up
  • 2fbc51b dockerd-rootless.sh: reject DOCKERD_ROOTLESS_ROOTLESSKIT_NET=host
  • bd98008 integration-cli: Adjust nofile limits
  • 1967515 Dockerfile: update runc binary to v1.3.3
  • 4489660 Merge pull request #51387 from thaJeztah/28.x_bump_go
  • Additional commits viewable in compare view

Updates go.etcd.io/etcd/api/v3 from 3.6.5 to 3.6.7

Release notes

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

v3.6.7

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 play.etcd.io and operating etcd. Latest support status for common architectures and operating systems can be found at supported platforms.

Linux
ETCD_VER=v3.6.7
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.6.7
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
  • e838ef1 version: bump up to 3.6.7
  • 6bfd01c Merge pull request #21024 from ivanvc/release-3.6-x-net-0.45.0
  • 61af088 dependency: Bump golang.org/x/net from 0.38.0 to 0.45.0
  • dbaf5cf Merge pull request #20998 from hwdef/release36-bump-go-12411
  • 97141e1 Bump go to 1.24.11
  • f185ce6 Merge pull request #20941 from ahrtr/20251117_tokens_3.6
  • 554dc70 Print token fingerprint instead of the original tokens in log messages
  • d2809cf version: bump up to 3.6.6
  • 0745315 Merge pull request #20905 from k8s-infra-cherrypick-robot/cherry-pick-20887-t...
  • 145d927 v3rpc: add and use getServerMetrics() with global metricsServerCached
  • Additional commits viewable in compare view

Updates go.etcd.io/etcd/client/v3 from 3.6.5 to 3.6.7

Release notes

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

v3.6.7

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 play.etcd.io and operating etcd. Latest support status for common architectures and operating systems can be found at supported platforms.

Linux
ETCD_VER=v3.6.7
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.6.7
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
  • e838ef1 version: bump up to 3.6.7
  • 6bfd01c Merge pull request #21024 from ivanvc/release-3.6-x-net-0.45.0
  • 61af088 dependency: Bump golang.org/x/net from 0.38.0 to 0.45.0
  • dbaf5cf Merge pull request #20998 from hwdef/release36-bump-go-12411
  • 97141e1 Bump go to 1.24.11
  • f185ce6 Merge pull request #20941 from ahrtr/20251117_tokens_3.6
  • 554dc70 Print token fingerprint instead of the original tokens in log messages
  • d2809cf version: bump up to 3.6.6
  • 0745315 Merge pull request #20905 from k8s-infra-cherrypick-robot/cherry-pick-20887-t...
  • 145d927 v3rpc: add and use getServerMetrics() with global metricsServerCached
  • Additional commits viewable in compare view

Updates golang.org/x/sys from 0.37.0 to 0.39.0

Commits
  • 08e5482 unix: fix out of bounds memory access in tests
  • 4f4f1c6 Revert "cpu: add HPDS, LOR, PAN detection for arm64"
  • ca63116 unix: add IOCTL_MEI_* constants
  • a4199c0 unix: fix definition of Statvfs_t for netbsd-arm.
  • 15129aa cpu: also use MRS instruction in getmmfr1
  • ed38ca2 unix: add SizeofNhmsg and SizeofNexthopGrp
  • 3675c4c cpu: use MRS instruction to read arm64 system registers
  • 2a15272 unix: add consts for ELF handling
  • 6239615 cpu: add HPDS, LOR, PAN detection for arm64
  • ea436ef windows: add iphlpapi routing functions
  • Additional commits viewable in compare view

Updates google.golang.org/grpc from 1.76.0 to 1.78.0

Release notes

Sourced from google.golang.org/grpc's releases.

Release 1.78.0

Behavior Changes

  • client: Reject target URLs containing unbracketed colons in the hostname in Go version 1.26+. (#8716)

New Features

  • stats/otel: Add backend service label to wrr metrics as part of A89. (#8737)
  • stats/otel: Add subchannel metrics (without the disconnection reason) to eventually replace the pickfirst metrics. (#8738)
  • client: Wait for all pending goroutines to complete when closing a graceful switch balancer. (#8746)

Bug Fixes

  • transport/client : Return status code Unknown on malformed grpc-status. (#8735)
  • client: Add experimental.AcceptCompressors so callers can restrict the grpc-accept-encoding header advertised for a call. (#8718)
  • xds: Fix a bug in StringMatcher where regexes would match incorrectly when ignore_case is set to true. (#8723)
  • xds/resolver:
    • Drop previous route resources and report an error when no matching virtual host is found.
    • Only log LDS/RDS configuration errors following a successful update and retain the last valid resource to prevent transient failures. (#8711)
  • client:
    • Change connectivity state to CONNECTING when creating the name resolver (as part of exiting IDLE).
    • Change connectivity state to TRANSIENT_FAILURE if name resolver creation fails (as part of exiting IDLE).
    • Change connectivity state to IDLE after idle timeout expires even when current state is TRANSIENT_FAILURE.
    • Fix a bug that resulted in OnFinish call option not being invoked for RPCs where stream creation failed. (#8710)
  • xdsclient: Fix a race in the xdsClient that could lead to resource-not-found errors. (#8627)

Performance Improvements

  • mem: Round up to nearest 4KiB for pool allocations larger than 1MiB. (#8705)

Release 1.77.0

API Changes

  • mem: Replace the Reader interface with a struct for better performance and maintainability. (#8669)

Behavior Changes

  • balancer/pickfirst: Remove support for the old pick_first LB policy via the environment variable GRPC_EXPERIMENTAL_ENABLE_NEW_PICK_FIRST=false. The new pick_first has been the default since v1.71.0. (#8672)

Bug Fixes

  • xdsclient: Fix a race condition in the ADS stream implementation that could result in resource-not-found errors, causing the gRPC client channel to move to TransientFailure. (#8605)
  • client: Ignore HTTP status header for gRPC streams. (#8548)
  • client: Set a read deadline when closing a transport to prevent it from blocking indefinitely on a broken connection. (#8534)

... (truncated)

Commits
  • 9df039e Change version to 1.78.0 (#8761)
  • 9b990b6 gracefulswitch: Wait for all goroutines on close (#8746)
  • 6677d9a xds: Fixing a typo (#8760)
  • d35cedd xds/resolver: pass route's auto_host_rewrite to LB picker (gRFC A81) (#8740)
  • d931fdc client: allow overriding grpc-accept-encoding header (#8718)
  • 0800ec7 xds/clusterimpl: update TestChildPolicyChangeOnConfigUpdate to use custom lb ...
  • 6553ea1 stats/otel: Add subchannel metrics (A94) (#8738)
  • 81a00ce grpc: Fixing spelling typo (#8756)
  • e413838 client: Change connectivity state to CONNECTING when creating the name resolv...
  • f9d2bdb stats/otel: Add grpc.lb.backend_service label to wrr metrics (A89) (#8737)
  • Additional commits viewable in compare view

Updates github.com/Scalingo/logrus-rollbar from 1.4.2 to 1.4.3

Release notes

Sourced from github.com/Scalingo/logrus-rollbar's releases.

v1.4.3

What's Changed

New Contributors

Full Changelog: Scalingo/logrus-rollbar@v1.4.2...v1.4.3

Changelog

Sourced from github.com/Scalingo/logrus-rollbar's changelog.

1.4.3

  • chore(go): use go 1.24
  • chore(deps): bump all dependencies
Commits
  • 922fc20 Merge pull request #65 from Scalingo/release/1.4.3
  • 9e31c1d docs(readme): new release reviewer is IST
  • 4c2929b Bump v1.4.3
  • f1c44a2 Merge pull request #64 from Scalingo/dependabot/go_modules/dependencies-e345d...
  • 581f3c8 chore(deps): bump golang.org/x/sys in the dependencies group
  • a876804 Merge pull request #63 from Scalingo/build/STORY-2981/dependabot-automerge
  • 572fd7b build(workflows): use the Scalingo actions
  • 4403be5 Merge pull request #62 from Scalingo/dependabot/go_modules/dependencies-fc088...
  • 88d526d chore(deps): bump golang.org/x/sys in the dependencies group
  • 9e2052f Merge pull request #61 from Scalingo/dependabot/go_modules/dependencies-3babb...
  • Additional commits viewable in compare view

Updates github.com/grpc-ecosystem/grpc-gateway/v2 from 2.27.3 to 2.27.4

Release notes

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

v2.27.4

What's Changed

New Contributors

Full Changelog: grpc-ecosystem/grpc-gateway@v2.27.3...v2.27.4

Commits
  • 11fc3b8 fix(gengateway): correct body field decoding in opaque API mode (#6197)
  • 2cca0ef chore(deps): update googleapis digest to 60f1e6a (#6196)
  • c32ae8d fix(deps): update module google.golang.org/grpc to v1.78.0 (#6195)
  • 5cd2c52 chore(deps): update googleapis digest to ef6a532 (#6194)
  • 7506f3b fix(deps): update google.golang.org/genproto/googleapis/rpc digest to 0a764e5...
  • a895f47 fix(deps): update google.golang.org/genproto/googleapis/api digest to 0a764e5...
  • 4abd9dc chore(deps): update googleapis digest to 347b0e4 (#6190)
  • 01881e6 Add note about Authorization header forwarding (#6185)
  • e88e585 chore(deps): update googleapis digest to affadb6 (#6188)
  • 63ea9aa chore(deps): update googleapis digest to bc7e3ba (#6187)
  • Additional commits viewable in compare view

Updates go.etcd.io/etcd/client/pkg/v3 from 3.6.5 to 3.6.7

Release notes

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

v3.6.7

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 play.etcd.io and operating etcd. Latest support status for common architectures and operating systems can be found at supported platforms.

Linux
ETCD_VER=v3.6.7
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.6.7
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
  • e838ef1 version: bump up to 3.6.7
  • 6bfd01c Merge pull request #21024 from ivanvc/release-3.6-x-net-0.45.0
  • 61af088 dependency: Bump golang.org/x/net from 0.38.0 to 0.45.0
  • dbaf5cf Merge pull request #20998 from hwdef/release36-bump-go-12411
  • 97141e1 Bump go to 1.24.11
  • f185ce6 Merge pull request #20941 from ahrtr/20251117_tokens_3.6
  • 554dc70 Print token fingerprint instead of the original tokens in log messages
  • d2809cf version: bump up to 3.6.6
  • 0745315 Merge pull request #20905 from k8s-infra-cherrypick-robot/cherry-pick-20887-t...
  • 145d927 v3rpc: add and use getServerMetrics() with global metricsServerCached
  • Additional commits viewable in compare view

Updates go.uber.org/zap from 1.27.0 to 1.27.1

Release notes

Sourced from go.uber.org/zap's releases.

v1.27.1

Enhancements:

  • #1501[]: prevent Object from panicking on nils
  • #1511[]: Fix a race condition in WithLazy.

Thanks to @​rabbbit, @​alshopov, @​jquirke, @​arukiidou for their contributions to this release.

#1501: uber-go/zap#1501 #1511: uber-go/zap#1511

Changelog

Sourced from go.uber.org/zap's changelog.

1.27.1 (19 Nov 2025)

Enhancements:

  • #1501[]: prevent Object from panicking on nils
  • #1511[]: Fix a race condition in WithLazy.

Thanks to @​rabbbit, @​alshopov, @​jquirke, @​arukiidou for their contributions to this release.

#1501: uber-go/zap#1501 #1511: uber-go/zap#1511

Commits

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

Commits
  • 9a29643 go.mod: update golang.org/x dependencies
  • 07cefd8 context: deprecate
  • 5ac9dac publicsuffix: don't treat ip addresses as domain names
  • d1f64cc quic: use testing/synctest
  • fff0469 http2: document that RFC 7540 prioritization does not work with small payloads
  • f35e3a4 http2: fix weight overflow in RFC 7540 write scheduler
  • 89adc90 http2: fix typo referring to RFC 9218 as RFC 9128 instead
  • 8d76a2c quic: don't defer MAX_STREAMS frames indefinitely
  • 027f8b7 quic: fix expected ACK Delay in client's ACK after HANDSHAKE_DONE
  • dec9fe7 dns/dnsmessage: update SVCB packing to prohibit name compression
  • Additional commits viewable in compare view

Updates golang.org/x/text from 0.30.0 to 0.32.0

Commits
  • 0dd57a6 go.mod: update golang.org/x dependencies
  • 087616b transform: fix %q verb use with wrong type
  • 16f85a7 all: eliminate vet diagnostics
  • e7ff6b3 go.mod: update golang.org/x dependencies
  • fbf012b all: use reflect.TypeFor instead of reflect.TypeOf
  • See full diff in compare view

Updates google.golang.org/genproto/googleapis/api from 0.0.0-20250929231259-57b25ae835d4 to 0.0.0-20251222181119-0a764e51fe1b

Commits

Updates google.golang.org/genproto/googleapis/rpc from 0.0.0-20250929231259-57b25ae835d4 to 0.0.0-20251222181119-0a764e51fe1b

Commits

Updates google.golang.org/protobuf from 1.36.10 to 1.36.11

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
google.golang.org/grpc [>= 1.35.a, < 1.36]
google.golang.org/grpc [>= 1.36.a, < 1.37]
google.golang.org/grpc [>= 1.37.a, < 1.38]

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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 dependencies group with 15 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/bits-and-blooms/bitset](https://github.com/bits-and-blooms/bitset) | `1.24.3` | `1.24.4` |
| [github.com/moby/moby](https://github.com/moby/moby) | `28.5.1+incompatible` | `28.5.2+incompatible` |
| [go.etcd.io/etcd/api/v3](https://github.com/etcd-io/etcd) | `3.6.5` | `3.6.7` |
| [go.etcd.io/etcd/client/v3](https://github.com/etcd-io/etcd) | `3.6.5` | `3.6.7` |
| [golang.org/x/sys](https://github.com/golang/sys) | `0.37.0` | `0.39.0` |
| [google.golang.org/grpc](https://github.com/grpc/grpc-go) | `1.76.0` | `1.78.0` |
| [github.com/Scalingo/logrus-rollbar](https://github.com/Scalingo/logrus-rollbar) | `1.4.2` | `1.4.3` |
| [github.com/grpc-ecosystem/grpc-gateway/v2](https://github.com/grpc-ecosystem/grpc-gateway) | `2.27.3` | `2.27.4` |
| [go.etcd.io/etcd/client/pkg/v3](https://github.com/etcd-io/etcd) | `3.6.5` | `3.6.7` |
| [go.uber.org/zap](https://github.com/uber-go/zap) | `1.27.0` | `1.27.1` |
| [golang.org/x/net](https://github.com/golang/net) | `0.46.0` | `0.47.0` |
| [golang.org/x/text](https://github.com/golang/text) | `0.30.0` | `0.32.0` |
| [google.golang.org/genproto/googleapis/api](https://github.com/googleapis/go-genproto) | `0.0.0-20250929231259-57b25ae835d4` | `0.0.0-20251222181119-0a764e51fe1b` |
| [google.golang.org/genproto/googleapis/rpc](https://github.com/googleapis/go-genproto) | `0.0.0-20250929231259-57b25ae835d4` | `0.0.0-20251222181119-0a764e51fe1b` |
| google.golang.org/protobuf | `1.36.10` | `1.36.11` |


Updates `github.com/bits-and-blooms/bitset` from 1.24.3 to 1.24.4
- [Release notes](https://github.com/bits-and-blooms/bitset/releases)
- [Commits](bits-and-blooms/bitset@v1.24.3...v1.24.4)

Updates `github.com/moby/moby` from 28.5.1+incompatible to 28.5.2+incompatible
- [Release notes](https://github.com/moby/moby/releases)
- [Commits](moby/moby@v28.5.1...v28.5.2)

Updates `go.etcd.io/etcd/api/v3` from 3.6.5 to 3.6.7
- [Release notes](https://github.com/etcd-io/etcd/releases)
- [Commits](etcd-io/etcd@v3.6.5...v3.6.7)

Updates `go.etcd.io/etcd/client/v3` from 3.6.5 to 3.6.7
- [Release notes](https://github.com/etcd-io/etcd/releases)
- [Commits](etcd-io/etcd@v3.6.5...v3.6.7)

Updates `golang.org/x/sys` from 0.37.0 to 0.39.0
- [Commits](golang/sys@v0.37.0...v0.39.0)

Updates `google.golang.org/grpc` from 1.76.0 to 1.78.0
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.76.0...v1.78.0)

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

Updates `github.com/grpc-ecosystem/grpc-gateway/v2` from 2.27.3 to 2.27.4
- [Release notes](https://github.com/grpc-ecosystem/grpc-gateway/releases)
- [Commits](grpc-ecosystem/grpc-gateway@v2.27.3...v2.27.4)

Updates `go.etcd.io/etcd/client/pkg/v3` from 3.6.5 to 3.6.7
- [Release notes](https://github.com/etcd-io/etcd/releases)
- [Commits](etcd-io/etcd@v3.6.5...v3.6.7)

Updates `go.uber.org/zap` from 1.27.0 to 1.27.1
- [Release notes](https://github.com/uber-go/zap/releases)
- [Changelog](https://github.com/uber-go/zap/blob/master/CHANGELOG.md)
- [Commits](uber-go/zap@v1.27.0...v1.27.1)

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

Updates `golang.org/x/text` from 0.30.0 to 0.32.0
- [Release notes](https://github.com/golang/text/releases)
- [Commits](golang/text@v0.30.0...v0.32.0)

Updates `google.golang.org/genproto/googleapis/api` from 0.0.0-20250929231259-57b25ae835d4 to 0.0.0-20251222181119-0a764e51fe1b
- [Commits](https://github.com/googleapis/go-genproto/commits)

Updates `google.golang.org/genproto/googleapis/rpc` from 0.0.0-20250929231259-57b25ae835d4 to 0.0.0-20251222181119-0a764e51fe1b
- [Commits](https://github.com/googleapis/go-genproto/commits)

Updates `google.golang.org/protobuf` from 1.36.10 to 1.36.11

---
updated-dependencies:
- dependency-name: github.com/bits-and-blooms/bitset
  dependency-version: 1.24.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: github.com/moby/moby
  dependency-version: 28.5.2+incompatible
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: go.etcd.io/etcd/api/v3
  dependency-version: 3.6.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: go.etcd.io/etcd/client/v3
  dependency-version: 3.6.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: golang.org/x/sys
  dependency-version: 0.39.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: google.golang.org/grpc
  dependency-version: 1.78.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: github.com/Scalingo/logrus-rollbar
  dependency-version: 1.4.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: github.com/grpc-ecosystem/grpc-gateway/v2
  dependency-version: 2.27.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: go.etcd.io/etcd/client/pkg/v3
  dependency-version: 3.6.7
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: go.uber.org/zap
  dependency-version: 1.27.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: golang.org/x/net
  dependency-version: 0.47.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: golang.org/x/text
  dependency-version: 0.32.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: google.golang.org/genproto/googleapis/api
  dependency-version: 0.0.0-20251222181119-0a764e51fe1b
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: google.golang.org/genproto/googleapis/rpc
  dependency-version: 0.0.0-20251222181119-0a764e51fe1b
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: google.golang.org/protobuf
  dependency-version: 1.36.11
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

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 Jan 1, 2026
@dependabot dependabot Bot requested a review from a team as a code owner January 1, 2026 11:02
@dependabot dependabot Bot requested review from curzolapierre and removed request for a team January 1, 2026 11:02
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Jan 1, 2026
@github-actions github-actions Bot enabled auto-merge January 1, 2026 11:02
@github-actions github-actions Bot merged commit 62107da into master Jan 1, 2026
5 checks passed
@github-actions github-actions Bot deleted the dependabot/go_modules/dependencies-84fc3ab640 branch January 1, 2026 11:03
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.

0 participants