controller-idioms
controller-idioms copied to clipboard
Bump the gomod-version group with 17 updates
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
998dce2Add initial support for custom seeds21fc82bfeat: add badger to the projects using this package on README.md66b1409feat: add ristretto to the Projects using this package on README.mdfe2f6e8Update 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 toAdd()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_MODIFIEDby 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
ErrEventOverflowif 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
ErrClosedonAdd()when the watcher is closed (#516)other: add
Watcher.ErrorsandWatcher.Eventsto the no-opWatcherinbackend_other.go, making it easier to use on unsupported platforms such as WASM, AIX, etc. (#528)other: use the
backend_other.gono-op if theappenginebuild 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 toAdd()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_MODIFIEDby 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
ErrEventOverflowif 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
cfc9c4fFew more tiny doc fixes >_<c3fa8e6Proof-read some docs and prepare 1.7.0 release5310461Remove stray trailing space in doc commentf01d91eAdd NewBufferedWatcher() (#572)e545940Merge pull request #589 from fsnotify/win-rmc86f21cDocument and test removing watched directory on Windows68111f2Merge pull request #588 from fsnotify/illumos0614185Add back illumos2f2332aIdiomatic bitwise operations769aaa7Tweak 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
- slogr: fix unintended API break in v1.4.0 by
@pohlyin go-logr/logr#253Full Changelog: https://github.com/go-logr/logr/compare/v1.4.0...v1.4.1
v1.4.0
This release dramatically improves interoperability with Go's
log/slogpackage. In particular,logr.NewContextandlogr.NewContextWithSlogLoggeruse the same context key, which allowslogr.FromContextandlogr.FromContextAsSlogLoggerto returnlogr.Loggeror*slog.Loggerrespectively, including transparently converting each to the other as needed.Functions
logr/slogr.NewLograndlogr/slogr.ToSlogHandlerhave been superceded bylogr.FromSlogHandlerandlogr.ToSlogHandlerrespectively, and typelogr/slogr.SlogSinkhas been superceded bylogr.SlogSink. All of the old names inlogr/slogrremain, for compatibility.Package
logr/funcrnow supportslogr.SlogSink, meaning that it's output passes all but one of the Slog conformance tests (that exception being thatfuncrhandles the timestamp itself).Users who have a
logr.Loggerand need a*slog.Loggercan callslog.New(logr.ToSlogHandler(...))and all output will go through the same stack.Users who have a
*slog.Loggerorslog.Handlercan calllogr.FromSlogHandler(...)and all output will go through the same stack.What's Changed
- slog context support by
@pohlyin go-logr/logr#237- slog support: fix WithGroup + WithValues combination by
@pohlyin go-logr/logr#243- Add tests for context with slog by
@thockinin go-logr/logr#246- sloghandler: unnamed groups should be inlined by
@thockinin go-logr/logr#245- Add SlogSink support to funcr by
@thockinin go-logr/logr#241- funcr: Add LogInfoLevel Option to skip logging level in the info log by
@spacewanderin go-logr/logr#240New Contributors
@spacewandermade their first contribution in go-logr/logr#240Full Changelog: https://github.com/go-logr/logr/compare/v1.3.0...v1.4.0
v1.3.0
This release adds support for slog in a new, self-contained
logr/slogrpackage. Implementers of alogr.LogSinkare encouraged, but not required, to extend their implementation to improve the quality of log output coming from aslogAPI call.Breaking change: the call depth for
LogSink.Enabledwhen called viaLogger.Enabledwas fixed to be the same as for other call paths. Implementers of aLogSinkwho 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
- Fix golangci-lint fails by
@thockinin go-logr/logr#173- Add minimal permissions to workflows by
@pnachtin go-logr/logr#177- Add a security policy by
@pnachtin go-logr/logr#178- Update security email by
@thockinin go-logr/logr#181- docs: explain relationship between Logger{} and Discard() by
@pohlyin go-logr/logr#182- Add the OpenSSF Scorecard workflow by
@pnachtin go-logr/logr#186- README: show of OpenSSF Scorecard badge by
@pohlyin go-logr/logr#187- Hash-pin workflow Actions by
@pnachtin go-logr/logr#189- Bump go versions to 1.18+ by
@thockinin go-logr/logr#203- slogr: add glue code for logging to slog.Handler and with slog.Logger by
@pohlyin go-logr/logr#205- slogr: restore original backend when converting back and forth by
@pohlyin go-logr/logr#210- slogr: add SlogSink by
@pohlyin go-logr/logr#211
... (truncated)
Commits
dcdc3f2slogr: fix unintended API break in v0.8.0 (#253)5d88f52funcr: Add LogInfoLevel Option to skip logging level in the info log (#240)177005dbuild(deps): bump actions/upload-artifact from 3.1.3 to 4.0.0e7f489abuild(deps): bump github/codeql-action from 2.22.9 to 3.22.11cf56c3bbuild(deps): bump actions/setup-go from 4 to 52ad296ebuild(deps): bump github/codeql-action from 2.22.8 to 2.22.9d55b4e2Merge pull request #241 from thockin/master98ee9d9Clean up slog testing and restore coverageb228ba8Break examples to new file6432877Add 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.ymlfile and some unused dependencies ingo.modresulting from ago mod tidyrun. Read on for the contents of thev6.8.0release:
- 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.20Detailed changes: https://github.com/maxbrunsfeld/counterfeiter/compare/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.20Detailed changes: https://github.com/maxbrunsfeld/counterfeiter/compare/v6.7.0...v6.8.0
Commits
09933earemove appveyor, and unnecessary dependenciesc0e6061:arrow_up: dependencies794d071ensure fakes are generated for genericparam in ci2c17700Merge commit 'pullrequests/Ralph7C2/genericparams'c1028daupdate instructions and usage5024b9cMerge pull request #270 from maxbrunsfeld/dependabot/go_modules/golang.org/x/...e64fdb2Bump golang.org/x/tools from 0.16.0 to 0.16.106a9d78Merge pull request #269 from maxbrunsfeld/dependabot/go_modules/golang.org/x/...03cc8faBump golang.org/x/tools from 0.15.0 to 0.16.0de30453address 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.0introduced 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 useprometheus/common v0.48.0or 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
@michurinmade their first contribution in prometheus/client_golang#1423@kavumade their first contribution in prometheus/client_golang#1445@ywwgmade their first contribution in prometheus/client_golang#1448Full Changelog: https://github.com/prometheus/client_golang/compare/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(...). #1360New Contributors
@srenatusmade their first contribution in prometheus/client_golang#1350@jadolgmade their first contribution in prometheus/client_golang#1342@manas-rustmade their first contribution in prometheus/client_golang#1383@bluekeyesmade their first contribution in prometheus/client_golang#1378@tsipomade their first contribution in prometheus/client_golang#1387Full Changelog: https://github.com/prometheus/client_golang/compare/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
- Merge v1.16.0 to main by
@bwplotkain prometheus/client_golang#1293- Synchronize common files from prometheus/prometheus by
@prombotin prometheus/client_golang#1297- ci: define minimal permissions to GitHub workflows by
@diogoteles08in prometheus/client_golang#1295- Do not allocate memory when there's no constraints by
@Okhoshiin prometheus/client_golang#1296- Bump golang.org/x/sys from 0.8.0 to 0.9.0 by
@dependabotin prometheus/client_golang#1306- Bump google.golang.org/grpc from 1.45.0 to 1.53.0 in /tutorial/whatsup by
@dependabotin prometheus/client_golang#1307- histogram: Enable detection of a native histogram without observations by
@beorn7in prometheus/client_golang#1314- Bump github.com/prometheus/procfs from 0.10.1 to 0.11.0 by
@dependabotin prometheus/client_golang#1305
... (truncated)
Changelog
Sourced from github.com/prometheus/client_golang's changelog.
1.19.0 / 2023-02-27
The module
prometheus/common v0.48.0introduced 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 useprometheus/common v0.48.0or 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(...). #13601.17.0 / 2023-09-27
Commits
77d4003Add 1.19.0 changelog (#1451)14259faMerge pull request #1448 from ywwg/owilliams/content-negotiation6d03920deps: bump prometheus/common version353395bRemove support for go 1.19 (#1449)9dd5d2aMerge pull request #1445 from kavu/add_go122_metrics_testc906a5eAdd support for Go 1.227ac9036Merge pull request #1440 from prometheus/dependabot/github_actions/github-act...8c7e30fMerge pull request #1441 from prometheus/dependabot/go_modules/tutorial/whats...08769f8Bump github.com/prometheus/common in /tutorial/whatsup83d5940Bump 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
- Fix Go modules version by
@SuperQin stretchr/testify#1394- Document that require is not safe to call in created goroutines by
@programmer04in stretchr/testify#1392- Remove myself from MAINTAINERS.md by
@mvdkleijnin stretchr/testify#1367- Correct spelling/grammar by
@echarrodin stretchr/testify#1389- docs: Update URLs in README by
@davidjbin stretchr/testify#1349- Update mockery link to Github Pages in README by
@LandonTClippin stretchr/testify#1346- docs: Fix typos in tests and comments by
@alexandearin stretchr/testify#1410- CI: tests from go1.17 by
@SuperQin stretchr/testify#1409- Fix adding ? when no values passed by
@lesichkovmin stretchr/testify#1320- codegen: use standard header for generated files by
@dolmenin stretchr/testify#1406- mock: AssertExpectations log reason only on failure by
@hikyaru-suzukiin stretchr/testify#1360- assert: fix flaky TestNeverTrue by
@dolmenin stretchr/testify#1417- README: fix typos "set up" vs "setup" by
@ossan-devin stretchr/testify#1428- mock: move regexp compilation outside of
Calledby@aud10slavein stretchr/testify#631- assert: refactor internal func getLen() by
@dolmenin stretchr/testify#1445- mock: deprecate type AnythingOfTypeArgument (#1434) by
@dolmenin stretchr/testify#1441- Remove no longer needed assert.canConvert by
@alexandearin stretchr/testify#1470- assert: ObjectsAreEqual: use time.Equal for time.Time types by
@tscalesin stretchr/testify#1464- Bump actions/checkout from 3 to 4 by
@dependabotin stretchr/testify#1466- Bump actions/setup-go from 3.2.0 to 4.1.0 by
@dependabotin stretchr/testify#1451- fix: make EventuallyWithT concurrency safe by
@czeslavoin stretchr/testify#1395- assert: fix httpCode and HTTPBody occur panic when http.Handler read Body by
@hiduin stretchr/testify#1484- assert.EqualExportedValues: fix handling of arrays by
@zrbeckerin stretchr/testify#1473- .github: use latest Go versions by
@kevinburkesegmentin stretchr/testify#1489- assert: Deprecate EqualExportedValues by
@HaraldNordgrenin stretchr/testify#1488- suite: refactor test assertions by
@alexandearin stretchr/testify#1474- suite: fix SetupSubTest and TearDownSubTest execution order by
@linusbarthin stretchr/testify#1471- docs: Fix deprecation comments for http package by
@alexandearin stretchr/testify#1335- Add map support doc comments to Subset and NotSubset by
@jedevcin stretchr/testify#1306- TestErrorIs/TestNotErrorIs: check error message contents by
@craig65535in stretchr/testify#1435- suite: fix subtest names (fix #1501) by
@dolmenin stretchr/testify#1504- assert: improve unsafe.Pointer tests by
@dolmenin stretchr/testify#1505- assert: simplify isNil implementation by
@dolmenin stretchr/testify#1506- assert.InEpsilonSlice: fix expected/actual order and other improvements by
@dolmenin stretchr/testify#1483- Fix dependency cycle with objx #1292 by
@dolmenin stretchr/testify#1453- mock: refactor TestIsArgsEqual by
@dolmenin stretchr/testify#1444- mock: optimize argument matching checks by
@dolmenin stretchr/testify#1416- assert: fix TestEventuallyTimeout by
@dolmenin stretchr/testify#1412- CI: add go 1.21 in GitHub Actions by
@dolmenin stretchr/testify#1450- suite: fix recoverAndFailOnPanic to report test failure at the right location by
@dolmenin stretchr/testify#1502- Update maintainers by
@brackendawsonin stretchr/testify#1533- assert: Fix EqualValues to handle overflow/underflow by
@arjunmahishiin stretchr/testify#1531- assert: better formatting for Len() error by
@kevinburkesegmentin stretchr/testify#1485- Ensure AssertExpectations does not fail in skipped tests by
@ianrose14in stretchr/testify#1331- suite: fix deadlock in suite.Require()/Assert() by
@arjunmahishiin stretchr/testify#1535- Revert "assert: ObjectsAreEqual: use time.Equal for time.Time type" by
@brackendawsonin stretchr/testify#1537- [chore] Add issue templates by
@arjunmahishiin stretchr/testify#1538- Update the build status badge by
@brackendawsonin stretchr/testify#1540
... (truncated)
Commits
bb548d0Merge pull request #1552 from stretchr/dependabot/go_modules/github.com/stret...814075fbuild(deps): bump github.com/stretchr/objx from 0.5.1 to 0.5.2e045612Merge pull request #1339 from bogdandrutu/uintptr5b6926dMerge pull request #1385 from hslatman/not-implements9f97d67Merge pull request #1550 from stretchr/release-notesbcb0d3fInclude the auto-release notes in releasesfb770f8Merge pull request #1247 from ccoVeille/typos85d8bb6fix typos in comments, tests and github templatese2741faMerge pull request #1548 from arjunmahishi/msgAndArgs6e59f20http_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
59c1ca1errgroup: add reference to sync.WaitGroup10739b0all: update go directive to 1.1822ba207singleflight: add panicError.Unwrap method- See full diff in compare view
Updates k8s.io/api from 0.28.0 to 0.30.0
Commits
fb932d2Update dependencies to v0.30.0 tagd014286Merge remote-tracking branch 'origin/master' into release-1.30581c1b8Update x/net for CVE-2023-4528835ca1f4Merge pull request #123932 from pohly/dra-api-resource-model-renameb048bd8Merge pull request #123909 from AkihiroSuda/fix-123906f06d24adra api: NodeResourceModel -> ResourceModel30e3187api: NodeStatus: rename RuntimeClasses to RuntimeHandlers96558b9Merge pull request #123792 from mimowo/propose-api-comments-fix089c7caMerge pull request #123180 from AkihiroSuda/rrob50824dapi: 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
37988e5Merge remote-tracking branch 'origin/master' into release-1.30c857a38Update x/net for CVE-2023-452880407311followup to allow special characters25164f7Merge pull request #123435 from tallclair/apparmor-gacbfe0a1Merge pull request #123758 from liggitt/protobump21d26b6Bump github.com/golang/protobuf v1.5.4, google.golang.org/protobuf v1.33.00c29f84Merge pull request #123385 from HirazawaUi/allow-special-characters60d24f2Merge pull request #123708 from p0lyn0mial/upstream-const-watchlist-bookmark-...513d23aapimachinery/meta/types.go: define InitialEventsAnnotationKey const67cb3a8Merge 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
9b2e61fUpdate dependencies to v0.30.0 tag15c77ceMerge remote-tracking branch 'origin/master' into release-1.3061d3001Renameclustertostorage_cluster_idfor apiserver_storage_size_bytes metricd97582eMerge remote-tracking branch 'origin/master' into release-1.302071c4dUpdate x/net for CVE-2023-45288341f6dfMerge pull request #123994 from serathius/undo-double-run-test-watch-semantics7a3a726Undo double run of the TestWatchSemantics test to avoid hitting timeoute166c44Merge pull request #123785 from seans3/streamtunnel-unit-testsec72042Merge pull request #123935 from serathius/consistent-watch-from-etcd13a815bServe 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
d57b959Update dependencies to v0.30.0 tagceb92baMerge remote-tracking branch 'origin/master' into release-1.3060fc039Update x/net for CVE-2023-45288c8b7f6aBump github.com/golang/protobuf v1.5.4, google.golang.org/protobuf v1.33.0eeedba7Merge pull request #123529 from thockin/go-workspacesba82cfdFix up go.mod files after reviews76839eeRemove old gengo detritus0e03d76Re-vendor latest kube-openapi and gengo/v25f372cdGenerate go.work filesc66e3bfMerge 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
3aa4577Update dependencies to v0.30.0 tag2df4de1Merge remote-tracking branch 'origin/master' into release-1.30ade2ae2Update x/net for CVE-2023-45288b4632b7Merge pull request #123932 from pohly/dra-api-resource-model-rename4467b1eMerge pull request #123909 from AkihiroSuda/fix-123906650f392dra api: NodeResourceModel -> ResourceModel00e4609api: NodeStatus: rename RuntimeClasses to RuntimeHandlers7ebe0eaMerge pull request #123180 from AkihiroSuda/rro3be09aaapi: KEP-3857: Recursive Read-only (RRO) mounts110b75bMerge 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
98e79b8Update dependencies to v0.30.0 tag0ac84efMerge remote-tracking branch 'origin/master' into release-1.302e27a0cUpdate x/net for CVE-2023-45288ecbd1b6Merge pull request #123732 from serathius/parallel-featureflagsb0a6e40Merge pull request #123758 from liggitt/protobump- Description%20has%20been%20truncated%0A" rel="nofollow" target="_blank" >