Skip to content

🌱 Bump the all-go-mod-patch-and-minor group across 3 directories with 14 updates #12194

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

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the all-go-mod-patch-and-minor group with 6 updates in the / directory:

Package From To
golang.org/x/oauth2 0.29.0 0.30.0
golang.org/x/text 0.24.0 0.25.0
k8s.io/api 0.32.3 0.32.4
k8s.io/apiextensions-apiserver 0.32.3 0.32.4
k8s.io/cluster-bootstrap 0.32.3 0.32.4
golang.org/x/net 0.39.0 0.40.0

Bumps the all-go-mod-patch-and-minor group with 3 updates in the /hack/tools directory: k8s.io/cluster-bootstrap, google.golang.org/api and sigs.k8s.io/controller-tools.
Bumps the all-go-mod-patch-and-minor group with 1 update in the /test directory: k8s.io/cluster-bootstrap.

Updates golang.org/x/oauth2 from 0.29.0 to 0.30.0

Commits
  • cf14319 oauth2: fix expiration time window check
  • 32d34ef internal: include clientID in auth style cache key
  • 2d34e30 oauth2: replace a magic number with AuthStyleUnknown
  • 696f7b3 all: modernize with doc links and any
  • 471209b oauth2: drop dependency on go-cmp
  • 6968da2 oauth2: sync Token.ExpiresIn from internal Token
  • d2c4e0a oauth2: context instead of golang.org/x/net/context in doc
  • 883dc3c endpoints: add various endpoints from stale CLs
  • 1c06e87 all: make use of oauth.Token.ExpiresIn
  • See full diff in compare view

Updates golang.org/x/text from 0.24.0 to 0.25.0

Commits

Updates k8s.io/api from 0.32.3 to 0.32.4

Commits

Updates k8s.io/apiextensions-apiserver from 0.32.3 to 0.32.4

Commits

Updates k8s.io/apimachinery from 0.32.3 to 0.32.4

Commits

Updates k8s.io/apiserver from 0.32.3 to 0.32.4

Commits
  • 50ab89a Update dependencies to v0.32.4 tag
  • 1ea4fbd Merge pull request #130773JoelSpeed/automated-cherry-pick-of-#130450
  • 2b3ba41 Merge pull request #131159wojtek-t/automated-cherry-pick-of-#131020
  • b90acb6 Fix race for sending errors in watch
  • 1e00f2c Fix implementation of ContainsCIDR to allow non-equal addresses
  • See full diff in compare view

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

Commits

Updates k8s.io/cluster-bootstrap from 0.32.3 to 0.32.4

Commits

Updates k8s.io/component-base from 0.32.3 to 0.32.4

Commits

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

Commits
  • 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
  • a3b6e77 quic: don't re-lose packets when discarding keys
  • 22500a6 quic: decode packet numbers >255 in tests
  • dd0b200 quic: remove go1.21 build constraint
  • See full diff in compare view

Updates k8s.io/cluster-bootstrap from 0.32.3 to 0.32.4

Commits

Updates google.golang.org/api from 0.230.0 to 0.232.0

Release notes

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

v0.232.0

0.232.0 (2025-05-05)

Features

v0.231.0

0.231.0 (2025-04-29)

Features

Changelog

Sourced from google.golang.org/api's changelog.

0.232.0 (2025-05-05)

Features

0.231.0 (2025-04-29)

Features

Commits

Updates sigs.k8s.io/controller-tools from 0.17.0 to 0.18.0

Release notes

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

v0.18.0

What's Changed

Misc

envtest

Dependency bumps

... (truncated)

