Skip to content

Commit d993573

Browse files
committed
Bump to controller-runtime v0.20, controller-tools v0.17
Signed-off-by: Stefan Büringer [email protected]
1 parent 07d97c6 commit d993573

File tree

7 files changed

+223
-238
lines changed

7 files changed

+223
-238
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ SETUP_ENVTEST_BIN := setup-envtest
106106
SETUP_ENVTEST := $(abspath $(TOOLS_BIN_DIR)/$(SETUP_ENVTEST_BIN)-$(SETUP_ENVTEST_VER))
107107
SETUP_ENVTEST_PKG := sigs.k8s.io/controller-runtime/tools/setup-envtest
108108

109-
CONTROLLER_GEN_VER := v0.16.1
109+
CONTROLLER_GEN_VER := v0.17.0
110110
CONTROLLER_GEN_BIN := controller-gen
111111
CONTROLLER_GEN := $(abspath $(TOOLS_BIN_DIR)/$(CONTROLLER_GEN_BIN)-$(CONTROLLER_GEN_VER))
112112
CONTROLLER_GEN_PKG := sigs.k8s.io/controller-tools/cmd/controller-gen

go.mod

Lines changed: 23 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module sigs.k8s.io/cluster-api
22

3-
go 1.22.0
3+
go 1.23.0
44

55
require (
66
github.com/MakeNowJust/heredoc v1.0.0
@@ -18,7 +18,7 @@ require (
1818
github.com/go-logr/logr v1.4.2
1919
github.com/gobuffalo/flect v1.0.3
2020
// Note: This must be kept in sync with the version used by k8s.io.
21-
github.com/google/cel-go v0.20.1
21+
github.com/google/cel-go v0.22.0
2222
github.com/google/go-cmp v0.6.0
2323
github.com/google/go-github/v53 v53.2.0
2424
github.com/google/gofuzz v1.2.0
@@ -40,21 +40,22 @@ require (
4040
golang.org/x/text v0.21.0
4141
gomodules.xyz/jsonpatch/v2 v2.4.0
4242
google.golang.org/grpc v1.65.1
43-
k8s.io/api v0.31.4
44-
k8s.io/apiextensions-apiserver v0.31.4
45-
k8s.io/apimachinery v0.31.4
46-
k8s.io/apiserver v0.31.4
47-
k8s.io/client-go v0.31.4
43+
k8s.io/api v0.32.1
44+
k8s.io/apiextensions-apiserver v0.32.1
45+
k8s.io/apimachinery v0.32.1
46+
k8s.io/apiserver v0.32.1
47+
k8s.io/client-go v0.32.1
4848
k8s.io/cluster-bootstrap v0.31.4
49-
k8s.io/component-base v0.31.4
49+
k8s.io/component-base v0.32.1
5050
k8s.io/klog/v2 v2.130.1
51-
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340
52-
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8
53-
sigs.k8s.io/controller-runtime v0.19.4
51+
k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f
52+
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738
53+
sigs.k8s.io/controller-runtime v0.20.0
5454
sigs.k8s.io/yaml v1.4.0
5555
)
5656

5757
require (
58+
cel.dev/expr v0.18.0 // indirect
5859
dario.cat/mergo v1.0.1 // indirect
5960
github.com/Masterminds/goutils v1.1.1 // indirect
6061
github.com/Masterminds/semver/v3 v3.3.0 // indirect
@@ -79,13 +80,13 @@ require (
7980
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
8081
github.com/go-logr/stdr v1.2.2 // indirect
8182
github.com/go-logr/zapr v1.3.0 // indirect
82-
github.com/go-openapi/jsonpointer v0.19.6 // indirect
83+
github.com/go-openapi/jsonpointer v0.21.0 // indirect
8384
github.com/go-openapi/jsonreference v0.20.2 // indirect
84-
github.com/go-openapi/swag v0.22.4 // indirect
85+
github.com/go-openapi/swag v0.23.0 // indirect
8586
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
8687
github.com/gogo/protobuf v1.3.2 // indirect
87-
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
8888
github.com/golang/protobuf v1.5.4 // indirect
89+
github.com/google/btree v1.1.3 // indirect
8990
github.com/google/gnostic-models v0.6.8 // indirect
9091
github.com/google/go-querystring v1.1.0 // indirect
9192
github.com/google/pprof v0.0.0-20241210010833-40e02aabc2ad // indirect
@@ -94,7 +95,6 @@ require (
9495
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 // indirect
9596
github.com/hashicorp/hcl v1.0.0 // indirect
9697
github.com/huandu/xstrings v1.5.0 // indirect
97-
github.com/imdario/mergo v0.3.13 // indirect
9898
github.com/inconshreveable/mousetrap v1.1.0 // indirect
9999
github.com/josharian/intern v1.0.0 // indirect
100100
github.com/json-iterator/go v1.1.12 // indirect
@@ -106,7 +106,7 @@ require (
106106
github.com/mitchellh/copystructure v1.2.0 // indirect
107107
github.com/mitchellh/mapstructure v1.5.0 // indirect
108108
github.com/mitchellh/reflectwalk v1.0.2 // indirect
109-
github.com/moby/spdystream v0.4.0 // indirect
109+
github.com/moby/spdystream v0.5.0 // indirect
110110
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
111111
github.com/modern-go/reflect2 v1.0.2 // indirect
112112
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
@@ -123,7 +123,7 @@ require (
123123
github.com/sourcegraph/conc v0.3.0 // indirect
124124
github.com/spf13/afero v1.11.0 // indirect
125125
github.com/spf13/cast v1.7.0 // indirect
126-
github.com/stoewer/go-strcase v1.2.0 // indirect
126+
github.com/stoewer/go-strcase v1.3.0 // indirect
127127
github.com/subosito/gotenv v1.6.0 // indirect
128128
github.com/vincent-petithory/dataurl v1.0.0 // indirect
129129
github.com/x448/float16 v0.8.4 // indirect
@@ -142,17 +142,16 @@ require (
142142
golang.org/x/sync v0.10.0 // indirect
143143
golang.org/x/sys v0.29.0 // indirect
144144
golang.org/x/term v0.28.0 // indirect
145-
golang.org/x/time v0.5.0 // indirect
145+
golang.org/x/time v0.7.0 // indirect
146146
golang.org/x/tools v0.28.0 // indirect
147-
google.golang.org/genproto/googleapis/api v0.0.0-20240528184218-531527333157 // indirect
148-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240701130421-f6361c86f094 // indirect
147+
google.golang.org/genproto/googleapis/api v0.0.0-20240826202546-f6391c0de4c7 // indirect
148+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240826202546-f6391c0de4c7 // indirect
149149
google.golang.org/protobuf v1.36.1 // indirect
150150
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
151151
gopkg.in/inf.v0 v0.9.1 // indirect
152152
gopkg.in/ini.v1 v1.67.0 // indirect
153-
gopkg.in/yaml.v2 v2.4.0 // indirect
154153
gopkg.in/yaml.v3 v3.0.1 // indirect
155-
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.30.3 // indirect
156-
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
157-
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
154+
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.31.0 // indirect
155+
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect
156+
sigs.k8s.io/structured-merge-diff/v4 v4.4.2 // indirect
158157
)

0 commit comments

Comments
 (0)