Skip to content

Commit b5e7682

Browse files
committed
Update k8s.io dependencies to 1.30
Signed-off-by: Marvin Beckers <marvin@kubermatic.com>
1 parent 036a9bf commit b5e7682

3 files changed

Lines changed: 63 additions & 136 deletions

File tree

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,17 @@ CONTROLLER_GEN_BIN := controller-gen
2525
CONTROLLER_GEN := $(GOBIN_DIR)/$(CONTROLLER_GEN_BIN)-$(CONTROLLER_GEN_VER)
2626
export CONTROLLER_GEN
2727

28-
GOLANGCI_LINT_VER := v1.54.2
28+
GOLANGCI_LINT_VER := v1.58.1
2929
GOLANGCI_LINT_BIN := golangci-lint
3030
GOLANGCI_LINT := $(GOBIN_DIR)/$(GOLANGCI_LINT_BIN)-$(GOLANGCI_LINT_VER)
3131

32-
KUBE_CLIENT_GEN_VER := v0.28.1
32+
KUBE_CLIENT_GEN_VER := v0.30.0
3333
KUBE_CLIENT_GEN_BIN := client-gen
34-
KUBE_LISTER_GEN_VER := v0.28.1
34+
KUBE_LISTER_GEN_VER := v0.30.0
3535
KUBE_LISTER_GEN_BIN := lister-gen
36-
KUBE_INFORMER_GEN_VER := v0.28.1
36+
KUBE_INFORMER_GEN_VER := v0.30.0
3737
KUBE_INFORMER_GEN_BIN := informer-gen
38-
KUBE_APPLYCONFIGURATION_GEN_VER := v0.28.1
38+
KUBE_APPLYCONFIGURATION_GEN_VER := v0.30.0
3939
KUBE_APPLYCONFIGURATION_GEN_BIN := applyconfiguration-gen
4040

4141
KUBE_CLIENT_GEN := $(GOBIN_DIR)/$(KUBE_CLIENT_GEN_BIN)-$(KUBE_CLIENT_GEN_VER)

go.mod

Lines changed: 18 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,41 @@
11
module github.com/kcp-dev/code-generator/v2
22

3-
go 1.20
3+
go 1.22.0
44

55
require (
66
github.com/onsi/ginkgo v1.16.5
7-
github.com/onsi/gomega v1.27.6
7+
github.com/onsi/gomega v1.33.1
88
github.com/spf13/cobra v1.4.0
99
github.com/spf13/pflag v1.0.5
10-
golang.org/x/tools v0.12.0
11-
k8s.io/apimachinery v0.28.1
12-
k8s.io/code-generator v0.28.1
10+
golang.org/x/tools v0.21.0
11+
k8s.io/apimachinery v0.30.0
12+
k8s.io/code-generator v0.30.0
1313
k8s.io/gengo v0.0.0-20230825065918-3239622df7ae
14-
k8s.io/klog/v2 v2.100.1
14+
k8s.io/klog/v2 v2.120.1
1515
sigs.k8s.io/controller-tools v0.8.0
1616
)
1717

1818
require (
19-
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
2019
github.com/fatih/color v1.12.0 // indirect
2120
github.com/fsnotify/fsnotify v1.4.9 // indirect
22-
github.com/go-logr/logr v1.2.4 // indirect
23-
github.com/go-openapi/jsonpointer v0.20.0 // indirect
24-
github.com/go-openapi/jsonreference v0.20.2 // indirect
25-
github.com/go-openapi/swag v0.22.4 // indirect
26-
github.com/golang/protobuf v1.5.3 // indirect
27-
github.com/google/gnostic-models v0.6.8 // indirect
28-
github.com/google/go-cmp v0.5.9 // indirect
29-
github.com/google/gofuzz v1.2.0 // indirect
21+
github.com/go-logr/logr v1.4.1 // indirect
22+
github.com/google/go-cmp v0.6.0 // indirect
3023
github.com/inconshreveable/mousetrap v1.0.0 // indirect
31-
github.com/josharian/intern v1.0.0 // indirect
32-
github.com/json-iterator/go v1.1.12 // indirect
33-
github.com/mailru/easyjson v0.7.7 // indirect
24+
github.com/kr/text v0.2.0 // indirect
3425
github.com/mattn/go-colorable v0.1.8 // indirect
3526
github.com/mattn/go-isatty v0.0.12 // indirect
36-
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
37-
github.com/modern-go/reflect2 v1.0.2 // indirect
3827
github.com/nxadm/tail v1.4.8 // indirect
39-
golang.org/x/mod v0.12.0 // indirect
40-
golang.org/x/net v0.14.0 // indirect
41-
golang.org/x/sys v0.11.0 // indirect
42-
golang.org/x/text v0.12.0 // indirect
43-
google.golang.org/protobuf v1.31.0 // indirect
28+
github.com/rogpeppe/go-internal v1.11.0 // indirect
29+
golang.org/x/mod v0.17.0 // indirect
30+
golang.org/x/net v0.25.0 // indirect
31+
golang.org/x/sync v0.7.0 // indirect
32+
golang.org/x/sys v0.20.0 // indirect
33+
golang.org/x/text v0.15.0 // indirect
34+
google.golang.org/protobuf v1.34.1 // indirect
35+
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
4436
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
4537
gopkg.in/yaml.v2 v2.4.0 // indirect
4638
gopkg.in/yaml.v3 v3.0.1 // indirect
47-
k8s.io/kube-openapi v0.0.0-20230816210353-14e408962443 // indirect
48-
sigs.k8s.io/structured-merge-diff/v4 v4.3.0 // indirect
39+
k8s.io/gengo/v2 v2.0.0-20240404160639-a0386bf69313 // indirect
4940
sigs.k8s.io/yaml v1.3.0 // indirect
5041
)

0 commit comments

Comments
 (0)