Skip to content

Commit 16c3c63

Browse files
committed
MYSQLCLUSTER-8332 Update Go dependencies
Updating all Go dependencies to the latest available versions. Change-Id: I1a8aca29dfeb4991f7b1a7ee4df4c16bc67db81f
1 parent e8af6dd commit 16c3c63

File tree

5 files changed

+214
-553
lines changed

5 files changed

+214
-553
lines changed

deploy/charts/ndb-operator/crds/mysql.oracle.com_ndbclusters.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.11.3
6+
controller-gen.kubebuilder.io/version: v0.17.2
77
name: ndbclusters.mysql.oracle.com
88
spec:
99
group: mysql.oracle.com

deploy/manifests/ndb-operator.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.11.3
6+
controller-gen.kubebuilder.io/version: v0.17.2
77
name: ndbclusters.mysql.oracle.com
88
spec:
99
group: mysql.oracle.com

e2e-tests/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This folder contains test suites written in gingko and a tool to run the e2e tes
44

55
### License
66

7-
Copyright (c) 2021, 2022, Oracle and/or its affiliates.
7+
Copyright (c) 2021, 2025, Oracle and/or its affiliates.
88

99
License information can be found in the LICENSE file. This distribution may include materials developed by third parties. For license and attribution notices for these materials, please refer to the LICENSE file.
1010

@@ -27,7 +27,7 @@ $ go run e2e-tests/run-e2e-test.go --help
2727
More details : https://onsi.github.io/ginkgo/#location-based-filtering
2828
-kind-k8s-version string
2929
Kind k8s version used to run tests.
30-
Example usage: -kind-k8s-version=1.20 (default "1.21")
30+
Example usage: -kind-k8s-version=1.20 (default "1.23")
3131
-kubeconfig string
3232
Kubeconfig of the existing K8s cluster to run tests on.
3333
This will not be used if '--use-kind' is enabled. (default "$HOME/.kube/config")

go.mod

Lines changed: 62 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -1,81 +1,83 @@
1-
// This is a generated file. Do not edit directly.
2-
31
module github.com/mysql/ndb-operator
42

5-
go 1.20
3+
go 1.24.1
64

75
require (
8-
github.com/go-sql-driver/mysql v1.8.1
9-
github.com/onsi/ginkgo/v2 v2.6.1
10-
github.com/onsi/gomega v1.24.2
6+
github.com/go-sql-driver/mysql v1.9.0
7+
github.com/onsi/ginkgo/v2 v2.22.2
8+
github.com/onsi/gomega v1.36.2
119
gopkg.in/yaml.v3 v3.0.1
12-
k8s.io/api v0.26.1
13-
k8s.io/apimachinery v0.26.1
14-
k8s.io/client-go v0.26.1
15-
k8s.io/code-generator v0.26.1
16-
k8s.io/klog/v2 v2.90.0
17-
sigs.k8s.io/controller-tools v0.11.3
18-
sigs.k8s.io/kind v0.17.0
10+
k8s.io/api v0.32.2
11+
k8s.io/apimachinery v0.32.2
12+
k8s.io/client-go v0.32.2
13+
k8s.io/code-generator v0.32.2
14+
k8s.io/klog/v2 v2.130.1
15+
sigs.k8s.io/controller-tools v0.17.2
16+
sigs.k8s.io/kind v0.27.0
1917
)
2018

