Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Oct 10, 2025

Bumps the go_modules group with 4 updates in the / directory: github.com/docker/docker, github.com/go-acme/lego/v4, github.com/quic-go/quic-go and github.com/containerd/containerd.

Updates github.com/docker/docker from 27.1.1+incompatible to 28.0.0+incompatible

Release notes

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

v28.0.0

28.0.0

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

New

  • Add ability to mount an image inside a container via --mount type=image. moby/moby#48798
    • You can also specify --mount type=image,image-subpath=[subpath],... option to mount a specific path from the image. docker/cli#5755
  • docker images --tree now shows metadata badges. docker/cli#5744
  • docker load, docker save, and docker history now support a --platform flag allowing you to choose a specific platform for single-platform operations on multi-platform images. docker/cli#5331
  • Add OOMScoreAdj to docker service create and docker stack. docker/cli#5145
  • docker buildx prune now supports reserved-space, max-used-space, min-free-space and keep-bytes filters. moby/moby#48720
  • Windows: Add support for running containerd as a child process of the daemon, instead of using a system-installed containerd. moby/moby#47955

Networking

  • The docker-proxy binary has been updated, older versions will not work with the updated dockerd. moby/moby#48132
    • Close a window in which the userland proxy (docker-proxy) could accept TCP connections, that would then fail after iptables NAT rules were set up.
    • The executable rootlesskit-docker-proxy is no longer used, it has been removed from the build and distribution.
  • DNS nameservers read from the host's /etc/resolv.conf are now always accessed from the host's network namespace. moby/moby#48290
    • When the host's /etc/resolv.conf contains no nameservers and there are no --dns overrides, Google's DNS servers are no longer used, apart from by the default bridge network and in build containers.
  • Container interfaces in bridge and macvlan networks now use randomly generated MAC addresses. moby/moby#48808
    • Gratuitous ARP / Neighbour Advertisement messages will be sent when the interfaces are started so that, when IP addresses are reused, they're associated with the newly generated MAC address.
    • IPv6 addresses in the default bridge network are now IPAM-assigned, rather than being derived from the MAC address.
  • The deprecated OCI prestart hook is now only used by build containers. For other containers, network interfaces are added to the network namespace after task creation is complete, before the container task is started. moby/moby#47406
  • Add a new gw-priority option to docker run, docker container create, and docker network connect. This option will be used by the Engine to determine which network provides the default gateway for a container. On docker run, this option is only available through the extended --network syntax. docker/cli#5664
  • Add a new netlabel com.docker.network.endpoint.ifname to customize the interface name used when connecting a container to a network. It's supported by all built-in network drivers on Linux. moby/moby#49155
    • When a container is created with multiple networks specified, there's no guarantee on the order networks will be connected to the container. So, if a custom interface name uses the same prefix as the auto-generated names, for example eth, the container might fail to start.
    • The recommended practice is to use a different prefix, for example en0, or a numerical suffix high enough to never collide, for example eth100.
    • This label can be specified on docker network connect via the --driver-opt flag, for example docker network connect --driver-opt=com.docker.network.endpoint.ifname=foobar ….
    • Or via the long-form --network flag on docker run, for example docker run --network=name=bridge,driver-opt=com.docker.network.endpoint.ifname=foobar …
  • If a custom network driver reports capability GwAllocChecker then, before a network is created, it will get a GwAllocCheckerRequest with the network's options. The custom driver may then reply that no gateway IP address should be allocated. moby/moby#49372

Port publishing in bridge networks

  • dockerd now requires ipset support in the Linux kernel. moby/moby#48596
    • The iptables and ip6tables rules used to implement port publishing and network isolation have been extensively modified. This enables some of the following functional changes, and is a first step in refactoring to enable native nftables support in a future release. moby/moby#48815
    • If it becomes necessary to downgrade to an earlier version of the daemon, some manual cleanup of the new rules will be necessary. The simplest and surest approach is to reboot the host, or use iptables -F and ip6tables -F to flush all existing iptables rules from the filter table before starting the older version of the daemon. When that is not possible, run the following commands as root:
      • iptables -D FORWARD -m set --match-set docker-ext-bridges-v4 dst -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT; ip6tables -D FORWARD -m set --match-set docker-ext-bridges-v6 dst -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
      • iptables -D FORWARD -m set --match-set docker-ext-bridges-v4 dst -j DOCKER; ip6tables -D FORWARD -m set --match-set docker-ext-bridges-v6 dst -j DOCKER
      • If you were previously running with the iptables filter-FORWARD policy set to ACCEPT and need to restore access to unpublished ports, also delete per-bridge-network rules from the DOCKER chains. For example, iptables -D DOCKER ! -i docker0 -o docker0 -j DROP.
  • Fix a security issue that was allowing remote hosts to connect directly to a container on its published ports. moby/moby#49325
  • Fix a security issue that was allowing neighbor hosts to connect to ports mapped on a loopback address. moby/moby#49325

