Bump the kubernetes group with 6 updates
Type: Pull Request
State: Closed
Association: None
Comments: 1
(5 months ago)
(4 months ago)
(4 months ago)
dependencies
Bumps the kubernetes group with 6 updates:
| Package | From | To |
|---|---|---|
| k8s.io/api | 0.32.2 |
0.33.1 |
| k8s.io/apimachinery | 0.32.2 |
0.33.1 |
| k8s.io/client-go | 0.32.2 |
0.33.1 |
| k8s.io/component-base | 0.32.2 |
0.33.1 |
| k8s.io/kube-openapi | 0.0.0-20241105132330-32ad38e42d3f |
0.0.0-20250318190949-c8a335a9a2ff |
| sigs.k8s.io/controller-runtime | 0.19.3 |
0.21.0 |
Updates k8s.io/api from 0.32.2 to 0.33.1
Commits
04f698eUpdate dependencies to v0.33.1 tag16cedc7Merge pull request #131088 from atiratree/rename-terminating-replicas-fgdc88679Merge pull request #131103 from ahrtr/etcd_sdk_202503284a456a2bump etcd 3.5.21 sdk96e38c9rename DeploymentPodReplacementPolicy FG to DeploymentReplicaSetTerminatingRe...c21a017Merge pull request #129970 from mortent/AddResourceV1beta2APId0673dbRun make update118546dMerge pull request #130556 from sreeram-venkitesh/kep-4960-container-stop-sig...f9401a3Merge pull request #130797 from jm-franc/configurable-tolerance9b3e544Generated UPDATE_COMPATIBILITY_FIXTURE_DATA- Additional commits viewable in compare view
Updates k8s.io/apimachinery from 0.32.2 to 0.33.1
Commits
173776aMerge pull request #131708tigrato/automated-cherry-pick-of-#131702a3d1fdefix: fixes a possible panic inNewYAMLToJSONDecoder955939fbump etcd 3.5.21 sdke8a77bdMerge pull request #130910 from googs1025/fix/datarace7e8c77eMerge pull request #130906 from serathius/streaming-validation27fd396flake: fix data race for func TestBackoff_Step8bcc6f1Update kube-openapi and integrate streaming tags validation6ce776cMerge pull request #130857 from thockin/kk_small_vg_diffsf2c94d6Comment on origin and JSON schemab63ba07Use origin in validateFalse's own test- Additional commits viewable in compare view
Updates k8s.io/client-go from 0.32.2 to 0.33.1
Commits
e7397e5Update dependencies to v0.33.1 tagecbbb06bump etcd 3.5.21 sdk2086688Merge pull request #129970 from mortent/AddResourceV1beta2APIdba34c7Run make updatee359642Merge pull request #130556 from sreeram-venkitesh/kep-4960-container-stop-sig...3bf0a05Merge pull request #130797 from jm-franc/configurable-tolerance7a03a3bGenerated files1676bebRefresh autogenerated files following the configurable tolerance updates.387edb8Merge pull request #130967 from aojea/listers21dc3b4benchmark to show inefficient linear search lookup- Additional commits viewable in compare view
Updates k8s.io/component-base from 0.32.2 to 0.33.1
Commits
849956dUpdate dependencies to v0.33.1 tag8e0b9e8Merge remote-tracking branch 'origin/master' into release-1.3321643b0Move to released version of prometheus/client_golang v1.22.0 from rc.0316f3e2bump etcd 3.5.21 sdkf52df19Merge pull request #129872 from seans3/websocket-https-proxycc34cc0Merge pull request #130916 from richabanker/oidc-flags-v34906cf7Merge pull request #130930 from siyuanfoundation/helpfdef30fMerge pull request #130447 from pohly/dra-device-taints8618ec8Merge pull request #130079 from yongruilin/compatibility-remove-reset1565ae1chore: update emulation version help msg.- Additional commits viewable in compare view
Updates k8s.io/kube-openapi from 0.0.0-20241105132330-32ad38e42d3f to 0.0.0-20250318190949-c8a335a9a2ff
Commits
- See full diff in compare view
Updates sigs.k8s.io/controller-runtime from 0.19.3 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!!:warning: 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):sparkles: 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: 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
71f7db5Merge pull request #3225 from troy0820/troy0820/prepare-for-0.21-release52d8779update README with go versionab37f74Merge pull request #3223 from troy0820/troy0820/return-warnings-on-webhooks250a88freturn warnings on webhooks85ee7a9Merge pull request #3217 from kubernetes-sigs/dependabot/github_actions/all-g...81f1fae:seedling: Bump the all-github-actions group across 1 directory with 3 updatesd9a2274Merge pull request #3187 from dongjiang1989/update-golangci-lint-v29c38211update golangci-lint to v29b5f6a7Merge pull request #3208 from troy0820/troy0820/api-machinery-marshalb3278dfuse sigs.k8s.io/json to unmarshal in fakeclient- Additional commits viewable in compare view
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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions
Pull Request Statistics
0
0
+0
-0
Package Dependencies
sigs.k8s.io/controller-runtime
go
0.19.3 → 0.21.0
Minor
k8s.io/kube-openapi
go
0.0.0-20241105132330-32ad38e42d3f → 0.0.0-20250318190949-c8a335a9a2ff
Technical Details
| ID: | 2330403 |
| UUID: | 3113537682 |
| Node ID: | PR_kwDOCshED86YzRyg |
| Host: | GitHub |
| Repository: | cbandy/postgres-operator |