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

Bump the gomod-version group with 17 updates #69

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 1, 2024

Bumps the gomod-version group with 17 updates:

Package From To
github.com/cespare/xxhash/v2 2.2.0 2.3.0
github.com/fsnotify/fsnotify 1.6.0 1.7.0
github.com/go-logr/logr 1.2.4 1.4.1
github.com/maxbrunsfeld/counterfeiter/v6 6.7.0 6.8.1
github.com/prometheus/client_golang 1.16.0 1.19.0
github.com/stretchr/testify 1.8.4 1.9.0
golang.org/x/sync 0.3.0 0.6.0
k8s.io/api 0.28.0 0.30.0
k8s.io/apimachinery 0.28.0 0.30.0
k8s.io/apiserver 0.28.0 0.30.0
k8s.io/cli-runtime 0.28.0 0.30.0
k8s.io/client-go 0.28.0 0.30.0
k8s.io/component-base 0.28.0 0.30.0
k8s.io/controller-manager 0.28.0 0.30.0
k8s.io/klog/v2 2.100.1 2.120.1
k8s.io/kubectl 0.28.0 0.30.0
k8s.io/utils 0.0.0-20230406110748-d93618cff8a2 0.0.0-20230726121419-3b25d923346b

Updates github.com/cespare/xxhash/v2 from 2.2.0 to 2.3.0

Commits
  • 998dce2 Add initial support for custom seeds
  • 21fc82b feat: add badger to the projects using this package on README.md
  • 66b1409 feat: add ristretto to the Projects using this package on README.md
  • fe2f6e8 Update Go versions for GH action
  • See full diff in compare view

Updates github.com/fsnotify/fsnotify from 1.6.0 to 1.7.0

Release notes

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

v1.7.0

This version of fsnotify needs Go 1.17.