... (truncated)

Commits
  • af898ab Merge pull request #49495 from vvoland/update-buildkit
  • d67f035 vendor: github.com/moby/buildkit v0.20.0
  • 00ab386 Merge pull request #49491 from vvoland/update-buildkit
  • 1fde8c4 builder-next: fix cdi manager
  • cde9f07 vendor: github.com/moby/buildkit v0.20.0-rc3
  • 89e1429 Merge pull request #49490 from thaJeztah/dockerfile_linting
  • b2b5590 Dockerfile: fix linting warnings
  • 62bc597 Merge pull request #49480 from thaJeztah/docs_api_1.48
  • 670cd81 Merge pull request #49485 from vvoland/c8d-list-panic
  • a3628f3 docs/api: add documentation for API v1.48
  • Additional commits viewable in compare view

Updates github.com/go-acme/lego/v4 from 4.21.0 to 4.25.2

Release notes

Sourced from github.com/go-acme/lego/v4's releases.

v4.25.2

Changelog

  • c689b20fee2f107f88668a78b9b7a3d039559621 feat: log when dynamic renew date not yet reached (#2597)
  • 238454b5f74f3cfcbb244ff0d0dc914a4ad44b96 fix: enforce HTTPS to the ACME server (#2608)
  • 137ad86fa408a4eaa3a93965416b7b48db893d62 fix: remove wrong env var (#2600)
  • 756d5ade0ec53a78e0d189fb89f455c610e918aa tests: change the signature of the method BuildHTTPS (#2611)
  • fc21d23f7f15b11bdc0eb4583137e24643d05e83 tests: clean up code (#2612)
  • 4d2dc643640160e8d62b1c58a932506d93c88411 tests: simplify fake DNS server (rfc2136) (#2609)
  • b4ddc1e5e2967c1fb3e59e09276d030c3e2baee4 tests: use better test domains (#2603)

v4.25.1

Changelog

  • 833d3b814731e33cbc01b365a7aab8baadf2d397 fix: wrong CLI flag type (#2595)

v4.25.0

The binary size of this release is about ~50% smaller compared to previous releases.

This will also reduce the module cache usage by 320 MB (this will only affect users of lego as a library or who build lego themselves).

Changelog

  • b8beddc2675e4d240e737283d5a75a52d8f01405 Add DNS provider for ZoneEdit (#2578)
  • 79f496e11c50dce050fae065617d791f0012f5c9 alidns: replace alidns-20150109 with a fork (#2589)
  • 96b18d764dced95d9cb4d0142e2c684d73c974fb feat: add option to define dynamically the renew date (#2574)
  • 40baed291cb36bc1f13d64fbc56d618c90872fb3 feat: add option to disable common name in CSR (#2570)
  • bfa487cc48353077a8ffd94ab2a51e3fa361ad2a fix: enforce domain into renewal command (#2576)
  • cb602702d26ca5ac0079c0f277550b7d4e85069b huaweicloud: lightweight client (#2591)
  • d9bba80a19a6e957781d2fde7e93f4a1a789b5b9 ionos: increase default propagation timeout (#2569)
  • d0008c42f5e05e4daf44da3feb11f50ca1b61403 tencentcloud: replace tencentcloud-sdk-go with a fork (#2588)
  • 52e167c93000c231979692f5ae28ec71feda2f50 test: server client mock (#2571)
  • 0eac4b3dda66935f8a538ffca08d596a7b55a848 tests: improve function naming (#2586)
  • fae73fdc5ddcc67fc0f7a4f457671278efa0eb2b vinyldns: add an option to add quotes around the TXT record value (#2580)

v4.24.0

I hope you enjoyed my work. Please consider donating or asking your company to do so. This will be appreciated, thank you ❤️

https://donate.ldez.dev/

Changelog

  • 6ecdde77f0172cbfce33b37251b56d1f9b1b60e1 Add DNS provider for Azion (#2550)
  • b82e6d88e418ef209044c710ded14dae52159f25 Add DNS provider for ConoHa v3 (#2516)
  • 7571c0bd314855a0bdb61a7bbfd7fd9921826070 Add DNS provider for DynDnsFree.de (#2540)
  • 65608d8bbff21776699e9c89c818c45f037f56fd Add DNS provider for RU Center (#1892)
  • 1fecd31d3d5a8adede4053ce6a0d3a4bfc38d9f5 alidns: migrate to SDK v2 (#2558)
  • b28d1ac67a52b0ea7ef643bc8a821e1b024184b5 azion: add pagination support (#2555)
  • 17c65de6e77a04391c8b3024e8c1780b58443f4d azion: improve zone lookup (#2564)
  • d6df9462231fbea5ed4b42473a09613afd158592 cloudflare: add quotation marks to TXT record (#2521)
  • 476f9ed9100ed25d7a4c37eb6946d7831e3a9e09 docs(cPanel): fix examples (#2529)

... (truncated)

Changelog

Sourced from github.com/go-acme/lego/v4's changelog.

v4.25.2 (2025-08-06)

Changed

  • [cli,log] log when dynamic renew date not yet reached

Fixed

  • [cli] fix: remove wrong env var
  • [lib,cli] fix: enforce HTTPS to the ACME server

v4.25.1 (2025-07-21)

Fixed

  • [cli] fix: wrong CLI flag type

v4.25.0 (2025-07-21)

The binary size of this release is about ~50% smaller compared to previous releases.

This will also reduce the module cache usage by 320 MB (this will only affect users of lego as a library or who build lego themselves).

Added

  • [dnsprovider] Add DNS provider for ZoneEdit
  • [cli] Add an option to define dynamically the renew date
  • [lib,cli] Add an option to disable common name in CSR

Changed

  • [dnsprovider] vinyldns: add an option to add quotes around the TXT record value
  • [dnsprovider] ionos: increase default propagation timeout

Fixed

  • [cli] fix: enforce domain into renewal command

v4.24.0 (2025-07-07)

Added

  • [dnsprovider] Add DNS provider for Azion
  • [dnsprovider] Add DNS provider for DynDnsFree.de
  • [dnsprovider] Add DNS provider for ConoHa v3
  • [dnsprovider] Add DNS provider for RU Center
  • [dnsprovider] gcloud: add service account impersonation

Changed

... (truncated)

Commits

Updates github.com/quic-go/quic-go from 0.48.2 to 0.49.1

Release notes

Sourced from github.com/quic-go/quic-go's releases.

v0.49.0

In this release, we added support for HTTP client traces. We also fixed a large number of bugs that could lead to connection stalls, deadlocks and memory leaks. See the "Major Fixes" section for more details.

New Features

  • http3: add support for client traces net/http/httptrace.ClientTrace: #4749. Thanks to @​lRoccoon for the contribution!

Major Fixes

  • fix accounting for lost RESET_STREAM frames in the stream, leading to potential connection stalls / deadlocks: #4804. Thanks to @​Wondertan for reporting and testing the fix!
  • fix memory leak when the connection ID is rotated when the CONNECTION_CLOSE packet is sent: #4852. Thanks to @​MarcoPolo for debugging this issue and contributing a fix!
  • http3: fix QUIC connection re-dialing logic: #4854, #4875, #4879
  • trigger sending of a new packet when a MAX_DATA frame (connection-level flow control update) is queued: #4844
  • Transport.Close was reworked: calls to Transport.Dial are now canceled, and return the newly introduced ErrTransportClosed, as do calls to Transport.Listen: #4883

Enhancements

  • trace dropping of packets by the Transport when no server is set: #4789
  • trace dropping of packets that the Transport doesn't send a stateless for: #4826
  • drain received packets when the connection is closed: #4773
  • add Prometheus metrics for sent and received packets: #4910
  • reduce calls to time.Now all over the code base: #4731, #4885, #4886, #4906
  • packetize DATA_BLOCKED frames in the same QUIC packet that caused us to block on connection-level flow control: #4845
  • packetize STREAM_DATA_BLOCKED frames in the same QUIC packed that caused us to block on stream-level flow control: #4801
  • we now don't enforce that only one Transport listens on any given net.PacketConn: #4851

Other Fixes

  • drain the server's connection accept queue before returning ErrClosed from Accept: #4846. Thanks to @​sukunrt for discovering this bug and providing very helpful reviews!
  • preserve the error returned from SendStream.Write if it is closed after is canceled: #4882
  • fix race condition on concurrent calls to Transport.Dial and Transport.Close: #4904
  • qlog: fix logging of packet_in_flight on the metrics_updated event: #4895
  • fix errors.Is error comparisons: #4824, #4825, #4877
  • http3: fix race condition on concurrent calls to http.Response.Body.Close: #4798. Thanks to @​RPRX for the contribution!
  • flowcontrol: reset the connection send window on 0-RTT rejection: #4764
  • wait for connection to shut down when the Dial context is cancelled: #4872
  • http3: the http.Request.Body is now properly closed on all code paths that return a non-nil error: #4874
  • NEW_CONNECTION_ID frames are now rejected when zero-length connection IDs are used, as required by the RFC: #4878
  • the stream ID of STREAM_DATA_BLOCKED frames is now validated, as required by the RFC: #4836
  • fix ECN markings of packets sent in GSO batches when the marking changes: #4835
  • the AEAD used to calculate the Retry Integrity Tag is now created lazily, avoiding a panic on initialization when using Go 1.24 FIPS-only mode: #4916
  • use a 24h maximum token age as default value for Transport.MaxTokenAge: #4763

Behind the Scenes

In the v0.48.0 release, we started migrating our test suite away from Ginkgo (tracking issue: #3652). This is an absolutely massive endeavor. Before we started, the number of LOC of Ginkgo tests was more than 41,000.

In this release, we're bringing this number down to less than 8,500 LOC: #4736, #4746, #4775, #4783, #4788, #4790, #4795, #4796, #4797, #4799, #4814, #4816, #4817, #4823, #4837, #4842, #4847, #4848, #4849, #4853, #4857, #4860, #4861, #4862, #4863, #4864, #4865, #4869, #4876, #4881, #4907.

There's still a lot of work ahead, but we'll hopefully be able to finish this item in the next couple of months.

... (truncated)

Commits
  • 275c172 drop initial packets when the handshake is confirmed
  • c385cd1 handshake: lazily create the AEAD used for Retry (#4916)
  • fb9d8e3 metrics: add Prometheus metrics for sent and received packets (#4910)
  • e12f91c clean up MTU probe packet sending logic (#4914)
  • a4c9b04 simply PTO probe packet sending logic (#4913)
  • d41f974 fix memory leak on connection ID rotation when closing connection (#4852)
  • 3023083 migrate the MTU discoverer tests away from Ginkgo (#4907)
  • bea70c6 fix flaky TestALPN integration test (#4909)
  • eb70424 fix race condition on concurrent use of Transport.Dial and Close (#4904)
  • 5d4835e preserve error from SendStream during cancellation and closing (#4882)
  • Additional commits viewable in compare view

Updates golang.org/x/net from 0.33.0 to 0.42.0

Commits
  • 76358aa go.mod: update golang.org/x dependencies
  • 6e41cae go.mod: update golang.org/x dependencies
  • 15f7d40 http2: correctly wrap ErrFrameTooLarge in Framer.ReadFrame
  • ef33bc0 internal/http3: use bubbled context in synctest tests
  • 919c6bc http2: use an array instead of a map in typeFrameParser
  • bae01a7 trace: add missing td tag
  • 7d6e62a go.mod: update golang.org/x dependencies
  • ea0c1d9 internal/timeseries: use built-in max/min to simplify the code
  • 3e7a445 quic: skip packet numbers for optimistic ack defense
  • 3f563d3 quic: use an enum for sentPacket state
  • Additional commits viewable in compare view

Updates github.com/containerd/containerd from 1.7.20 to 1.7.27

Release notes

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

containerd 1.7.27

Welcome to the v1.7.27 release of containerd!

The twenty-seventh patch release for containerd 1.7 contains various fixes and updates.

Highlights

  • Fix integer overflow in User ID handling (GHSA-265r-hfxg-fhmg)
  • Update image type checks to avoid unnecessary logs for attestations (#11538)

Please try out the release binaries and report any issues at https://github.com/containerd/containerd/issues.

Contributors

  • Jin Dong
  • Akhil Mohan
  • Derek McGowan
  • Maksym Pavlenko
  • Paweł Gronowski
  • Phil Estes
  • Akihiro Suda
  • Craig Ingram
  • Krisztian Litkey
  • Samuel Karp

Changes

  • 05044ec0a Merge commit from fork
  • 11504c3fc validate uid/gid
  • Prepare release notes for v1.7.27 (#11540)
    • 1be04be6c Prepare release notes for v1.7.27
  • Update image type checks to avoid unnecessary logs for attestations (#11538)
    • 82b5c43fe core/remotes: Handle attestations in MakeRefKey
    • 2c670e79b core/images: Ignore attestations when traversing children
  • update build to go1.23.7, test go1.24.1 (#11515)
    • a39863c9f update build to go1.23.7, test go1.24.1
  • Remove hashicorp/go-multierror dependency and fix CI (#11499)
    • 49537b3a7 e2e: use the shim bundled with containerd artifact
    • fe490b76f Bump up github.com/intel/goresctrl to 0.5.0
    • 13fc9d313 update containerd/project-checks to 1.2.1
    • 585699c94 Remove unnecessary joinError unwrap
    • 4b9df59be Remove hashicorp/go-multierror
  • go.{mod,sum}: bump CDI deps to v0.8.1. (#11422)
    • 5ba28f8dc go.{mod,sum}: bump CDI deps to v0.8.1, re-vendor.
  • CI: arm64-8core-32gb -> ubuntu-24.04-arm (#11437)
    • 85f10bd92 CI: arm64-8core-32gb -> ubuntu-24.04-arm

... (truncated)

Commits
  • 05044ec Merge commit from fork
  • 0b7f2a5 Merge pull request #11540 from dmcgowan/prepare-1.7.27
  • 574a304 Merge pull request #11538 from dmcgowan/backport-11327
  • 1be04be Prepare release notes for v1.7.27
  • 82b5c43 core/remotes: Handle attestations in MakeRefKey
  • 2c670e7 core/images: Ignore attestations when traversing children
  • 11504c3 validate uid/gid
  • 576178b Merge pull request #11515 from akhilerm/1.7-updatego1.24.1
  • a39863c update build to go1.23.7, test go1.24.1
  • 8946aa0 Merge pull request #11499 from djdongjin/1-7-remove-hashi-multierror
  • Additional commits viewable in compare view

Updates github.com/go-jose/go-jose/v4 from 4.0.4 to 4.1.1

Release notes

Sourced from github.com/go-jose/go-jose/v4's releases.

v4.1.1

What's Changed

New Contributors

Full Changelog: go-jose/go-jose@v4.1.0...v4.1.1

v4.1.0

What's Changed

New Contributors

Full Changelog: go-jose/go-jose@v4.0.5...v4.1.0

v4.0.5

What's Changed

Fixes GHSA-c6gw-w398-hv78

Various other dependency updates, small fixes, and documentation updates in the full changelog

New Contributors

Full Changelog: go-jose/go-jose@v4.0.4...v4.0.5

Commits

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

Release notes

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

v2.4.0

What's Changed

New Contributors

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

v2.3.0

What's Changed

New Contributors

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

Commits

Updates github.com/golang-jwt/jwt/v5 from 5.2.1 to 5.2.2

Release notes

Sourced from github.com/golang-jwt/jwt/v5's releases.

v5.2.2

What's Changed

New Contributors

Full Changelog: golang-jwt/jwt@v5.2.1...v5.2.2

Commits

Bumps the go_modules group with 4 updates in the / directory: [github.com/docker/docker](https://github.com/docker/docker), [github.com/go-acme/lego/v4](https://github.com/go-acme/lego), [github.com/quic-go/quic-go](https://github.com/quic-go/quic-go) and [github.com/containerd/containerd](https://github.com/containerd/containerd).


Updates `github.com/docker/docker` from 27.1.1+incompatible to 28.0.0+incompatible
- [Release notes](https://github.com/docker/docker/releases)
- [Commits](moby/moby@v27.1.1...v28.0.0)

Updates `github.com/go-acme/lego/v4` from 4.21.0 to 4.25.2
- [Release notes](https://github.com/go-acme/lego/releases)
- [Changelog](https://github.com/go-acme/lego/blob/master/CHANGELOG.md)
- [Commits](go-acme/lego@v4.21.0...v4.25.2)

Updates `github.com/quic-go/quic-go` from 0.48.2 to 0.49.1
- [Release notes](https://github.com/quic-go/quic-go/releases)
- [Commits](quic-go/quic-go@v0.48.2...v0.49.1)

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

Updates `github.com/containerd/containerd` from 1.7.20 to 1.7.27
- [Release notes](https://github.com/containerd/containerd/releases)
- [Changelog](https://github.com/containerd/containerd/blob/main/RELEASES.md)
- [Commits](containerd/containerd@v1.7.20...v1.7.27)

Updates `github.com/go-jose/go-jose/v4` from 4.0.4 to 4.1.1
- [Release notes](https://github.com/go-jose/go-jose/releases)
- [Commits](go-jose/go-jose@v4.0.4...v4.1.1)

Updates `github.com/go-viper/mapstructure/v2` from 2.2.1 to 2.4.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.4.0)

Updates `github.com/golang-jwt/jwt/v5` from 5.2.1 to 5.2.2
- [Release notes](https://github.com/golang-jwt/jwt/releases)
- [Changelog](https://github.com/golang-jwt/jwt/blob/main/VERSION_HISTORY.md)
- [Commits](golang-jwt/jwt@v5.2.1...v5.2.2)

Updates `github.com/redis/go-redis/v9` from 9.6.1 to 9.8.0
- [Release notes](https://github.com/redis/go-redis/releases)
- [Changelog](https://github.com/redis/go-redis/blob/master/RELEASE-NOTES.md)
- [Commits](redis/go-redis@v9.6.1...v9.8.0)

Updates `golang.org/x/crypto` from 0.31.0 to 0.40.0
- [Commits](golang/crypto@v0.31.0...v0.40.0)

Updates `golang.org/x/oauth2` from 0.24.0 to 0.30.0
- [Commits](golang/oauth2@v0.24.0...v0.30.0)

---
updated-dependencies:
- dependency-name: github.com/docker/docker
  dependency-version: 28.0.0+incompatible
  dependency-type: direct:production
  dependency-group: go_modules
- dependency-name: github.com/go-acme/lego/v4
  dependency-version: 4.25.2
  dependency-type: direct:production
  dependency-group: go_modules
- dependency-name: github.com/quic-go/quic-go
  dependency-version: 0.49.1
  dependency-type: direct:production
  dependency-group: go_modules
- dependency-name: golang.org/x/net
  dependency-version: 0.42.0
  dependency-type: direct:production
  dependency-group: go_modules
- dependency-name: github.com/containerd/containerd
  dependency-version: 1.7.27
  dependency-type: indirect
  dependency-group: go_modules
- dependency-name: github.com/go-jose/go-jose/v4
  dependency-version: 4.1.1
  dependency-type: indirect
  dependency-group: go_modules
- dependency-name: github.com/go-viper/mapstructure/v2
  dependency-version: 2.4.0
  dependency-type: indirect
  dependency-group: go_modules
- dependency-name: github.com/golang-jwt/jwt/v5
  dependency-version: 5.2.2
  dependency-type: indirect
  dependency-group: go_modules
- dependency-name: github.com/redis/go-redis/v9
  dependency-version: 9.8.0
  dependency-type: indirect
  dependency-group: go_modules
- dependency-name: golang.org/x/crypto
  dependency-version: 0.40.0
  dependency-type: indirect
  dependency-group: go_modules
- dependency-name: golang.org/x/oauth2
  dependency-version: 0.30.0
  dependency-type: indirect
  dependency-group: go_modules
...

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 Oct 10, 2025
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

Development

Successfully merging this pull request may close these issues.

1 participant