Skip to content

[gomod] bump the dependencies group across 1 directory with 13 updates #80

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 23, 2025

Bumps the dependencies group with 11 updates in the / directory:

Package From To
github.com/getkin/kin-openapi 0.131.0 0.132.0
github.com/lestrrat-go/jwx/v2 2.1.3 2.1.6
github.com/oapi-codegen/nethttp-middleware 1.0.2 1.1.2
github.com/rancher/cluster-api-provider-rke2 0.14.0 0.15.1
go.uber.org/mock 0.5.1 0.5.2
k8s.io/api 0.32.3 0.33.1
k8s.io/client-go 0.32.3 0.33.1
k8s.io/kubectl 0.32.1 0.33.1
sigs.k8s.io/cluster-api 1.9.5 1.10.2
sigs.k8s.io/cluster-api/test 1.9.6 1.10.2
sigs.k8s.io/controller-runtime 0.20.4 0.21.0

Updates github.com/getkin/kin-openapi from 0.131.0 to 0.132.0

Release notes

Sourced from github.com/getkin/kin-openapi's releases.

v0.132.0

What's Changed

New Contributors

Full Changelog: getkin/kin-openapi@v0.131.0...v0.132.0

Commits
  • 72b5d51 openapi2conv: fix for refs on items within additional properties (#1067)
  • 75e2cc5 openapi3filter: don't consume request body in AuthenticatorFunc (#1064)
  • 3cf8f7d style: Use fmt.Sprint without formating (#1061)
  • See full diff in compare view

Updates github.com/lestrrat-go/jwx/v2 from 2.1.3 to 2.1.6

Release notes

Sourced from github.com/lestrrat-go/jwx/v2's releases.

v2.1.6

What's Changed

Please read the Changes file and upgrade accordingly, especially if you are using the following combinations for JWE:

  • DIRECT mode content encryption
  • Using A256CBC_HS512
  • With an erroneously created CEK of exactly 32-bytes.

Full Changelog: lestrrat-go/jwx@v2.1.5...v2.1.6

v2.1.5

What's Changed

Full Changelog: lestrrat-go/jwx@v2.1.4...v2.1.5

v2.1.4

What's Changed

Full Changelog: lestrrat-go/jwx@v2.1.3...v2.1.4

Changelog

Sourced from github.com/lestrrat-go/jwx/v2's changelog.

v2.1.6 29 Apr 2025

  • [jwe] Fixed a long standing bug that could lead to degraded encryption or failure to decrypt JWE messages when a very specific combination of inputs were used for JWE operations.

    This problem only manifested itself when the following conditions in content encryption or decryption were met:

    • Content encryption was specified to use DIRECT mode.
    • Contentn encryption algorithm is specified as A256CBC_HS512
    • The key was erronously constructed with a 32-byte content encryption key (CEK)

    In this case, the user would be passing a mis-constructed key of 32-bytes instead of the intended 64-bytes. In all other cases, this construction would cause an error because crypto/aes.NewCipher would return an error when a key with length not matching 16, 24, and 32 bytes is used. However, due to use using a the provided 32-bytes as half CEK and half the hash, the crypto/aes.NewCipher was passed a 16-byte key, which is fine for AES-128. So internally crypto/aes.NewCipher would choose to use AES-128 instead of AES-256, and happily continue. Note that no other key lengths such as 48 and 128 would have worked. It had to be exactly 32.

    This does indeed result in a downgraded encryption, but we believe it is unlikely that this would cause a problem in the real world, as you would have to very specifically choose to use DIRECT mode, choose the specific content encryption algorithm, AND also use the wrong key size of exactly 32 bytes.

    However, in abandunce of caution, we recommend that you upgrade to v3.0.1 or later, or v2.1.6 or later if you are still on v2 series.

  • [jws] Improve performance of jws.SplitCompact and jws.SplitCompactString

  • [jwe] Improve performance of jwe.Parse

v2.1.5 16 Apr 2025

  • Update minimum require go version to 1.23; this is an indirect consequence of updateing github.com/lestrrat-go/blackmagic
  • backport #1308

v2.1.4 25 Feb 2025

  • Update code to work with go1.24
  • Update tests to work with recent latchset/jose
  • Fix build pipeline to work with latest golangci-lint
Commits

Updates github.com/oapi-codegen/nethttp-middleware from 1.0.2 to 1.1.2

Release notes

Sourced from github.com/oapi-codegen/nethttp-middleware's releases.

v1.1.1: fix an incorrect HTTP status code (in an unlikely failure case)

🐛 Bug fixes

📦 Dependency updates

  • chore(deps): update module github.com/golangci/golangci-lint to v2.1.5 (#39) @renovate[bot]

Sponsors

We would like to thank our sponsors for their support during this release.

... (truncated)

Commits
  • a4be325 fix(deps)!: update module github.com/getkin/kin-openapi to v0.132.0
  • 02b3b1c build: indicate which versions of Go are supported vs "supported"
  • d05a186 build: build against Go 1.23 and 1.24
  • 0a8001d fix: correct error code
  • 9b5d19d chore(deps): update module github.com/golangci/golangci-lint to v2.1.5
  • be28747 refactor: migrate error to a method parameter, not part of ErrorHandlerOpts
  • 124a344 feat: add error handler with more configuration
  • 750f72e refactor: return early if no options
  • 83a8756 refactor: flip error checking to remove nested conditionals
  • 0cb46bb chore(deps): update module github.com/golangci/golangci-lint to v2.1.4
  • Additional commits viewable in compare view

Updates github.com/rancher/cluster-api-provider-rke2 from 0.14.0 to 0.15.1

Release notes

Sourced from github.com/rancher/cluster-api-provider-rke2's releases.

v0.15.1

What's Changed

🐛 Bugs

Full Changelog: rancher/cluster-api-provider-rke2@v0.15.0...v0.15.1

v0.15.0

What's Changed

🚀 Enhancements

🐛 Bugs

Other Changes

New Contributors

Full Changelog: rancher/cluster-api-provider-rke2@v0.14.0...v0.15.0

Commits
  • 814af2b Merge pull request #652 from anmazzotti/backport_rollout_reason_log_trail
  • 9ccdda3 Prevent rollout before machineTemplate has been updated
  • d740c51 Add debug log trail to Machine rollout
  • 5decb9a Merge pull request #644 from AbsaOSS/sshd
  • 293c16e Merge pull request #646 from anmazzotti/set_owner_reference_machine_template
  • 1af8ce6 Reconcile external external owner reference
  • 64560c4 Merge pull request #645 from anmazzotti/add-kubeconfig-rotate-tests
  • b36540c Test kubeconfig cert rotation
  • d0a0ed1 Merge pull request #627 from MaxFedotov/mhc_remediation
  • 9de452c Rename infrastructure template for remediation test
  • Additional commits viewable in compare view

Updates go.uber.org/mock from 0.5.1 to 0.5.2

Release notes

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

v0.5.2

0.5.2 (28 Apr 2025)

Fixed

  • #248[]: Fixed an issue with type aliases not being included in generated code correctly.

#248: uber-go/mock#248

Changelog

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

0.5.2 (28 Apr 2025)

Fixed

  • #248[]: Fixed an issue with type aliases not being included in generated code correctly.

#248: uber-go/mock#248

Commits

Updates k8s.io/api from 0.32.3 to 0.33.1

Commits
  • 04f698e Update dependencies to v0.33.1 tag
  • 16cedc7 Merge pull request #131088 from atiratree/rename-terminating-replicas-fg
  • dc88679 Merge pull request #131103 from ahrtr/etcd_sdk_20250328
  • 4a456a2 bump etcd 3.5.21 sdk
  • 96e38c9 rename DeploymentPodReplacementPolicy FG to DeploymentReplicaSetTerminatingRe...
  • c21a017 Merge pull request #129970 from mortent/AddResourceV1beta2API
  • d0673db Run make update
  • 118546d Merge pull request #130556 from sreeram-venkitesh/kep-4960-container-stop-sig...
  • f9401a3 Merge pull request #130797 from jm-franc/configurable-tolerance
  • 9b3e544 Generated UPDATE_COMPATIBILITY_FIXTURE_DATA
  • Additional commits viewable in compare view

Updates k8s.io/apimachinery from 0.32.3 to 0.33.1

Commits
  • 173776a Merge pull request #131708tigrato/automated-cherry-pick-of-#131702
  • a3d1fde fix: fixes a possible panic in NewYAMLToJSONDecoder
  • 955939f bump etcd 3.5.21 sdk
  • e8a77bd Merge pull request #130910 from googs1025/fix/datarace
  • 7e8c77e Merge pull request #130906 from serathius/streaming-validation
  • 27fd396 flake: fix data race for func TestBackoff_Step
  • 8bcc6f1 Update kube-openapi and integrate streaming tags validation
  • 6ce776c Merge pull request #130857 from thockin/kk_small_vg_diffs
  • f2c94d6 Comment on origin and JSON schema
  • b63ba07 Use origin in validateFalse's own test
  • Additional commits viewable in compare view

Updates k8s.io/client-go from 0.32.3 to 0.33.1

Commits
  • e7397e5 Update dependencies to v0.33.1 tag
  • ecbbb06 bump etcd 3.5.21 sdk
  • 2086688 Merge pull request #129970 from mortent/AddResourceV1beta2API
  • dba34c7 Run make update
  • e359642 Merge pull request #130556 from sreeram-venkitesh/kep-4960-container-stop-sig...
  • 3bf0a05 Merge pull request #130797 from jm-franc/configurable-tolerance
  • 7a03a3b Generated files
  • 1676beb Refresh autogenerated files following the configurable tolerance updates.
  • 387edb8 Merge pull request #130967 from aojea/listers
  • 21dc3b4 benchmark to show inefficient linear search lookup
  • Additional commits viewable in compare view

Updates k8s.io/kubectl from 0.32.1 to 0.33.1

Commits
  • 4347e26 Update dependencies to v0.33.1 tag
  • 3432650 Automated cherry pick of #130503: Unhandled panic crash on rollout_history pr...
  • ce68e04 Merge remote-tracking branch 'origin/master' into release-1.33
  • 05423b2 Move to released version of prometheus/client_golang v1.22.0 from rc.0
  • dc53668 bump etcd 3.5.21 sdk
  • 5366de0 Merge pull request #129872 from seans3/websocket-https-proxy
  • 7577f36 Merge pull request #130880 from tallclair/ippr-allocatable
  • f38b1de Consider AllocatableResources when computing pod requests
  • 0d5516d Merge pull request #130033 from ardaguclu/completion-use-restclientgetter
  • 5cbdedb kubectl debug: Display a warning message that the debug container's capabilit...
  • Additional commits viewable in compare view

Updates sigs.k8s.io/cluster-api from 1.9.5 to 1.10.2

Release notes

Sourced from sigs.k8s.io/cluster-api's releases.

v1.10.2

👌 Kubernetes version support

  • Management Cluster: v1.28.x -> v1.33.x
  • Workload Cluster: v1.26.x -> v1.33.x

More information about version support can be found here

Changes since v1.10.1

📈 Overview

  • 10 new commits merged
  • 2 feature additions ✨
  • 3 bugs fixed 🐛

✨ New Features

  • Dependency: Complete bump to Kubernetes v1.33 (#12211)
  • Dependency: Update KUBEBUILDER_ENVTEST_KUBERNETES_VERSION (#12167)

🐛 Bug Fixes

  • Bootstrap: Relax minLength for bootstrap.dataSecretName to 0 (#12180)
  • ClusterClass: Fix pattern on Cluster classNamespace field (#12252)
  • Machine: fallback to InfraMachine providerID if Machine providerID is not set (#12209)

🌱 Others

  • Dependency: Bump cert-manager to v1.17.2 (#12217)
  • Dependency/Security: Bump modules to fix CVEs (#12176)
  • e2e: Add 1.33 kind image to mapper.go file (#12192)
  • e2e: Add an option to override custom node image name for kind cluster (#12239)

📖 Additionally, there has been 1 contribution to our documentation and book. (#12141)

Dependencies

Added

Nothing has changed.

Changed

  • golang.org/x/net: v0.37.0 → v0.38.0

Removed

Nothing has changed.

... (truncated)

Commits
  • 5255664 Merge pull request #12252 from sbueringer/pr-fix-namespace-pattern
  • 30e7a32 Fix pattern on Cluster classNamespace field
  • 29865ba Merge pull request #12239 from k8s-infra-cherrypick-robot/cherry-pick-12186-t...
  • 39207ca Add an option to override custom node image name for kind cluster
  • 718dac1 Merge pull request #12217 from k8s-infra-cherrypick-robot/cherry-pick-12210-t...
  • 44b27ea update cert-manager to v1.17.2
  • 805064e Merge pull request #12211 from k8s-infra-cherrypick-robot/cherry-pick-12206-t...
  • e6da064 Complete bump to Kubernetes v1.33
  • aa8714b Merge pull request #12209 from k8s-infra-cherrypick-robot/cherry-pick-11985-t...
  • 7f42ed7 drain node by infraMachine ProviderID
  • Additional commits viewable in compare view

Updates sigs.k8s.io/cluster-api/test from 1.9.6 to 1.10.2

Release notes

Sourced from sigs.k8s.io/cluster-api/test's releases.

v1.10.2

👌 Kubernetes version support

  • Management Cluster: v1.28.x -> v1.33.x
  • Workload Cluster: v1.26.x -> v1.33.x

More information about version support can be found here

Changes since v1.10.1

📈 Overview

  • 10 new commits merged
  • 2 feature additions ✨
  • 3 bugs fixed 🐛

✨ New Features

  • Dependency: Complete bump to Kubernetes v1.33 (#12211)
  • Dependency: Update KUBEBUILDER_ENVTEST_KUBERNETES_VERSION (#12167)

🐛 Bug Fixes

  • Bootstrap: Relax minLength for bootstrap.dataSecretName to 0 (#12180)
  • ClusterClass: Fix pattern on Cluster classNamespace field (#12252)
  • Machine: fallback to InfraMachine providerID if Machine providerID is not set (#12209)

🌱 Others

  • Dependency: Bump cert-manager to v1.17.2 (#12217)
  • Dependency/Security: Bump modules to fix CVEs (#12176)
  • e2e: Add 1.33 kind image to mapper.go file (#12192)
  • e2e: Add an option to override custom node image name for kind cluster (#12239)

📖 Additionally, there has been 1 contribution to our documentation and book. (#12141)

Dependencies

Added

Nothing has changed.

Changed

  • golang.org/x/net: v0.37.0 → v0.38.0

Removed

Nothing has changed.

... (truncated)

Commits
  • 5255664 Merge pull request #12252 from sbueringer/pr-fix-namespace-pattern
  • 30e7a32 Fix pattern on Cluster classNamespace field
  • 29865ba Merge pull request #12239 from k8s-infra-cherrypick-robot/cherry-pick-12186-t...
  • 39207ca Add an option to override custom node image name for kind cluster
  • 718dac1 Merge pull request #12217 from k8s-infra-cherrypick-robot/cherry-pick-12210-t...
  • 44b27ea update cert-manager to v1.17.2
  • 805064e Merge pull request #12211 from k8s-infra-cherrypick-robot/cherry-pick-12206-t...
  • e6da064 Complete bump to Kubernetes v1.33
  • aa8714b Merge pull request #12209 from k8s-infra-cherrypick-robot/cherry-pick-11985-t...
  • 7f42ed7 drain node by infraMachine ProviderID
  • Additional commits viewable in compare view

Updates sigs.k8s.io/controller-runtime from 0.20.4 to 0.21.0

Release notes

Sourced from sigs.k8s.io/controller-runtime's releases.

v0.21.0

Highlights

  • Bump to Kubernetes v1.33 libraries
  • Improvements for priority queue (#2374)
  • envtest now has an option to download envtest binaries (can be used to replace setup-envtest depending on use case)
  • Metric improvements: native histograms, all Go runtime metrics are enabled now
  • Various bug fixes
  • New reviewers: @​troy0820, @​JoelSpeed!!

⚠️ Breaking Changes

  • Bump to k8s.io/* v0.33.0 and Go 1.24 (#3104 #3142 #3161 #3204 #3215)
  • config: Stop enabling client-side ratelimiter by default (#3119)
    • Previous behavior can be preserved by setting QPS 20 and Burst 30 on the rest.Config
  • controller: NewUnmanaged/NewTypedUnmanaged: Stop requiring a manager (#3141)
  • reconcile: Deprecate Result.Requeue (#3107)

✨ New Features

  • controller: priority queue:
    • Add debug logging for the state of the priority queue (#3075)
    • Add priority label to queue depth metric (#3156)
    • Leverage IsInInitialList (#3162)
    • Remove redundant WithLowPriorityWhenUnchanged in builder (#3168)
    • Retain the priority after Reconcile (#3167)
    • Set priority automatically in handlers (#3111 #3152 #3160 #3174)
  • envtest: Add Environment.KubeConfig field (#2278)
  • envtest: Add option to download envtest binaries (#3135 #3137)
  • events: Add IsInInitialList to TypedCreateEvent (#3162)
  • log/zap: Enable panic log level (#3186)
  • logging: Adopt WarningHandlerWithContext (#3176)
  • logging: Improve logging by adopting contextual logging (#3149)
  • metrics: Adopt native histograms (#3165)
  • metrics: Expose all Go runtime metrics (#3070)

🐛 Bug Fixes

  • apiutil: restmapper: Respect preferred version (#3151)
  • builder: webhook: Fix custom path for webhook conflicts (#3102)
  • cache: Clone maps to prevent data races when concurrently creating caches using the same options (#3078)
  • cache: Stop accumulating lists in multi-namespace cache implementation (#3195)
  • cache: List out of global cache when present and necessary (#3126)
  • client: Return error if pagination is used with the cached client (#3134)
  • controller: Support WaitForSync in TypedSyncingSource (#3084)
  • controller: priority queue: Fix behavior of rate limit option in priorityqueue.AddWithOpts (#3103)
  • controller: priority queue: Yet another queue_depth metric fix (#3085)
  • controllerutil: CreateOrUpdate: Avoid panic when the MutateFn is nil (#2828)
  • envtest: Fix nil pointer exception in Stop() (#3153)
  • fake client: Fix data races when writing to the scheme (#3143)

... (truncated)

Commits
  • 71f7db5 Merge pull request #3225 from troy0820/troy0820/prepare-for-0.21-release
  • 52d8779 update README with go version
  • ab37f74 Merge pull request #3223 from troy0820/troy0820/return-warnings-on-webhooks
  • 250a88f return warnings on webhooks
  • 85ee7a9 Merge pull request #3217 from kubernetes-sigs/dependabot/github_actions/all-g...
  • 81f1fae 🌱 Bump the all-github-actions group across 1 directory with 3 updates
  • d9a2274 Merge pull request #3187 from dongjiang1989/update-golangci-lint-v2
  • 9c38211 update golangci-lint to v2
  • 9b5f6a7 Merge pull request #3208 from troy0820/troy0820/api-machinery-marshal
  • b3278df use sigs.k8s.io/json to unmarshal in fakeclient
  • Additional commits viewable in compare view

Updates github.com/prometheus/client_golang from 1.21.1 to 1.22.0

Release notes

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

v1.22.0 - 2025-04-07

⚠️ This release contains potential breaking change if you use experimental zstd support introduce in #1496 ⚠️

Experimental support for zstd on scrape was added, controlled by the request Accept-Encoding header. It was enabled by default since version 1.20, but now you need to add a blank import to enable it. The decision to make it opt-in by default was originally made because the Go standard library was expected to have default zstd support added soon, golang/go#62513 however, the work took longer than anticipated and it will be postponed to upcoming major Go versions.

e.g.:

import (
  _ "github.com/prometheus/client_golang/prometheus/promhttp/zstd"
)
  • [FEATURE] prometheus: Add new CollectorFunc utility #1724
  • [CHANGE] Minimum required Go version is now 1.22 (we also test client_golang against latest go version - 1.24) #1738
  • [FEATURE] api: WithLookbackDelta and WithStats options have been added to API client. #1743
  • [CHANGE] ⚠️ promhttp: Isolate zstd support and klauspost/compress library use to promhttp/zstd package. #1765

@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels May 23, 2025
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels May 23, 2025
Bumps the dependencies group with 11 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/getkin/kin-openapi](https://github.com/getkin/kin-openapi) | `0.131.0` | `0.132.0` |
| [github.com/lestrrat-go/jwx/v2](https://github.com/lestrrat-go/jwx) | `2.1.3` | `2.1.6` |
| [github.com/oapi-codegen/nethttp-middleware](https://github.com/oapi-codegen/nethttp-middleware) | `1.0.2` | `1.1.2` |
| [github.com/rancher/cluster-api-provider-rke2](https://github.com/rancher/cluster-api-provider-rke2) | `0.14.0` | `0.15.1` |
| [go.uber.org/mock](https://github.com/uber/mock) | `0.5.1` | `0.5.2` |
| [k8s.io/api](https://github.com/kubernetes/api) | `0.32.3` | `0.33.1` |
| [k8s.io/client-go](https://github.com/kubernetes/client-go) | `0.32.3` | `0.33.1` |
| [k8s.io/kubectl](https://github.com/kubernetes/kubectl) | `0.32.1` | `0.33.1` |
| [sigs.k8s.io/cluster-api](https://github.com/kubernetes-sigs/cluster-api) | `1.9.5` | `1.10.2` |
| [sigs.k8s.io/cluster-api/test](https://github.com/kubernetes-sigs/cluster-api) | `1.9.6` | `1.10.2` |
| [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime) | `0.20.4` | `0.21.0` |



Updates `github.com/getkin/kin-openapi` from 0.131.0 to 0.132.0
- [Release notes](https://github.com/getkin/kin-openapi/releases)
- [Commits](getkin/kin-openapi@v0.131.0...v0.132.0)

Updates `github.com/lestrrat-go/jwx/v2` from 2.1.3 to 2.1.6
- [Release notes](https://github.com/lestrrat-go/jwx/releases)
- [Changelog](https://github.com/lestrrat-go/jwx/blob/v2.1.6/Changes)
- [Commits](lestrrat-go/jwx@v2.1.3...v2.1.6)

Updates `github.com/oapi-codegen/nethttp-middleware` from 1.0.2 to 1.1.2
- [Release notes](https://github.com/oapi-codegen/nethttp-middleware/releases)
- [Commits](oapi-codegen/nethttp-middleware@v1.0.2...v1.1.2)

Updates `github.com/rancher/cluster-api-provider-rke2` from 0.14.0 to 0.15.1
- [Release notes](https://github.com/rancher/cluster-api-provider-rke2/releases)
- [Changelog](https://github.com/rancher/cluster-api-provider-rke2/blob/main/docs/release.md)
- [Commits](rancher/cluster-api-provider-rke2@v0.14.0...v0.15.1)

Updates `go.uber.org/mock` from 0.5.1 to 0.5.2
- [Release notes](https://github.com/uber/mock/releases)
- [Changelog](https://github.com/uber-go/mock/blob/main/CHANGELOG.md)
- [Commits](uber-go/mock@v0.5.1...v0.5.2)

Updates `k8s.io/api` from 0.32.3 to 0.33.1
- [Commits](kubernetes/api@v0.32.3...v0.33.1)

Updates `k8s.io/apimachinery` from 0.32.3 to 0.33.1
- [Commits](kubernetes/apimachinery@v0.32.3...v0.33.1)

Updates `k8s.io/client-go` from 0.32.3 to 0.33.1
- [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md)
- [Commits](kubernetes/client-go@v0.32.3...v0.33.1)

Updates `k8s.io/kubectl` from 0.32.1 to 0.33.1
- [Commits](kubernetes/kubectl@v0.32.1...v0.33.1)

Updates `sigs.k8s.io/cluster-api` from 1.9.5 to 1.10.2
- [Release notes](https://github.com/kubernetes-sigs/cluster-api/releases)
- [Commits](kubernetes-sigs/cluster-api@v1.9.5...v1.10.2)

Updates `sigs.k8s.io/cluster-api/test` from 1.9.6 to 1.10.2
- [Release notes](https://github.com/kubernetes-sigs/cluster-api/releases)
- [Commits](kubernetes-sigs/cluster-api@v1.9.6...v1.10.2)

Updates `sigs.k8s.io/controller-runtime` from 0.20.4 to 0.21.0
- [Release notes](https://github.com/kubernetes-sigs/controller-runtime/releases)
- [Changelog](https://github.com/kubernetes-sigs/controller-runtime/blob/main/RELEASE.md)
- [Commits](kubernetes-sigs/controller-runtime@v0.20.4...v0.21.0)

Updates `github.com/prometheus/client_golang` from 1.21.1 to 1.22.0
- [Release notes](https://github.com/prometheus/client_golang/releases)
- [Changelog](https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md)
- [Commits](prometheus/client_golang@v1.21.1...v1.22.0)

---
updated-dependencies:
- dependency-name: github.com/getkin/kin-openapi
  dependency-version: 0.132.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: github.com/lestrrat-go/jwx/v2
  dependency-version: 2.1.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: github.com/oapi-codegen/nethttp-middleware
  dependency-version: 1.1.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: github.com/rancher/cluster-api-provider-rke2
  dependency-version: 0.15.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: go.uber.org/mock
  dependency-version: 0.5.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: k8s.io/api
  dependency-version: 0.33.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: k8s.io/apimachinery
  dependency-version: 0.33.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: k8s.io/client-go
  dependency-version: 0.33.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: k8s.io/kubectl
  dependency-version: 0.33.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: sigs.k8s.io/cluster-api
  dependency-version: 1.10.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: sigs.k8s.io/cluster-api/test
  dependency-version: 1.10.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: sigs.k8s.io/controller-runtime
  dependency-version: 0.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: github.com/prometheus/client_golang
  dependency-version: 1.22.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/go_modules/dependencies-7d144ffbc8 branch from 8f59221 to ea0aa9a Compare May 23, 2025 23:37
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