Skip to content

Commit 37067b5

Browse files
Upgrade go from 1.24.5 to 1.25.0
1 parent 803e091 commit 37067b5

File tree

16 files changed

+118
-118
lines changed

16 files changed

+118
-118
lines changed

build/.goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ builds:
4646
- darwin_amd64
4747
- darwin_arm64
4848
env:
49-
- KUBERNETES_VERSION=1.34.0
49+
- KUBERNETES_VERSION=1.34.1
5050
- CGO_ENABLED=0
5151

5252
# Only binaries of the form "kubebuilder_${goos}_${goarch}" will be released.

cmd/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const unknown = "unknown"
2727
// information in the release process
2828
var (
2929
kubeBuilderVersion = unknown
30-
kubernetesVendorVersion = "1.34.0"
30+
kubernetesVendorVersion = "1.34.1"
3131
goos = unknown
3232
goarch = unknown
3333
gitCommit = "$Format:%H$" // sha1 from git, output of $(git rev-parse HEAD)

docs/book/src/cronjob-tutorial/testdata/project/PROJECT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file is used to track the info used to scaffold your project
33
# and allow the plugins properly work.
44
# More info: https://book.kubebuilder.io/reference/project-config.html
5-
cliVersion: (devel)
5+
cliVersion: v4.7.1-0.20251007171501-803e09187603+dirty
66
domain: tutorial.kubebuilder.io
77
layout:
88
- go.kubebuilder.io/v4

docs/book/src/cronjob-tutorial/testdata/project/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module tutorial.kubebuilder.io/project
22

3-
go 1.24.5
3+
go 1.25.0
44

55
require (
66
github.com/onsi/ginkgo/v2 v2.22.0

docs/book/src/getting-started/testdata/project/PROJECT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file is used to track the info used to scaffold your project
33
# and allow the plugins properly work.
44
# More info: https://book.kubebuilder.io/reference/project-config.html
5-
cliVersion: (devel)
5+
cliVersion: v4.7.1-0.20251007171501-803e09187603+dirty
66
domain: example.com
77
layout:
88
- go.kubebuilder.io/v4

docs/book/src/getting-started/testdata/project/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module example.com/memcached
22

3-
go 1.24.5
3+
go 1.25.0
44

55
require (
66
github.com/onsi/ginkgo/v2 v2.22.0

docs/book/src/multiversion-tutorial/testdata/project/PROJECT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file is used to track the info used to scaffold your project
33
# and allow the plugins properly work.
44
# More info: https://book.kubebuilder.io/reference/project-config.html
5-
cliVersion: (devel)
5+
cliVersion: v4.7.1-0.20251007171501-803e09187603+dirty
66
domain: tutorial.kubebuilder.io
77
layout:
88
- go.kubebuilder.io/v4

docs/book/src/multiversion-tutorial/testdata/project/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module tutorial.kubebuilder.io/project
22

3-
go 1.24.5
3+
go 1.25.0
44

55
require (
66
github.com/onsi/ginkgo/v2 v2.22.0

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module sigs.k8s.io/kubebuilder/v4
22

3-
go 1.24.5
3+
go 1.25.0
44

55
require (
66
github.com/gobuffalo/flect v1.0.3

pkg/plugins/golang/v4/scaffolds/internal/templates/gomod.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ func (f *GoMod) SetTemplateDefaults() error {
4545

4646
const goModTemplate = `module {{ .Repo }}
4747
48-
go 1.24.5
48+
go 1.25.0
4949
5050
require (
5151
sigs.k8s.io/controller-runtime {{ .ControllerRuntimeVersion }}

0 commit comments

Comments
 (0)