2119
require (
20+
al.essio.dev/pkg/shellescape v1.5.1 // indirect
2221
filippo.io/edwards25519 v1.1.0 // indirect
23-
github.com/BurntSushi/toml v1.0.0 // indirect
24-
github.com/alessio/shellescape v1.4.1 // indirect
25-
github.com/davecgh/go-spew v1.1.1 // indirect
26-
github.com/emicklei/go-restful/v3 v3.9.0 // indirect
27-
github.com/evanphx/json-patch v4.12.0+incompatible // indirect
28-
github.com/evanphx/json-patch/v5 v5.6.0 // indirect
29-
github.com/fatih/color v1.13.0 // indirect
30-
github.com/go-logr/logr v1.2.3 // indirect
31-
github.com/go-openapi/jsonpointer v0.19.5 // indirect
32-
github.com/go-openapi/jsonreference v0.20.0 // indirect
33-
github.com/go-openapi/swag v0.19.14 // indirect
34-
github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 // indirect
35-
github.com/gobuffalo/flect v0.3.0 // indirect
22+
github.com/BurntSushi/toml v1.4.0 // indirect
23+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
24+
github.com/emicklei/go-restful/v3 v3.12.2 // indirect
25+
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
26+
github.com/fatih/color v1.18.0 // indirect
27+
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
28+
github.com/go-logr/logr v1.4.2 // indirect
29+
github.com/go-openapi/jsonpointer v0.21.0 // indirect
30+
github.com/go-openapi/jsonreference v0.21.0 // indirect
31+
github.com/go-openapi/swag v0.23.0 // indirect
32+
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
33+
github.com/gobuffalo/flect v1.0.3 // indirect
3634
github.com/gogo/protobuf v1.3.2 // indirect
37-
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
38-
github.com/golang/protobuf v1.5.2 // indirect
39-
github.com/google/gnostic v0.5.7-v3refs // indirect
40-
github.com/google/go-cmp v0.5.9 // indirect
41-
github.com/google/gofuzz v1.1.0 // indirect
42-
github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 // indirect
43-
github.com/google/safetext v0.0.0-20220905092116-b49f7bc46da2 // indirect
44-
github.com/google/uuid v1.1.2 // indirect
45-
github.com/imdario/mergo v0.3.6 // indirect
46-
github.com/inconshreveable/mousetrap v1.0.1 // indirect
35+
github.com/golang/protobuf v1.5.4 // indirect
36+
github.com/google/gnostic-models v0.6.9 // indirect
37+
github.com/google/go-cmp v0.7.0 // indirect
38+
github.com/google/gofuzz v1.2.0 // indirect
39+
github.com/google/pprof v0.0.0-20250302191652-9094ed2288e7 // indirect
40+
github.com/google/safetext v0.0.0-20240722112252-5a72de7e7962 // indirect
41+
github.com/google/uuid v1.6.0 // indirect
42+
github.com/gorilla/websocket v1.5.3 // indirect
43+
github.com/inconshreveable/mousetrap v1.1.0 // indirect
4744
github.com/josharian/intern v1.0.0 // indirect
4845
github.com/json-iterator/go v1.1.12 // indirect
49-
github.com/mailru/easyjson v0.7.6 // indirect
50-
github.com/mattn/go-colorable v0.1.9 // indirect
51-
github.com/mattn/go-isatty v0.0.14 // indirect
52-
github.com/moby/spdystream v0.2.0 // indirect
46+
github.com/mailru/easyjson v0.9.0 // indirect
47+
github.com/mattn/go-colorable v0.1.14 // indirect
48+
github.com/mattn/go-isatty v0.0.20 // indirect
49+
github.com/moby/spdystream v0.5.0 // indirect
5350
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
5451
github.com/modern-go/reflect2 v1.0.2 // indirect
5552
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
56-
github.com/pelletier/go-toml v1.9.4 // indirect
53+
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
54+
github.com/pborman/uuid v1.2.1 // indirect
55+
github.com/pelletier/go-toml v1.9.5 // indirect
5756
github.com/pkg/errors v0.9.1 // indirect
58-
github.com/spf13/cobra v1.6.1 // indirect
59-
github.com/spf13/pflag v1.0.5 // indirect
60-
golang.org/x/mod v0.7.0 // indirect
61-
golang.org/x/net v0.4.0 // indirect
62-
golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b // indirect
63-
golang.org/x/sys v0.3.0 // indirect
64-
golang.org/x/term v0.3.0 // indirect
65-
golang.org/x/text v0.5.0 // indirect
66-
golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 // indirect
67-
golang.org/x/tools v0.4.0 // indirect
68-
google.golang.org/appengine v1.6.7 // indirect
69-
google.golang.org/protobuf v1.28.1 // indirect
57+
github.com/spf13/cobra v1.9.1 // indirect
58+
github.com/spf13/pflag v1.0.6 // indirect
59+
github.com/x448/float16 v0.8.4 // indirect
60+
golang.org/x/mod v0.24.0 // indirect
61+
golang.org/x/net v0.36.0 // indirect
62+
golang.org/x/oauth2 v0.28.0 // indirect
63+
golang.org/x/sync v0.12.0 // indirect
64+
golang.org/x/sys v0.31.0 // indirect
65+
golang.org/x/term v0.30.0 // indirect
66+
golang.org/x/text v0.23.0 // indirect
67+
golang.org/x/time v0.11.0 // indirect
68+
golang.org/x/tools v0.30.0 // indirect
69+
google.golang.org/protobuf v1.36.5 // indirect
70+
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
7071
gopkg.in/inf.v0 v0.9.1 // indirect
7172
gopkg.in/yaml.v2 v2.4.0 // indirect
72-
k8s.io/apiextensions-apiserver v0.26.1 // indirect
73-
k8s.io/gengo v0.0.0-20220902162205-c0856e24416d // indirect
74-
k8s.io/kube-openapi v0.0.0-20221012153701-172d655c2280 // indirect
75-
k8s.io/utils v0.0.0-20221107191617-1a15be271d1d // indirect
76-
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect
77-
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
78-
sigs.k8s.io/yaml v1.3.0 // indirect
73+
k8s.io/apiextensions-apiserver v0.32.2 // indirect
74+
k8s.io/gengo/v2 v2.0.0-20250207200755-1244d31929d7 // indirect
75+
k8s.io/kube-openapi v0.0.0-20250304201544-e5f78fe3ede9 // indirect
76+
k8s.io/utils v0.0.0-20241210054802-24370beab758 // indirect
77+
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
78+
sigs.k8s.io/randfill v1.0.0 // indirect
79+
sigs.k8s.io/structured-merge-diff/v4 v4.6.0 // indirect
80+
sigs.k8s.io/yaml v1.4.0 // indirect
7981
)
8082

8183
replace (

0 commit comments

Comments
 (0)