Additions

  • illumos: add FEN backend to support illumos and Solaris. (#371)

  • all: add NewBufferedWatcher() to use a buffered channel, which can be useful in cases where you can't control the kernel buffer and receive a large number of events in bursts. (#550, #572)

  • all: add AddWith(), which is identical to Add() but allows passing options. (#521)

  • windows: allow setting the ReadDirectoryChangesW() buffer size with fsnotify.WithBufferSize(); the default of 64K is the highest value that works on all platforms and is enough for most purposes, but in some cases a highest buffer is needed. (#521)

Changes and fixes

  • inotify: remove watcher if a watched path is renamed (#518)

    After a rename the reported name wasn't updated, or even an empty string. Inotify doesn't provide any good facilities to update it, so just remove the watcher. This is already how it worked on kqueue and FEN.

    On Windows this does work, and remains working.

  • windows: don't listen for file attribute changes (#520)

    File attribute changes are sent as FILE_ACTION_MODIFIED by the Windows API, with no way to see if they're a file write or attribute change, so would show up as a fsnotify.Write event. This is never useful, and could result in many spurious Write events.

  • windows: return ErrEventOverflow if the buffer is full (#525)

    Before it would merely return "short read", making it hard to detect this error.

  • kqueue: make sure events for all files are delivered properly when removing a watched directory (#526)

    Previously they would get sent with "" (empty string) or "." as the path name.

  • kqueue: don't emit spurious Create events for symbolic links (#524)

    The link would get resolved but kqueue would "forget" it already saw the link itself, resulting on a Create for every Write event for the directory.

  • all: return ErrClosed on Add() when the watcher is closed (#516)

  • other: add Watcher.Errors and Watcher.Events to the no-op Watcher in backend_other.go, making it easier to use on unsupported platforms such as WASM, AIX, etc. (#528)

  • other: use the backend_other.go no-op if the appengine build tag is set; Google AppEngine forbids usage of the unsafe package so the inotify backend won't compile there.

#371: fsnotify/fsnotify#371 #516: fsnotify/fsnotify#516 #518: fsnotify/fsnotify#518 #520: fsnotify/fsnotify#520 #521: fsnotify/fsnotify#521 #524: fsnotify/fsnotify#524 #525: fsnotify/fsnotify#525

... (truncated)

Changelog

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

1.7.0 - 2023-10-22

This version of fsnotify needs Go 1.17.

Additions

  • illumos: add FEN backend to support illumos and Solaris. (#371)

  • all: add NewBufferedWatcher() to use a buffered channel, which can be useful in cases where you can't control the kernel buffer and receive a large number of events in bursts. (#550, #572)

  • all: add AddWith(), which is identical to Add() but allows passing options. (#521)

  • windows: allow setting the ReadDirectoryChangesW() buffer size with fsnotify.WithBufferSize(); the default of 64K is the highest value that works on all platforms and is enough for most purposes, but in some cases a highest buffer is needed. (#521)

Changes and fixes

  • inotify: remove watcher if a watched path is renamed (#518)

    After a rename the reported name wasn't updated, or even an empty string. Inotify doesn't provide any good facilities to update it, so just remove the watcher. This is already how it worked on kqueue and FEN.

    On Windows this does work, and remains working.

  • windows: don't listen for file attribute changes (#520)

    File attribute changes are sent as FILE_ACTION_MODIFIED by the Windows API, with no way to see if they're a file write or attribute change, so would show up as a fsnotify.Write event. This is never useful, and could result in many spurious Write events.

  • windows: return ErrEventOverflow if the buffer is full (#525)

    Before it would merely return "short read", making it hard to detect this error.

  • kqueue: make sure events for all files are delivered properly when removing a watched directory (#526)

    Previously they would get sent with "" (empty string) or "." as the path name.

  • kqueue: don't emit spurious Create events for symbolic links (#524)

... (truncated)

Commits
  • cfc9c4f Few more tiny doc fixes >_<
  • c3fa8e6 Proof-read some docs and prepare 1.7.0 release
  • 5310461 Remove stray trailing space in doc comment
  • f01d91e Add NewBufferedWatcher() (#572)
  • e545940 Merge pull request #589 from fsnotify/win-rm
  • c86f21c Document and test removing watched directory on Windows
  • 68111f2 Merge pull request #588 from fsnotify/illumos
  • 0614185 Add back illumos
  • 2f2332a Idiomatic bitwise operations
  • 769aaa7 Tweak docs
  • Additional commits viewable in compare view

Updates github.com/go-logr/logr from 1.2.4 to 1.4.1

Release notes

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

v1.4.1

What's Changed

Full Changelog: go-logr/logr@v1.4.0...v1.4.1

v1.4.0

This release dramatically improves interoperability with Go's log/slog package. In particular, logr.NewContext and logr.NewContextWithSlogLogger use the same context key, which allows logr.FromContext and logr.FromContextAsSlogLogger to return logr.Logger or *slog.Logger respectively, including transparently converting each to the other as needed.

Functions logr/slogr.NewLogr and logr/slogr.ToSlogHandler have been superceded by logr.FromSlogHandler and logr.ToSlogHandler respectively, and type logr/slogr.SlogSink has been superceded by logr.SlogSink. All of the old names in logr/slogr remain, for compatibility.

Package logr/funcr now supports logr.SlogSink, meaning that it's output passes all but one of the Slog conformance tests (that exception being that funcr handles the timestamp itself).

Users who have a logr.Logger and need a *slog.Logger can call slog.New(logr.ToSlogHandler(...)) and all output will go through the same stack.

Users who have a *slog.Logger or slog.Handler can call logr.FromSlogHandler(...) and all output will go through the same stack.

What's Changed

New Contributors

Full Changelog: go-logr/logr@v1.3.0...v1.4.0

v1.3.0

This release adds support for slog in a new, self-contained logr/slogr package. Implementers of a logr.LogSink are encouraged, but not required, to extend their implementation to improve the quality of log output coming from a slog API call.

Breaking change: the call depth for LogSink.Enabled when called via Logger.Enabled was fixed to be the same as for other call paths. Implementers of a LogSink who have worked around this bug will need to remove their workarounds.

Security best practices were improved. Only Go versions >= 1.18 are supported by this release.

What's Changed

... (truncated)

Commits
  • dcdc3f2 slogr: fix unintended API break in v0.8.0 (#253)
  • 5d88f52 funcr: Add LogInfoLevel Option to skip logging level in the info log (#240)
  • 177005d build(deps): bump actions/upload-artifact from 3.1.3 to 4.0.0
  • e7f489a build(deps): bump github/codeql-action from 2.22.9 to 3.22.11
  • cf56c3b build(deps): bump actions/setup-go from 4 to 5
  • 2ad296e build(deps): bump github/codeql-action from 2.22.8 to 2.22.9
  • d55b4e2 Merge pull request #241 from thockin/master
  • 98ee9d9 Clean up slog testing and restore coverage
  • b228ba8 Break examples to new file
  • 6432877 Add benchmarks for slogSink
  • Additional commits viewable in compare view

Updates github.com/maxbrunsfeld/counterfeiter/v6 from 6.7.0 to 6.8.1

Release notes

Sourced from github.com/maxbrunsfeld/counterfeiter/v6's releases.

v6.8.1

This patch release removes the unused appveyor.yml file and some unused dependencies in go.mod resulting from a go mod tidy run. Read on for the contents of the v6.8.0 release:

  • support generic function parameters and return types (#258 via @​Ralph7C2 - thanks Ralph!)
  • ⬆️ dependency updates
  • 🧹 clean up CI (removed Circle, AppVeyor, started using Windows workers on GitHub)
  • change go.mod to 1.20

Detailed changes: maxbrunsfeld/counterfeiter@v6.7.0...v6.8.1

v6.8.0

  • support generic function parameters and return types (#258 via @​Ralph7C2 - thanks Ralph!)
  • ⬆️ dependency updates
  • 🧹 clean up CI (removed Circle, AppVeyor, started using Windows workers on GitHub)
  • change go.mod to 1.20

Detailed changes: maxbrunsfeld/counterfeiter@v6.7.0...v6.8.0

Commits
  • 09933ea remove appveyor, and unnecessary dependencies
  • c0e6061 ⬆️ dependencies
  • 794d071 ensure fakes are generated for genericparam in ci
  • 2c17700 Merge commit 'pullrequests/Ralph7C2/genericparams'
  • c1028da update instructions and usage
  • 5024b9c Merge pull request #270 from maxbrunsfeld/dependabot/go_modules/golang.org/x/...
  • e64fdb2 Bump golang.org/x/tools from 0.16.0 to 0.16.1
  • 06a9d78 Merge pull request #269 from maxbrunsfeld/dependabot/go_modules/golang.org/x/...
  • 03cc8fa Bump golang.org/x/tools from 0.15.0 to 0.16.0
  • de30453 address lint warnings
  • Additional commits viewable in compare view

Updates github.com/prometheus/client_golang from 1.16.0 to 1.19.0

Release notes

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

v1.19.0

What's Changed

The module prometheus/common v0.48.0 introduced an incompatibility when used together with client_golang (See prometheus/client_golang#1448 for more details). If your project uses client_golang and you want to use prometheus/common v0.48.0 or higher, please update client_golang to v1.19.0.

  • [CHANGE] Minimum required go version is now 1.20 (we also test client_golang against new 1.22 version). #1445 #1449
  • [FEATURE] collectors: Add version collector. #1422 #1427

New Contributors

Full Changelog: prometheus/client_golang@v1.18.0...v1.19.0

v1.18.0

What's Changed

  • [FEATURE] promlint: Allow creation of custom metric validations. #1311
  • [FEATURE] Go programs using client_golang can be built in wasip1 OS. #1350
  • [BUGFIX] histograms: Add timer to reset ASAP after bucket limiting has happened. #1367
  • [BUGFIX] testutil: Fix comparison of metrics with empty Help strings. #1378
  • [ENHANCEMENT] Improved performance of MetricVec.WithLabelValues(...). #1360

New Contributors

Full Changelog: prometheus/client_golang@v1.17.0...v1.18.0

v1.17.0

What's Changed

  • [CHANGE] Minimum required go version is now 1.19 (we also test client_golang against new 1.21 version). #1325
  • [FEATURE] Add support for Created Timestamps in Counters, Summaries and Historams. #1313
  • [ENHANCEMENT] Enable detection of a native histogram without observations. #1314

... (truncated)

Changelog

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

1.19.0 / 2023-02-27

The module prometheus/common v0.48.0 introduced an incompatibility when used together with client_golang (See prometheus/client_golang#1448 for more details). If your project uses client_golang and you want to use prometheus/common v0.48.0 or higher, please update client_golang to v1.19.0.

  • [CHANGE] Minimum required go version is now 1.20 (we also test client_golang against new 1.22 version). #1445 #1449
  • [FEATURE] collectors: Add version collector. #1422 #1427

1.18.0 / 2023-12-22

  • [FEATURE] promlint: Allow creation of custom metric validations. #1311
  • [FEATURE] Go programs using client_golang can be built in wasip1 OS. #1350
  • [BUGFIX] histograms: Add timer to reset ASAP after bucket limiting has happened. #1367
  • [BUGFIX] testutil: Fix comparison of metrics with empty Help strings. #1378
  • [ENHANCEMENT] Improved performance of MetricVec.WithLabelValues(...). #1360

1.17.0 / 2023-09-27

  • [CHANGE] Minimum required go version is now 1.19 (we also test client_golang against new 1.21 version). #1325
  • [FEATURE] Add support for Created Timestamps in Counters, Summaries and Historams. #1313
  • [ENHANCEMENT] Enable detection of a native histogram without observations. #1314
Commits
  • 77d4003 Add 1.19.0 changelog (#1451)
  • 14259fa Merge pull request #1448 from ywwg/owilliams/content-negotiation
  • 6d03920 deps: bump prometheus/common version
  • 353395b Remove support for go 1.19 (#1449)
  • 9dd5d2a Merge pull request #1445 from kavu/add_go122_metrics_test
  • c906a5e Add support for Go 1.22
  • 7ac9036 Merge pull request #1440 from prometheus/dependabot/github_actions/github-act...
  • 8c7e30f Merge pull request #1441 from prometheus/dependabot/go_modules/tutorial/whats...
  • 08769f8 Bump github.com/prometheus/common in /tutorial/whatsup
  • 83d5940 Bump the github-actions group with 2 updates
  • Additional commits viewable in compare view

Updates github.com/stretchr/testify from 1.8.4 to 1.9.0

Release notes

Sourced from github.com/stretchr/testify's releases.

v1.9.0

What's Changed

... (truncated)

Commits
  • bb548d0 Merge pull request #1552 from stretchr/dependabot/go_modules/github.com/stret...
  • 814075f build(deps): bump github.com/stretchr/objx from 0.5.1 to 0.5.2
  • e045612 Merge pull request #1339 from bogdandrutu/uintptr
  • 5b6926d Merge pull request #1385 from hslatman/not-implements
  • 9f97d67 Merge pull request #1550 from stretchr/release-notes
  • bcb0d3f Include the auto-release notes in releases
  • fb770f8 Merge pull request #1247 from ccoVeille/typos
  • 85d8bb6 fix typos in comments, tests and github templates
  • e2741fa Merge pull request #1548 from arjunmahishi/msgAndArgs
  • 6e59f20 http_assertions: assert that the msgAndArgs actually works in tests
  • Additional commits viewable in compare view

Updates golang.org/x/sync from 0.3.0 to 0.6.0

Commits
  • 59c1ca1 errgroup: add reference to sync.WaitGroup
  • 10739b0 all: update go directive to 1.18
  • 22ba207 singleflight: add panicError.Unwrap method
  • See full diff in compare view

Updates k8s.io/api from 0.28.0 to 0.30.0

Commits
  • fb932d2 Update dependencies to v0.30.0 tag
  • d014286 Merge remote-tracking branch 'origin/master' into release-1.30
  • 581c1b8 Update x/net for CVE-2023-45288
  • 35ca1f4 Merge pull request #123932 from pohly/dra-api-resource-model-rename
  • b048bd8 Merge pull request #123909 from AkihiroSuda/fix-123906
  • f06d24a dra api: NodeResourceModel -> ResourceModel
  • 30e3187 api: NodeStatus: rename RuntimeClasses to RuntimeHandlers
  • 96558b9 Merge pull request #123792 from mimowo/propose-api-comments-fix
  • 089c7ca Merge pull request #123180 from AkihiroSuda/rro
  • b50824d api: KEP-3857: Recursive Read-only (RRO) mounts
  • Additional commits viewable in compare view

Updates k8s.io/apimachinery from 0.28.0 to 0.30.0

Commits
  • 37988e5 Merge remote-tracking branch 'origin/master' into release-1.30
  • c857a38 Update x/net for CVE-2023-45288
  • 0407311 followup to allow special characters
  • 25164f7 Merge pull request #123435 from tallclair/apparmor-ga
  • cbfe0a1 Merge pull request #123758 from liggitt/protobump
  • 21d26b6 Bump github.com/golang/protobuf v1.5.4, google.golang.org/protobuf v1.33.0
  • 0c29f84 Merge pull request #123385 from HirazawaUi/allow-special-characters
  • 60d24f2 Merge pull request #123708 from p0lyn0mial/upstream-const-watchlist-bookmark-...
  • 513d23a apimachinery/meta/types.go: define InitialEventsAnnotationKey const
  • 67cb3a8 Merge pull request #123413 from seans3/tunneling-spdy-websockets
  • Additional commits viewable in compare view

Updates k8s.io/apiserver from 0.28.0 to 0.30.0

Commits
  • 9b2e61f Update dependencies to v0.30.0 tag
  • 15c77ce Merge remote-tracking branch 'origin/master' into release-1.30
  • 61d3001 Rename cluster to storage_cluster_id for apiserver_storage_size_bytes metric
  • d97582e Merge remote-tracking branch 'origin/master' into release-1.30
  • 2071c4d Update x/net for CVE-2023-45288
  • 341f6df Merge pull request #123994 from serathius/undo-double-run-test-watch-semantics
  • 7a3a726 Undo double run of the TestWatchSemantics test to avoid hitting timeout
  • e166c44 Merge pull request #123785 from seans3/streamtunnel-unit-tests
  • ec72042 Merge pull request #123935 from serathius/consistent-watch-from-etcd
  • 13a815b Serve watch without resourceVersion from cache and introduce a WatchFromStora...
  • Additional commits viewable in compare view

Updates k8s.io/cli-runtime from 0.28.0 to 0.30.0

Commits
  • d57b959 Update dependencies to v0.30.0 tag
  • ceb92ba Merge remote-tracking branch 'origin/master' into release-1.30
  • 60fc039 Update x/net for CVE-2023-45288
  • c8b7f6a Bump github.com/golang/protobuf v1.5.4, google.golang.org/protobuf v1.33.0
  • eeedba7 Merge pull request #123529 from thockin/go-workspaces
  • ba82cfd Fix up go.mod files after reviews
  • 76839ee Remove old gengo detritus
  • 0e03d76 Re-vendor latest kube-openapi and gengo/v2
  • 5f372cd Generate go.work files
  • c66e3bf Merge pull request #122569 from IvoGoman/wrap-nomatcherror
  • Additional commits viewable in compare view

Updates k8s.io/client-go from 0.28.0 to 0.30.0

Commits
  • 3aa4577 Update dependencies to v0.30.0 tag
  • 2df4de1 Merge remote-tracking branch 'origin/master' into release-1.30
  • ade2ae2 Update x/net for CVE-2023-45288
  • b4632b7 Merge pull request #123932 from pohly/dra-api-resource-model-rename
  • 4467b1e Merge pull request #123909 from AkihiroSuda/fix-123906
  • 650f392 dra api: NodeResourceModel -> ResourceModel
  • 00e4609 api: NodeStatus: rename RuntimeClasses to RuntimeHandlers
  • 7ebe0ea Merge pull request #123180 from AkihiroSuda/rro
  • 3be09aa api: KEP-3857: Recursive Read-only (RRO) mounts
  • 110b75b Merge pull request #123344 from nilekhc/svm-controller
  • Additional commits viewable in compare view

Updates k8s.io/component-base from 0.28.0 to 0.30.0

Commits

Bumps the gomod-version group with 17 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/cespare/xxhash/v2](https://github.com/cespare/xxhash) | `2.2.0` | `2.3.0` |
| [github.com/fsnotify/fsnotify](https://github.com/fsnotify/fsnotify) | `1.6.0` | `1.7.0` |
| [github.com/go-logr/logr](https://github.com/go-logr/logr) | `1.2.4` | `1.4.1` |
| [github.com/maxbrunsfeld/counterfeiter/v6](https://github.com/maxbrunsfeld/counterfeiter) | `6.7.0` | `6.8.1` |
| [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) | `1.16.0` | `1.19.0` |
| [github.com/stretchr/testify](https://github.com/stretchr/testify) | `1.8.4` | `1.9.0` |
| [golang.org/x/sync](https://github.com/golang/sync) | `0.3.0` | `0.6.0` |
| [k8s.io/api](https://github.com/kubernetes/api) | `0.28.0` | `0.30.0` |
| [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery) | `0.28.0` | `0.30.0` |
| [k8s.io/apiserver](https://github.com/kubernetes/apiserver) | `0.28.0` | `0.30.0` |
| [k8s.io/cli-runtime](https://github.com/kubernetes/cli-runtime) | `0.28.0` | `0.30.0` |
| [k8s.io/client-go](https://github.com/kubernetes/client-go) | `0.28.0` | `0.30.0` |
| [k8s.io/component-base](https://github.com/kubernetes/component-base) | `0.28.0` | `0.30.0` |
| [k8s.io/controller-manager](https://github.com/kubernetes/controller-manager) | `0.28.0` | `0.30.0` |
| [k8s.io/klog/v2](https://github.com/kubernetes/klog) | `2.100.1` | `2.120.1` |
| [k8s.io/kubectl](https://github.com/kubernetes/kubectl) | `0.28.0` | `0.30.0` |
| [k8s.io/utils](https://github.com/kubernetes/utils) | `0.0.0-20230406110748-d93618cff8a2` | `0.0.0-20230726121419-3b25d923346b` |


Updates `github.com/cespare/xxhash/v2` from 2.2.0 to 2.3.0
- [Commits](cespare/xxhash@v2.2.0...v2.3.0)

Updates `github.com/fsnotify/fsnotify` from 1.6.0 to 1.7.0
- [Release notes](https://github.com/fsnotify/fsnotify/releases)
- [Changelog](https://github.com/fsnotify/fsnotify/blob/main/CHANGELOG.md)
- [Commits](fsnotify/fsnotify@v1.6.0...v1.7.0)

Updates `github.com/go-logr/logr` from 1.2.4 to 1.4.1
- [Release notes](https://github.com/go-logr/logr/releases)
- [Changelog](https://github.com/go-logr/logr/blob/master/CHANGELOG.md)
- [Commits](go-logr/logr@v1.2.4...v1.4.1)

Updates `github.com/maxbrunsfeld/counterfeiter/v6` from 6.7.0 to 6.8.1
- [Release notes](https://github.com/maxbrunsfeld/counterfeiter/releases)
- [Commits](maxbrunsfeld/counterfeiter@v6.7.0...v6.8.1)

Updates `github.com/prometheus/client_golang` from 1.16.0 to 1.19.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.16.0...v1.19.0)

Updates `github.com/stretchr/testify` from 1.8.4 to 1.9.0
- [Release notes](https://github.com/stretchr/testify/releases)
- [Commits](stretchr/testify@v1.8.4...v1.9.0)

Updates `golang.org/x/sync` from 0.3.0 to 0.6.0
- [Commits](golang/sync@v0.3.0...v0.6.0)

Updates `k8s.io/api` from 0.28.0 to 0.30.0
- [Commits](kubernetes/api@v0.28.0...v0.30.0)

Updates `k8s.io/apimachinery` from 0.28.0 to 0.30.0
- [Commits](kubernetes/apimachinery@v0.28.0...v0.30.0)

Updates `k8s.io/apiserver` from 0.28.0 to 0.30.0
- [Commits](kubernetes/apiserver@v0.28.0...v0.30.0)

Updates `k8s.io/cli-runtime` from 0.28.0 to 0.30.0
- [Commits](kubernetes/cli-runtime@v0.28.0...v0.30.0)

Updates `k8s.io/client-go` from 0.28.0 to 0.30.0
- [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md)
- [Commits](kubernetes/client-go@v0.28.0...v0.30.0)

Updates `k8s.io/component-base` from 0.28.0 to 0.30.0
- [Commits](kubernetes/component-base@v0.28.0...v0.30.0)

Updates `k8s.io/controller-manager` from 0.28.0 to 0.30.0
- [Commits](kubernetes/controller-manager@v0.28.0...v0.30.0)

Updates `k8s.io/klog/v2` from 2.100.1 to 2.120.1
- [Release notes](https://github.com/kubernetes/klog/releases)
- [Changelog](https://github.com/kubernetes/klog/blob/main/RELEASE.md)
- [Commits](kubernetes/klog@v2.100.1...v2.120.1)

Updates `k8s.io/kubectl` from 0.28.0 to 0.30.0
- [Commits](kubernetes/kubectl@v0.28.0...v0.30.0)

Updates `k8s.io/utils` from 0.0.0-20230406110748-d93618cff8a2 to 0.0.0-20230726121419-3b25d923346b
- [Commits](https://github.com/kubernetes/utils/commits)

---
updated-dependencies:
- dependency-name: github.com/cespare/xxhash/v2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-version
- dependency-name: github.com/fsnotify/fsnotify
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-version
- dependency-name: github.com/go-logr/logr
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-version
- dependency-name: github.com/maxbrunsfeld/counterfeiter/v6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-version
- dependency-name: github.com/prometheus/client_golang
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-version
- dependency-name: github.com/stretchr/testify
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-version
- dependency-name: golang.org/x/sync
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-version
- dependency-name: k8s.io/api
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-version
- dependency-name: k8s.io/apimachinery
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-version
- dependency-name: k8s.io/apiserver
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-version
- dependency-name: k8s.io/cli-runtime
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-version
- dependency-name: k8s.io/client-go
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-version
- dependency-name: k8s.io/component-base
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-version
- dependency-name: k8s.io/controller-manager
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-version
- dependency-name: k8s.io/klog/v2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-version
- dependency-name: k8s.io/kubectl
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-version
- dependency-name: k8s.io/utils
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-version
...

Signed-off-by: dependabot[bot] <support@github.com>
Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 1, 2024

Superseded by #70.

@dependabot dependabot bot closed this Jun 1, 2024
@dependabot dependabot bot deleted the dependabot/go_modules/gomod-version-5bcf402db2 branch June 1, 2024 22:09
@github-actions github-actions bot locked and limited conversation to collaborators Jun 1, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
area/dependencies Affects dependencies
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants