Skip to content

Commit c775fb2

Browse files
authored
Merge pull request kubernetes#127271 from liggitt/go1.23
Update go.mod for go 1.23
2 parents 9d374b1 + e795723 commit c775fb2

File tree

51 files changed

+249
-89
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+249
-89
lines changed

go.mod

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66

77
module k8s.io/kubernetes
88

9-
go 1.22.0
9+
go 1.23.0
10+
11+
godebug default=go1.23
1012

1113
require (
1214
bitbucket.org/bertimus9/systemstat v0.5.0
@@ -216,7 +218,7 @@ require (
216218
google.golang.org/genproto/googleapis/api v0.0.0-20240528184218-531527333157 // indirect
217219
gopkg.in/inf.v0 v0.9.1 // indirect
218220
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
219-
k8s.io/gengo/v2 v2.0.0-20240903080316-fb7743ff00a0 // indirect
221+
k8s.io/gengo/v2 v2.0.0-20240911193312-2b36238f13e9 // indirect
220222
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.30.3 // indirect
221223
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
222224
sigs.k8s.io/kustomize/api v0.17.2 // indirect

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -815,8 +815,8 @@ gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
815815
gotest.tools/v3 v3.0.3/go.mod h1:Z7Lb0S5l+klDB31fvDQX8ss/FlKDxtlFlw3Oa8Ymbl8=
816816
honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
817817
honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
818-
k8s.io/gengo/v2 v2.0.0-20240903080316-fb7743ff00a0 h1:9zY530GenQ3gZTvS6Tt2ywkiUgDxhHXcdvOOF2ZOLFw=
819-
k8s.io/gengo/v2 v2.0.0-20240903080316-fb7743ff00a0/go.mod h1:EJykeLsmFC60UQbYJezXkEsG2FLrt0GPNkU5iK5GWxU=
818+
k8s.io/gengo/v2 v2.0.0-20240911193312-2b36238f13e9 h1:si3PfKm8dDYxgfbeA6orqrtLkvvIeH8UqffFJDl0bz4=
819+
k8s.io/gengo/v2 v2.0.0-20240911193312-2b36238f13e9/go.mod h1:EJykeLsmFC60UQbYJezXkEsG2FLrt0GPNkU5iK5GWxU=
820820
k8s.io/klog/v2 v2.130.1 h1:n9Xl7H1Xvksem4KFG4PYbdQCQxqc/tTUyrgXaOhHSzk=
821821
k8s.io/klog/v2 v2.130.1/go.mod h1:3Jpz1GvMt720eyJH1ckRHK1EDfpxISzJ7I9OYgaDtPE=
822822
k8s.io/kube-openapi v0.0.0-20240827152857-f7e401e7b4c2 h1:GKE9U8BH16uynoxQii0auTjmmmuZ3O0LFMN6S0lPPhI=

go.work

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
// This is a generated file. Do not edit directly.
22

3-
go 1.22.0
3+
go 1.23.0
4+
5+
godebug default=go1.23
46

57
use (
68
.

hack/tools/go.mod

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
module k8s.io/kubernetes/hack/tools
22

3-
go 1.22.1
3+
go 1.23.0
4+
5+
godebug default=go1.23
46

57
require (
68
github.com/aojea/sloppy-netparser v0.0.0-20210819225411-1b3bd8b3b975

hack/tools/go.work

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
// This is a hack, but it prevents go from climbing further and trying to
22
// reconcile the various deps across the "real" modules and this one.
33

4-
go 1.22.1
4+
go 1.23.0
5+
6+
godebug default=go1.23
57

68
use .

staging/src/k8s.io/api/go.mod

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
module k8s.io/api
44

5-
go 1.22.0
5+
go 1.23.0
6+
7+
godebug default=go1.23
68

79
require (
810
github.com/gogo/protobuf v1.3.2

staging/src/k8s.io/apiextensions-apiserver/go.mod

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
module k8s.io/apiextensions-apiserver
44

5-
go 1.22.0
5+
go 1.23.0
6+
7+
godebug default=go1.23
68

79
require (
810
github.com/emicklei/go-restful/v3 v3.11.0
@@ -121,7 +123,7 @@ require (
121123
gopkg.in/inf.v0 v0.9.1 // indirect
122124
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
123125
gopkg.in/yaml.v3 v3.0.1 // indirect
124-
k8s.io/gengo/v2 v2.0.0-20240903080316-fb7743ff00a0 // indirect
126+
k8s.io/gengo/v2 v2.0.0-20240911193312-2b36238f13e9 // indirect
125127
k8s.io/kms v0.0.0 // indirect
126128
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.30.3 // indirect
127129
)

staging/src/k8s.io/apiextensions-apiserver/go.sum

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

staging/src/k8s.io/apimachinery/go.mod

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
module k8s.io/apimachinery
44

5-
go 1.22.0
5+
go 1.23.0
6+
7+
godebug default=go1.23
68

79
require (
810
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5

staging/src/k8s.io/apiserver/go.mod

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
module k8s.io/apiserver
44

5-
go 1.22.0
5+
go 1.23.0
6+
7+
godebug default=go1.23
68

79
require (
810
github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a

0 commit comments

Comments
 (0)