Skip to content
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

build(deps): bump the non-majors group with 16 updates #989

Merged
merged 3 commits into from
Jan 3, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 1, 2025

Bumps the non-majors group with 16 updates:

Package From To
github.com/docker/cli 27.3.1+incompatible 27.4.1+incompatible
github.com/gliderlabs/ssh 0.3.7 0.3.8
github.com/go-git/go-git/v5 5.12.0 5.13.0
github.com/labstack/echo/v4 4.12.0 4.13.3
github.com/moby/buildkit 0.17.3 0.18.2
github.com/prometheus/common 0.60.1 0.61.0
github.com/regclient/regclient 0.7.2 0.8.0
github.com/traefik/traefik/v3 3.2.1 3.2.3
golang.org/x/crypto 0.29.0 0.31.0
golang.org/x/net 0.31.0 0.33.0
golang.org/x/sync 0.9.0 0.10.0
google.golang.org/protobuf 1.35.2 1.36.1
k8s.io/api 0.31.3 0.32.0
k8s.io/apiextensions-apiserver 0.31.3 0.32.0
k8s.io/apimachinery 0.31.3 0.32.0
k8s.io/client-go 0.31.3 0.32.0

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

Commits
  • b9d17ea Merge pull request #5700 from thaJeztah/27.x_backport_remove_use_of_netfilter...
  • a08a120 cli/command/system: remove BridgeNfIptables, BridgeNfIp6tables in tests
  • 4870b3d Merge pull request #5699 from thaJeztah/27.x_backport_remove_system_isabs
  • d3b59fb cli/command/container: use local copy of pkg/system.IsAbs
  • ac40240 Merge pull request #5685 from thaJeztah/27.x_backport_bump_xx
  • 3fa9480 Merge pull request #5690 from thaJeztah/27.x_backport_bump_gomd2man
  • fce7c04 Merge pull request #5692 from thaJeztah/27.x_backport_remove_netfilter_warnings
  • 70815c1 cli/command/system: remove netfilter warnings from tests
  • 12d98b0 update go-md2man to v2.0.5
  • f9783ec update xx to v1.6.1 for compatibility with alpine 3.21
  • Additional commits viewable in compare view

Updates github.com/gliderlabs/ssh from 0.3.7 to 0.3.8

Release notes

Sourced from github.com/gliderlabs/ssh's releases.

v0.3.8

This bumps x/crypto to 0.31.0 to resolve CVE-2024-45337. The API has not changed, which means there are still a number of ways you could be vulnerable if your code improperly uses the PublicKeyHandler.

Note that this may result in a performance regression, as the PublicKeyHandler may be called multiple times for the same key. The last time it is called will be the key the user is actually using.

Note that if you are using Permissions to pass information about the public key out of the handler, you need to make sure you always overwrite all relevant stored map keys in order to avoid being vulnerable.

Full Changelog: gliderlabs/ssh@v0.3.7...v0.3.8

Commits

Updates github.com/go-git/go-git/v5 from 5.12.0 to 5.13.0

Release notes

Sourced from github.com/go-git/go-git/v5's releases.

v5.13.0

What's Changed

... (truncated)

Commits
  • 94bd4af Merge pull request #1261 from BeChris/issue680
  • 8b7f5ba Merge pull request #1262 from go-git/dependabot/go_modules/github.com/elazarl...
  • 41d80a0 build: bump github.com/elazarl/goproxy
  • 4998140 git: worktree_commit, sanitize author and commiter name and email before crea...
  • 9049625 Merge pull request #1260 from go-git/dependabot/github_actions/github/codeql-...
  • dae48b4 build: bump github/codeql-action from 3.27.9 to 3.28.0
  • 7d6fbc2 Merge pull request #1220 from BeChris/accept_uppercase_hexa_in_pktline_length
  • 62a77b7 plumbing: Fix invalid reference name error while cloning branches containing ...
  • 5e11196 plumbing: format/pktline, accept upercase hexadecimal value as pktline length...
  • 65f5e1a Merge pull request #1256 from go-git/dependabot/go_modules/golang-org-232a611e2d
  • Additional commits viewable in compare view

Updates github.com/labstack/echo/v4 from 4.12.0 to 4.13.3

Release notes

Sourced from github.com/labstack/echo/v4's releases.

v4.13.3

Security

Full Changelog: labstack/echo@v4.13.2...v4.13.3

v4.13.2 - update dependencies

Security

Full Changelog: labstack/echo@v4.13.1...v4.13.2

v4.13.1

Fixes

Full Changelog: labstack/echo@v4.13.0...v4.13.1

JWT Middleware Removed

BREAKING CHANGE: JWT Middleware Removed from Core

The JWT middleware has been removed from Echo core due to another security vulnerability, CVE-2024-51744. For more details, refer to issue #2699. A drop-in replacement is available in the labstack/echo-jwt repository or see alternative implementation

Important: Direct assignments like token := c.Get("user").(*jwt.Token) will now cause a panic due to an invalid cast. Update your code accordingly. Replace the current imports from "github.com/golang-jwt/jwt" in your handlers to the new middleware version using "github.com/golang-jwt/jwt/v5".

Background:

The version of golang-jwt/jwt (v3.2.2) previously used in Echo core has been in an unmaintained state for some time. This is not the first vulnerability affecting this library; earlier issues were addressed in [PR #1946](labstack/echo#1946). JWT middleware was marked as deprecated in Echo core as of v4.10.0 on 2022-12-27. If you did not notice that, consider leveraging tools like Staticcheck to catch such deprecations earlier in you dev/CI flow. For bonus points - check out gosec.

We sincerely apologize for any inconvenience caused by this change. While we strive to maintain backward compatibility within Echo core, recurring security issues with third-party dependencies have forced this decision.

Enhancements

... (truncated)

Changelog

Sourced from github.com/labstack/echo/v4's changelog.

v4.13.3 - 2024-12-19

Security

v4.13.2 - 2024-12-12

Security

v4.13.1 - 2024-12-11

Fixes

v4.13.0 - 2024-12-04

BREAKING CHANGE JWT Middleware Removed from Core use labstack/echo-jwt instead

The JWT middleware has been removed from Echo core due to another security vulnerability, CVE-2024-51744. For more details, refer to issue #2699. A drop-in replacement is available in the labstack/echo-jwt repository.

Important: Direct assignments like token := c.Get("user").(*jwt.Token) will now cause a panic due to an invalid cast. Update your code accordingly. Replace the current imports from "github.com/golang-jwt/jwt" in your handlers to the new middleware version using "github.com/golang-jwt/jwt/v5".

Background:

The version of golang-jwt/jwt (v3.2.2) previously used in Echo core has been in an unmaintained state for some time. This is not the first vulnerability affecting this library; earlier issues were addressed in [PR #1946](labstack/echo#1946). JWT middleware was marked as deprecated in Echo core as of v4.10.0 on 2022-12-27. If you did not notice that, consider leveraging tools like Staticcheck to catch such deprecations earlier in you dev/CI flow. For bonus points - check out gosec.

We sincerely apologize for any inconvenience caused by this change. While we strive to maintain backward compatibility within Echo core, recurring security issues with third-party dependencies have forced this decision.

Enhancements

... (truncated)

Commits

Updates github.com/moby/buildkit from 0.17.3 to 0.18.2

Release notes

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

v0.18.2

buildkit 0.18.2

Welcome to the v0.18.2 release of buildkit!

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

Notable Changes

  • Builtin Dockerfile frontend has been updated to v1.12.1 changelog
  • Fix possible concurrent map write error #5577
  • Update Runc to v1.2.3 to fix possible build error when using parallel cache mounts #5588 #5590

Dependency Changes

This release has no dependency changes

Previous release can be found at v0.18.1

v0.18.1

Welcome to the v0.18.1 release of buildkit!

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

Notable Changes

  • Fix issue where builds from older versions of clients/frontends could result in missing "no-cache" behavior or original Dockerfile commands could be missing in progress output #5563

Dependency Changes

This release has no dependency changes

Previous release can be found at v0.18.0

v0.18.0

Welcome to the v0.18.0 release of buildkit!

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

... (truncated)

Commits
  • e4da654 Merge pull request #5601 from tonistiigi/v0.18.2-picks
  • 987b409 dockerfile: fix named context replacement for child stages
  • 873382b dockerfile: fix onbuild propagation for child stages
  • 6614837 dockerfile: add regression test for parallel cache mounts
  • 25649b3 Dockerfile: update runc binary to v1.2.3
  • 36a6e05 llb: avoid concurrent map write on parallel marshal
  • 4241ae2 update xx to v1.6.1
  • 715418b hack: remove loong64 validation in archutil
  • eb68885 Merge pull request #5564 from tonistiigi/v0.18.1-picks
  • ec39add llbsolver: fix recompute test and avoid struct copy
  • Additional commits viewable in compare view

Updates github.com/prometheus/common from 0.60.1 to 0.61.0

Release notes

Sourced from github.com/prometheus/common's releases.

v0.61.0

What's Changed

Full Changelog: prometheus/common@v0.60.1...v0.61.0

Commits
  • 7b484e9 Bump google.golang.org/protobuf from 1.35.1 to 1.35.2 (#732)
  • 05e3c40 Bump github.com/stretchr/testify from 1.9.0 to 1.10.0 (#731)
  • a0ef737 Bump golang.org/x/net from 0.30.0 to 0.32.0 (#736)
  • f99f029 Update common Prometheus files (#726)
  • b88f24c promslog: always lowercase log level from CLI (#728)
  • 2c3c048 Bump golang.org/x/oauth2 from 0.23.0 to 0.24.0 (#730)
  • ec7291f Bump github.com/stretchr/testify from 1.9.0 to 1.10.0 in /assets (#729)
  • 145b50a fix(promslog): always use UTC for time (#735)
  • 39a62f7 fix: values escaping bugs (#727)
  • 7ed4523 Allow custom user-agent definition (#725)
  • Additional commits viewable in compare view

Updates github.com/regclient/regclient from 0.7.2 to 0.8.0

Release notes

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

v0.8.0

Release v0.8.0

Highlights

There are three headline changes in this release: slog support, external referrers, and deprecating legacy packages.

This release switches from logrus to slog. Migration methods are included to minimize the impact on existing users. Anyone parsing the logging output from regctl, regsync, and regbot will notice the format has changed.

External referrers allow referrers to be pushed and pulled from a separate repository from the subject image. This feature requires users to provide the external repository themselves since a registry has no way to communicate this to the user. An example use case of this feature are third parties, like security scanners, providing attestations of images they do not control.

Legacy packages have been disabled by default and will eventually be removed. To continue using legacy packages until their removal, you may compile with -tags legacy.

Breaking

  • Breaking: Warning handlers switched from logrus to slog which will only impact those with a custom warning handler. ([PR 847][pr-847])
  • Breaking: Disable legacy packages by default. ([PR 852][pr-852])

Features

  • Feat: Refactor logging to use log/slog. ([PR 847][pr-847])
  • Feat: Switch regbot to slog. ([PR 849][pr-849])
  • Feat: Switch regctl to slog. ([PR 850][pr-850])
  • Feat: Switch regsync to slog. ([PR 851][pr-851])
  • Feat: Move logrus calls into files excluded by wasm. ([PR 853][pr-853])
  • Feat: Allow plus in ocidir path. ([PR 856][pr-856])
  • Feat: Support referrers in an external repository. ([PR 866][pr-866])
  • Feat: Image mod environment variables. ([PR 867][pr-867])
  • Feat: Include source in referrers response. ([PR 870][pr-870])
  • Feat: Add external flag to regctl artifact put. ([PR 873][pr-873])
  • Feat: Copy image with external referrers. ([PR 874][pr-874])
  • Feat: Document community maintained packages. ([PR 878][pr-878])
  • Feat: Support external referrers in regsync. ([PR 881][pr-881])
  • Feat: Support incomplete subject descriptor. ([PR 885][pr-885])

Fixes

  • Fix: Inject release notes by file. ([PR 854][pr-854])
  • Fix: Platform test for darwin/macos should not add variant. ([PR 879][pr-879])
  • Fix: Handle repeated digest in copy with external referrers. ([PR 882][pr-882])

Chores

  • Chore: Improve error message when inspecting artifacts. ([PR 862][pr-862])
  • Chore: Remove unused short arg parameters. ([PR 877][pr-877])

... (truncated)

Changelog

Sourced from github.com/regclient/regclient's changelog.

Release v0.8.0

Highlights

There are three headline changes in this release: slog support, external referrers, and deprecating legacy packages.

This release switches from logrus to slog. Migration methods are included to minimize the impact on existing users. Anyone parsing the logging output from regctl, regsync, and regbot will notice the format has changed.

External referrers allow referrers to be pushed and pulled from a separate repository from the subject image. This feature requires users to provide the external repository themselves since a registry has no way to communicate this to the user. An example use case of this feature are third parties, like security scanners, providing attestations of images they do not control.

Legacy packages have been disabled by default and will eventually be removed. To continue using legacy packages until their removal, you may compile with -tags legacy.

Breaking

  • Breaking: Warning handlers switched from logrus to slog which will only impact those with a custom warning handler. ([PR 847][pr-847])
  • Breaking: Disable legacy packages by default. ([PR 852][pr-852])

Features

  • Feat: Refactor logging to use log/slog. ([PR 847][pr-847])
  • Feat: Switch regbot to slog. ([PR 849][pr-849])
  • Feat: Switch regctl to slog. ([PR 850][pr-850])
  • Feat: Switch regsync to slog. ([PR 851][pr-851])
  • Feat: Move logrus calls into files excluded by wasm. ([PR 853][pr-853])
  • Feat: Allow plus in ocidir path. ([PR 856][pr-856])
  • Feat: Support referrers in an external repository. ([PR 866][pr-866])
  • Feat: Image mod environment variables. ([PR 867][pr-867])
  • Feat: Include source in referrers response. ([PR 870][pr-870])
  • Feat: Add external flag to regctl artifact put. ([PR 873][pr-873])
  • Feat: Copy image with external referrers. ([PR 874][pr-874])
  • Feat: Document community maintained packages. ([PR 878][pr-878])
  • Feat: Support external referrers in regsync. ([PR 881][pr-881])
  • Feat: Support incomplete subject descriptor. ([PR 885][pr-885])

Fixes

  • Fix: Inject release notes by file. ([PR 854][pr-854])
  • Fix: Platform test for darwin/macos should not add variant. ([PR 879][pr-879])
  • Fix: Handle repeated digest in copy with external referrers. ([PR 882][pr-882])

Chores

  • Chore: Improve error message when inspecting artifacts. ([PR 862][pr-862])
  • Chore: Remove unused short arg parameters. ([PR 877][pr-877])

... (truncated)

Commits
  • 106f460 Release v0.8.0
  • e70df96 Merge for release v0.8.0
  • ca88133 Merge pull request #885 from sudo-bmitch/pr-allow-referrers-without-size
  • 7a2a05e Feat: Support incomplete subject descriptor
  • d6a5a84 Merge pull request #882 from sudo-bmitch/pr-fix-copy-external-referrers
  • c29933e Fix: Handle repeated digest in copy with external referrers
  • bb5f4b7 Merge pull request #881 from sudo-bmitch/pr-referrer-external-regsync
  • 851cc63 Feat: Support external referrers in regsync
  • 88ac519 Merge pull request #880 from sudo-bmitch/pr-update-20241208
  • ec1c51a Version bump
  • Additional commits viewable in compare view

Updates github.com/traefik/traefik/v3 from 3.2.1 to 3.2.3

Release notes

Sourced from github.com/traefik/traefik/v3's releases.

v3.2.3

Documentation:

  • Update reference install documentation with current chart default (#11332 by mloiseleur)

Misc:

v3.2.2

CVE: CVE-2024-53259 (Advisory GHSA-hxr6-2p24-hf98)

Bug fixes:

  • [docker,docker/swarm] Rename traefik.docker.* labels for Docker Swarm to traefik.swarm.* (#11247 by anchal00)
  • [k8s/gatewayapi] Update sigs.k8s.io/gateway-api to v1.2.1 (#11314 by kevinpollet)
  • [plugins] Fix WASM settings (#11321 by juliens)
  • [rules] Fix models mechanism for default rule syntax (#11300 by rtribotte)

Documentation:

Changelog

Sourced from github.com/traefik/traefik/v3's changelog.

v3.2.3 (2024-12-16)

All Commits

Documentation:

  • Update reference install documentation with current chart default (#11332 by mloiseleur)

Misc:

v2.11.16 (2024-12-16)

All Commits

Bug fixes:

v3.2.2 (2024-12-10)

All Commits

Bug fixes:

  • [docker,docker/swarm] Rename traefik.docker.* labels for Docker Swarm to traefik.swarm.* (#11247 by anchal00)
  • [k8s/gatewayapi] Update sigs.k8s.io/gateway-api to v1.2.1 (#11314 by kevinpollet)
  • [plugins] Fix WASM settings (#11321 by juliens)
  • [rules] Fix models mechanism for default rule syntax (#11300 by rtribotte)

Documentation:

v2.11.15 (2024-12-06)

All Commits

Bug fixes:

Commits
  • 8983e45 Prepare release v3.2.3
  • ec214fa Merge branch v2.11 into v3.2
  • 1c00940 Prepare release v2.11.16
  • 3a3ffab Update reference install documentation with current chart default
  • 33cf06b Merge branch v2.11 into v3.2
  • 590ddfc Update nokogiri gem to v1.16.8
  • 39d7b77 Bump Dockerfile to Alpine v3.21
  • 74e0abf Update golang.org/x dependencies
  • e87da0f Prepare release v3.2.2
  • 8eb1279 Merge current branch v2.11 into v3.2
  • Additional commits viewable in compare view

Updates golang.org/x/crypto from 0.29.0 to 0.31.0

Commits
  • b4f1988 ssh: make the public key cache a 1-entry FIFO cache
  • 7042ebc openpgp/clearsign: just use rand.Reader in tests
  • 3e90321 go.mod: update golang.org/x dependencies
  • 8c4e668 x509roots/fallback: update bundle
  • See full diff in compare view

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

Commits
  • dfc720d go.mod: update golang.org/x dependencies
  • 8e66b04 html: use strings.EqualFold instead of lowering ourselves
  • b935f7b html: avoid endless loop on error token
  • 9af49ef route: remove unused sizeof* consts
  • 6705db9 quic: clean up crypto streams when dropping packet protection keys
  • 4ef7588 quic: handle ACK frame in packet which drops number space
  • 552d8ac Revert "route: change from syscall to x/sys/unix"
  • 13a7c01 Revert "route: remove unused sizeof* consts on freebsd"
  • 285e1cf go.mod: update golang.org/x dependencies
  • d0a1049 route: remove unused sizeof* consts on freebsd
  • Additional commits viewable in compare view

Updates golang.org/x/sync from 0.9.0 to 0.10.0

Commits

Updates google.golang.org/protobuf from 1.35.2 to 1.36.1

Updates k8s.io/api from 0.31.3 to 0.32.0

Commits
  • e622342 Update dependencies to v0.32.0 tag
  • b0543a3 Merge remote-tracking branch 'origin/master' into release-1.32

Bumps the non-majors group with 16 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/docker/cli](https://github.com/docker/cli) | `27.3.1+incompatible` | `27.4.1+incompatible` |
| [github.com/gliderlabs/ssh](https://github.com/gliderlabs/ssh) | `0.3.7` | `0.3.8` |
| [github.com/go-git/go-git/v5](https://github.com/go-git/go-git) | `5.12.0` | `5.13.0` |
| [github.com/labstack/echo/v4](https://github.com/labstack/echo) | `4.12.0` | `4.13.3` |
| [github.com/moby/buildkit](https://github.com/moby/buildkit) | `0.17.3` | `0.18.2` |
| [github.com/prometheus/common](https://github.com/prometheus/common) | `0.60.1` | `0.61.0` |
| [github.com/regclient/regclient](https://github.com/regclient/regclient) | `0.7.2` | `0.8.0` |
| [github.com/traefik/traefik/v3](https://github.com/traefik/traefik) | `3.2.1` | `3.2.3` |
| [golang.org/x/crypto](https://github.com/golang/crypto) | `0.29.0` | `0.31.0` |
| [golang.org/x/net](https://github.com/golang/net) | `0.31.0` | `0.33.0` |
| [golang.org/x/sync](https://github.com/golang/sync) | `0.9.0` | `0.10.0` |
| google.golang.org/protobuf | `1.35.2` | `1.36.1` |
| [k8s.io/api](https://github.com/kubernetes/api) | `0.31.3` | `0.32.0` |
| [k8s.io/apiextensions-apiserver](https://github.com/kubernetes/apiextensions-apiserver) | `0.31.3` | `0.32.0` |
| [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery) | `0.31.3` | `0.32.0` |
| [k8s.io/client-go](https://github.com/kubernetes/client-go) | `0.31.3` | `0.32.0` |


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

Updates `github.com/gliderlabs/ssh` from 0.3.7 to 0.3.8
- [Release notes](https://github.com/gliderlabs/ssh/releases)
- [Commits](gliderlabs/ssh@v0.3.7...v0.3.8)

Updates `github.com/go-git/go-git/v5` from 5.12.0 to 5.13.0
- [Release notes](https://github.com/go-git/go-git/releases)
- [Commits](go-git/go-git@v5.12.0...v5.13.0)

Updates `github.com/labstack/echo/v4` from 4.12.0 to 4.13.3
- [Release notes](https://github.com/labstack/echo/releases)
- [Changelog](https://github.com/labstack/echo/blob/master/CHANGELOG.md)
- [Commits](labstack/echo@v4.12.0...v4.13.3)

Updates `github.com/moby/buildkit` from 0.17.3 to 0.18.2
- [Release notes](https://github.com/moby/buildkit/releases)
- [Commits](moby/buildkit@v0.17.3...v0.18.2)

Updates `github.com/prometheus/common` from 0.60.1 to 0.61.0
- [Release notes](https://github.com/prometheus/common/releases)
- [Changelog](https://github.com/prometheus/common/blob/main/RELEASE.md)
- [Commits](prometheus/common@v0.60.1...v0.61.0)

Updates `github.com/regclient/regclient` from 0.7.2 to 0.8.0
- [Release notes](https://github.com/regclient/regclient/releases)
- [Changelog](https://github.com/regclient/regclient/blob/v0.8.0/release.md)
- [Commits](regclient/regclient@v0.7.2...v0.8.0)

Updates `github.com/traefik/traefik/v3` from 3.2.1 to 3.2.3
- [Release notes](https://github.com/traefik/traefik/releases)
- [Changelog](https://github.com/traefik/traefik/blob/master/CHANGELOG.md)
- [Commits](traefik/traefik@v3.2.1...v3.2.3)

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

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

Updates `golang.org/x/sync` from 0.9.0 to 0.10.0
- [Commits](golang/sync@v0.9.0...v0.10.0)

Updates `google.golang.org/protobuf` from 1.35.2 to 1.36.1

Updates `k8s.io/api` from 0.31.3 to 0.32.0
- [Commits](kubernetes/api@v0.31.3...v0.32.0)

Updates `k8s.io/apiextensions-apiserver` from 0.31.3 to 0.32.0
- [Release notes](https://github.com/kubernetes/apiextensions-apiserver/releases)
- [Commits](kubernetes/apiextensions-apiserver@v0.31.3...v0.32.0)

Updates `k8s.io/apimachinery` from 0.31.3 to 0.32.0
- [Commits](kubernetes/apimachinery@v0.31.3...v0.32.0)

Updates `k8s.io/client-go` from 0.31.3 to 0.32.0
- [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md)
- [Commits](kubernetes/client-go@v0.31.3...v0.32.0)

---
updated-dependencies:
- dependency-name: github.com/docker/cli
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: github.com/gliderlabs/ssh
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-majors
- dependency-name: github.com/go-git/go-git/v5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: github.com/labstack/echo/v4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: github.com/moby/buildkit
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: github.com/prometheus/common
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: github.com/regclient/regclient
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: github.com/traefik/traefik/v3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-majors
- dependency-name: golang.org/x/crypto
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: golang.org/x/net
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: golang.org/x/sync
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: google.golang.org/protobuf
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: k8s.io/api
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: k8s.io/apiextensions-apiserver
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: k8s.io/apimachinery
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: k8s.io/client-go
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Jan 1, 2025
Copy link

github-actions bot commented Jan 1, 2025

Preview (prod backend + PR dashboard) → https://989.ns-preview.trapti.tech/

@pirosiki197 pirosiki197 merged commit 0483a5f into main Jan 3, 2025
13 checks passed
@pirosiki197 pirosiki197 deleted the dependabot/go_modules/non-majors-f4aed728ab branch January 3, 2025 02:18
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