Skip to content

Commit b52c962

Browse files
committed
deps: Update Kubernetes Runtime
1 parent 5b85757 commit b52c962

File tree

3 files changed

+120
-126
lines changed

3 files changed

+120
-126
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -440,10 +440,10 @@ CRD_REF_DOCS ?= $(LOCALBIN)/crd-ref-docs
440440
# Important note: avoid adding spaces in the macro declarations as any
441441
# additional whitespace will break the renovate regex rules.
442442

443-
KUBECTL_VERSION=v1.29.3# renovate datasource=github-tags depName=kubernetes/kubernetes
443+
KUBECTL_VERSION=v1.32.2# renovate datasource=github-tags depName=kubernetes/kubernetes
444444
TERRAFORM_VERSION=v1.8.5# renovate datasource=github-tags depName=hashicorp/terraform
445445

446-
CONTROLLER_TOOLS_VERSION=v0.14.0# renovate datasource=go depName=sigs.k8s.io/controller-tools
446+
CONTROLLER_TOOLS_VERSION=v0.17.2# renovate datasource=go depName=sigs.k8s.io/controller-tools
447447
CRD_REF_DOCS_VERSION=v0.0.12# renovate datasource=go depName=github.com/elastic/crd-ref-docs
448448
GOLANGCI_LINT_VERSION=v1.59.1# renovate datasource=go depName=github.com/golangci/golangci-lint/cmd/golangci-lint
449449
GO_LICENSES_VERSION=v1.6.0# renovate datasource=go depName=github.com/google/go-licenses

go.mod

+36-36
Original file line numberDiff line numberDiff line change
@@ -1,69 +1,69 @@
11
module github.com/GoogleCloudPlatform/cloud-sql-proxy-operator
22

3-
go 1.22
3+
go 1.23.0
4+
5+
toolchain go1.24.0
46

57
require (
6-
github.com/go-logr/logr v1.4.1
8+
github.com/go-logr/logr v1.4.2
79
go.uber.org/zap v1.27.0
8-
k8s.io/api v0.29.3
9-
k8s.io/apimachinery v0.29.3
10-
k8s.io/client-go v0.29.3
11-
sigs.k8s.io/controller-runtime v0.17.2
10+
k8s.io/api v0.32.2
11+
k8s.io/apimachinery v0.32.2
12+
k8s.io/client-go v0.32.2
13+
sigs.k8s.io/controller-runtime v0.20.1
1214
sigs.k8s.io/yaml v1.4.0
1315
)
1416

1517
require (
1618
github.com/beorn7/perks v1.0.1 // indirect
17-
github.com/cespare/xxhash/v2 v2.2.0 // indirect
18-
github.com/davecgh/go-spew v1.1.1 // indirect
19+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
20+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
1921
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
2022
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
21-
github.com/evanphx/json-patch/v5 v5.8.0 // indirect
23+
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
2224
github.com/fsnotify/fsnotify v1.7.0 // indirect
25+
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
2326
github.com/go-logr/zapr v1.3.0 // indirect
24-
github.com/go-openapi/jsonpointer v0.19.6 // indirect
27+
github.com/go-openapi/jsonpointer v0.21.0 // indirect
2528
github.com/go-openapi/jsonreference v0.20.2 // indirect
26-
github.com/go-openapi/swag v0.22.3 // indirect
29+
github.com/go-openapi/swag v0.23.0 // indirect
2730
github.com/gogo/protobuf v1.3.2 // indirect
28-
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
2931
github.com/golang/protobuf v1.5.4 // indirect
32+
github.com/google/btree v1.1.3 // indirect
3033
github.com/google/gnostic-models v0.6.8 // indirect
3134
github.com/google/go-cmp v0.6.0 // indirect
3235
github.com/google/gofuzz v1.2.0 // indirect
33-
github.com/google/uuid v1.3.0 // indirect
34-
github.com/imdario/mergo v0.3.12 // indirect
36+
github.com/google/uuid v1.6.0 // indirect
3537
github.com/josharian/intern v1.0.0 // indirect
3638
github.com/json-iterator/go v1.1.12 // indirect
3739
github.com/mailru/easyjson v0.7.7 // indirect
38-
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
3940
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
4041
github.com/modern-go/reflect2 v1.0.2 // indirect
4142
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
4243
github.com/pkg/errors v0.9.1 // indirect
43-
github.com/prometheus/client_golang v1.18.0 // indirect
44-
github.com/prometheus/client_model v0.5.0 // indirect
45-
github.com/prometheus/common v0.45.0 // indirect
46-
github.com/prometheus/procfs v0.12.0 // indirect
44+
github.com/prometheus/client_golang v1.19.1 // indirect
45+
github.com/prometheus/client_model v0.6.1 // indirect
46+
github.com/prometheus/common v0.55.0 // indirect
47+
github.com/prometheus/procfs v0.15.1 // indirect
4748
github.com/spf13/pflag v1.0.5 // indirect
49+
github.com/x448/float16 v0.8.4 // indirect
4850
go.uber.org/multierr v1.11.0 // indirect
49-
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect
50-
golang.org/x/net v0.23.0 // indirect
51-
golang.org/x/oauth2 v0.12.0 // indirect
52-
golang.org/x/sys v0.18.0 // indirect
53-
golang.org/x/term v0.18.0 // indirect
54-
golang.org/x/text v0.14.0 // indirect
55-
golang.org/x/time v0.3.0 // indirect
51+
golang.org/x/net v0.30.0 // indirect
52+
golang.org/x/oauth2 v0.23.0 // indirect
53+
golang.org/x/sync v0.8.0 // indirect
54+
golang.org/x/sys v0.26.0 // indirect
55+
golang.org/x/term v0.25.0 // indirect
56+
golang.org/x/text v0.19.0 // indirect
57+
golang.org/x/time v0.7.0 // indirect
5658
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
57-
google.golang.org/appengine v1.6.7 // indirect
58-
google.golang.org/protobuf v1.33.0 // indirect
59+
google.golang.org/protobuf v1.35.1 // indirect
60+
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
5961
gopkg.in/inf.v0 v0.9.1 // indirect
60-
gopkg.in/yaml.v2 v2.4.0 // indirect
6162
gopkg.in/yaml.v3 v3.0.1 // indirect
62-
k8s.io/apiextensions-apiserver v0.29.0 // indirect
63-
k8s.io/component-base v0.29.0 // indirect
64-
k8s.io/klog/v2 v2.110.1 // indirect
65-
k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 // indirect
66-
k8s.io/utils v0.0.0-20230726121419-3b25d923346b // indirect
67-
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
68-
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
63+
k8s.io/apiextensions-apiserver v0.32.0 // indirect
64+
k8s.io/klog/v2 v2.130.1 // indirect
65+
k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f // indirect
66+
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738 // indirect
67+
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect
68+
sigs.k8s.io/structured-merge-diff/v4 v4.4.2 // indirect
6969
)

0 commit comments

Comments
 (0)