Commits
  • 51a8bf2 Merge pull request #1203 from dongjiang1989/update-k8s-v1.33-fix
  • de0c57a Bump to k8s.io/* v0.33.0
  • 0f30144 Merge pull request #1202 from sbueringer/pr-envtest-promo-v1.33.0
  • ddbc81c Promotion of envtest release for Kubernetes v1.33.0
  • b1bf32f Merge pull request #1201 from sbueringer/pr-envtest-v0.33-ii
  • 054543a Release envtest v1.33.0 (try 2)
  • bd1faab Merge pull request #1198 from dongjiang1989/update-envtest-1.33
  • dfabafd add envtest v1.33.0
  • 19b9620 Merge pull request #1198 from dongjiang1989/update-envtest-1.33
  • 8508a20 Merge pull request #1187 from kubernetes-sigs/dependabot/go_modules/all-go-mo...
  • Additional commits viewable in compare view

Updates github.com/prometheus/client_golang from 1.19.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

... (truncated)

Changelog

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

1.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

1.21.1 / 2025-03-04

  • [BUGFIX] prometheus: Revert of Inc, Add and Observe cumulative metric CAS optimizations (#1661), causing regressions on low contention cases.
  • [BUGFIX] prometheus: Fix GOOS=ios build, broken due to process_collector_* wrong build tags.

1.21.0 / 2025-02-17

⚠️ This release contains potential breaking change if you upgrade github.com/prometheus/common to 0.62+ together with client_golang. ⚠️

New common version changes model.NameValidationScheme global variable, which relaxes the validation of label names and metric name, allowing all UTF-8 characters. Typically, this should not break any user, unless your test or usage expects strict certain names to panic/fail on client_golang metric registration, gathering or scrape. In case of problems change model.NameValidationScheme to old model.LegacyValidation value in your project init function.

  • [BUGFIX] gocollector: Fix help message for runtime/metric metrics. #1583
  • [BUGFIX] prometheus: Fix Desc.String() method for no labels case. #1687
  • [ENHANCEMENT] prometheus: Optimize popular prometheus.BuildFQName function; now up to 30% faster. #1665
  • [ENHANCEMENT] prometheus: Optimize Inc, Add and Observe cumulative metrics; now up to 50% faster under high concurrent contention. #1661
  • [CHANGE] Upgrade prometheus/common to 0.62.0 which changes model.NameValidationScheme global variable. #1712
  • [CHANGE] Add support for Go 1.23. #1602
  • [FEATURE] process_collector: Add support for Darwin systems. #1600 #1616 #1625 #1675 #1715
  • [FEATURE] api: Add ability to invoke CloseIdleConnections on api.Client using api.Client.(CloseIdler).CloseIdleConnections() casting. #1513
  • [FEATURE] promhttp: Add promhttp.HandlerOpts.EnableOpenMetricsTextCreatedSamples option to create OpenMetrics _created lines. Not recommended unless you want to use opt-in Created Timestamp feature. Community works on OpenMetrics 2.0 format that should make those lines obsolete (they increase cardinality significantly). #1408
  • [FEATURE] prometheus: Add NewConstNativeHistogram function. #1654

1.20.5 / 2024-10-15

  • [BUGFIX] testutil: Reverted #1424; functions using compareMetricFamilies are (again) only failing if filtered metricNames are in the expected input.

1.20.4 / 2024-09-07

... (truncated)

Commits
  • d50be25 Cut 1.22.0 (#1793)
  • 1043db7 Cut 1.22.0-rc.0 (#1768)
  • e575c9c promhttp: Isolate zstd support and klauspost/compress library use to promhttp...
  • f2276aa Merge pull request #1764 from prometheus/dependabot/github_actions/github-act...
  • 9df772c build(deps): bump peter-evans/create-pull-request
  • a3548c5 Merge pull request #1754 from saswatamcode/exp-eh
  • 60fd2b0 Remove go.work file for now
  • 8f9d0de exp: Add dependabot config
  • c5cf981 Merge pull request #1762 from prometheus/release-1.21
  • 8a42da3 Fix ios build. (#1758)
  • Additional commits viewable in compare view

Updates github.com/prometheus/common from 0.55.0 to 0.62.0

Release notes

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

v0.62.0

⚠️ This releases switches internal global to UTF8Validation from LegacyValidation. This is a breaking change, relaxing the validation. We don't intend to add more schemas and we have to have a global for unmarshalling interfaces, thus the change was made ⚠️

What's Changed

New Contributors

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

v0.61.0

What's Changed

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

v0.60.1

What's Changed

... (truncated)

Commits
  • 280b0e7 http_config: Allow customizing TLS config and settings. (#748)
  • aea8919 Update common Prometheus files (#747)
  • 8d916fa Bump golang.org/x/net from 0.32.0 to 0.33.0 (#743)
  • fe88605 Bump google.golang.org/protobuf from 1.35.2 to 1.36.1 (#744)
  • 5d9961d Update common Prometheus files (#742)
  • 0a89b98 Merge pull request #740 from dashpole/update_om_links
  • e3926e2 update links to openmetrics to reference the v1.0.0 release
  • d88ee1f Remove deprecated sigv4 module (#737)
  • c3fdb17 Remove deprecated promlog package (#738)
  • cf5f48f Change default validation scheme to UTF8Validation (#724)
  • Additional commits viewable in compare view

Updates k8s.io/api from 0.32.4 to 0.33.0

Commits

Updates k8s.io/apiextensions-apiserver from 0.32.4 to 0.33.0

Commits

Updates k8s.io/apimachinery from 0.32.4 to 0.33.0

Commits

Updates k8s.io/apiserver from 0.32.4 to 0.33.0

Commits
  • 50ab89a Update dependencies to v0.32.4 tag
  • 1ea4fbd Merge pull request #130773JoelSpeed/automated-cherry-pick-of-#130450
  • 2b3ba41 Merge pull request #131159wojtek-t/automated-cherry-pick-of-#131020
  • b90acb6 Fix race for sending errors in watch
  • 1e00f2c Fix implementation of ContainsCIDR to allow non-equal addresses
  • See full diff in compare view

Updates k8s.io/client-go from 0.32.4 to 0.33.0

Commits

Updates k8s.io/component-base from 0.32.4 to 0.33.0

Commits

Updates k8s.io/cluster-bootstrap from 0.32.3 to 0.32.4

Commits

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
sigs.k8s.io/controller-tools [>= 0.17.a, < 0.18]

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...

Description has been truncated

… 14 updates

Bumps the all-go-mod-patch-and-minor group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [golang.org/x/oauth2](https://github.com/golang/oauth2) | `0.29.0` | `0.30.0` |
| [golang.org/x/text](https://github.com/golang/text) | `0.24.0` | `0.25.0` |
| [k8s.io/api](https://github.com/kubernetes/api) | `0.32.3` | `0.32.4` |
| [k8s.io/apiextensions-apiserver](https://github.com/kubernetes/apiextensions-apiserver) | `0.32.3` | `0.32.4` |
| [k8s.io/cluster-bootstrap](https://github.com/kubernetes/cluster-bootstrap) | `0.32.3` | `0.32.4` |
| [golang.org/x/net](https://github.com/golang/net) | `0.39.0` | `0.40.0` |

Bumps the all-go-mod-patch-and-minor group with 3 updates in the /hack/tools directory: [k8s.io/cluster-bootstrap](https://github.com/kubernetes/cluster-bootstrap), [google.golang.org/api](https://github.com/googleapis/google-api-go-client) and [sigs.k8s.io/controller-tools](https://github.com/kubernetes-sigs/controller-tools).
Bumps the all-go-mod-patch-and-minor group with 1 update in the /test directory: [k8s.io/cluster-bootstrap](https://github.com/kubernetes/cluster-bootstrap).


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

Updates `golang.org/x/text` from 0.24.0 to 0.25.0
- [Release notes](https://github.com/golang/text/releases)
- [Commits](golang/text@v0.24.0...v0.25.0)

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

Updates `k8s.io/apiextensions-apiserver` from 0.32.3 to 0.32.4
- [Release notes](https://github.com/kubernetes/apiextensions-apiserver/releases)
- [Commits](kubernetes/apiextensions-apiserver@v0.32.3...v0.32.4)

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

Updates `k8s.io/apiserver` from 0.32.3 to 0.32.4
- [Commits](kubernetes/apiserver@v0.32.3...v0.32.4)

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

Updates `k8s.io/cluster-bootstrap` from 0.32.3 to 0.32.4
- [Commits](kubernetes/cluster-bootstrap@v0.32.3...v0.32.4)

Updates `k8s.io/component-base` from 0.32.3 to 0.32.4
- [Commits](kubernetes/component-base@v0.32.3...v0.32.4)

Updates `golang.org/x/net` from 0.39.0 to 0.40.0
- [Commits](golang/net@v0.39.0...v0.40.0)

Updates `k8s.io/cluster-bootstrap` from 0.32.3 to 0.32.4
- [Commits](kubernetes/cluster-bootstrap@v0.32.3...v0.32.4)

Updates `google.golang.org/api` from 0.230.0 to 0.232.0
- [Release notes](https://github.com/googleapis/google-api-go-client/releases)
- [Changelog](https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md)
- [Commits](googleapis/google-api-go-client@v0.230.0...v0.232.0)

Updates `sigs.k8s.io/controller-tools` from 0.17.0 to 0.18.0
- [Release notes](https://github.com/kubernetes-sigs/controller-tools/releases)
- [Changelog](https://github.com/kubernetes-sigs/controller-tools/blob/main/envtest-releases.yaml)
- [Commits](kubernetes-sigs/controller-tools@v0.17.0...v0.18.0)

Updates `github.com/prometheus/client_golang` from 1.19.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.19.1...v1.22.0)

Updates `github.com/prometheus/common` from 0.55.0 to 0.62.0
- [Release notes](https://github.com/prometheus/common/releases)
- [Changelog](https://github.com/prometheus/common/blob/main/RELEASE.md)
- [Commits](prometheus/common@v0.55.0...v0.62.0)

Updates `k8s.io/api` from 0.32.4 to 0.33.0
- [Commits](kubernetes/api@v0.32.3...v0.32.4)

Updates `k8s.io/apiextensions-apiserver` from 0.32.4 to 0.33.0
- [Release notes](https://github.com/kubernetes/apiextensions-apiserver/releases)
- [Commits](kubernetes/apiextensions-apiserver@v0.32.3...v0.32.4)

Updates `k8s.io/apimachinery` from 0.32.4 to 0.33.0
- [Commits](kubernetes/apimachinery@v0.32.3...v0.32.4)

Updates `k8s.io/apiserver` from 0.32.4 to 0.33.0
- [Commits](kubernetes/apiserver@v0.32.3...v0.32.4)

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

Updates `k8s.io/component-base` from 0.32.4 to 0.33.0
- [Commits](kubernetes/component-base@v0.32.3...v0.32.4)

Updates `k8s.io/cluster-bootstrap` from 0.32.3 to 0.32.4
- [Commits](kubernetes/cluster-bootstrap@v0.32.3...v0.32.4)

---
updated-dependencies:
- dependency-name: golang.org/x/oauth2
  dependency-version: 0.30.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: golang.org/x/text
  dependency-version: 0.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/api
  dependency-version: 0.32.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/apiextensions-apiserver
  dependency-version: 0.32.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/apimachinery
  dependency-version: 0.32.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/apiserver
  dependency-version: 0.32.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/client-go
  dependency-version: 0.32.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/cluster-bootstrap
  dependency-version: 0.32.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/component-base
  dependency-version: 0.32.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: golang.org/x/net
  dependency-version: 0.40.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/cluster-bootstrap
  dependency-version: 0.32.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: google.golang.org/api
  dependency-version: 0.232.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: sigs.k8s.io/controller-tools
  dependency-version: 0.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/prometheus/client_golang
  dependency-version: 1.22.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/prometheus/common
  dependency-version: 0.62.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/api
  dependency-version: 0.33.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/apiextensions-apiserver
  dependency-version: 0.33.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/apimachinery
  dependency-version: 0.33.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/apiserver
  dependency-version: 0.33.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/client-go
  dependency-version: 0.33.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/component-base
  dependency-version: 0.33.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/cluster-bootstrap
  dependency-version: 0.32.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added area/dependency Issues or PRs related to dependency changes ok-to-test Indicates a non-member PR verified by an org member that is safe to test. labels May 12, 2025
@k8s-ci-robot k8s-ci-robot added the cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. label May 12, 2025
@k8s-ci-robot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by:
Once this PR has been reviewed and has the lgtm label, please assign justinsb for approval. For more information see the Code Review Process.

The full list of commands accepted by this bot can be found here.

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@k8s-ci-robot
Copy link
Contributor

Hi @dependabot[bot]. Thanks for your PR.

I'm waiting for a kubernetes-sigs member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@k8s-ci-robot k8s-ci-robot added the size/L Denotes a PR that changes 100-499 lines, ignoring generated files. label May 12, 2025
@k8s-ci-robot
Copy link
Contributor

@dependabot[bot]: The following tests failed, say /retest to rerun all failed tests or /retest-required to rerun all mandatory failed tests:

Test name Commit Details Required Rerun command
pull-cluster-api-verify-main 59b0b99 link true /test pull-cluster-api-verify-main
pull-cluster-api-build-main 59b0b99 link true /test pull-cluster-api-build-main

Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here.

@sbueringer
Copy link
Member

/hold

Bumps too far. Will do that with the cr bump

@k8s-ci-robot k8s-ci-robot added the do-not-merge/hold Indicates that a PR should not merge because someone has issued a /hold command. label May 13, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github May 15, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this May 15, 2025
@dependabot dependabot bot deleted the dependabot/go_modules/all-go-mod-patch-and-minor-1ec2d2fa0f branch May 15, 2025 05:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/dependency Issues or PRs related to dependency changes cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. do-not-merge/hold Indicates that a PR should not merge because someone has issued a /hold command. ok-to-test Indicates a non-member PR verified by an org member that is safe to test. size/L Denotes a PR that changes 100-499 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants