Skip to content

Commit 68e7122

Browse files
authored
Merge pull request #18644 from henrybear327/go/1.23.0
[main] Bump go toolchain to 1.23.1
2 parents c86c93c + dcdfead commit 68e7122

File tree

16 files changed

+30
-30
lines changed

16 files changed

+30
-30
lines changed

.devcontainer/devcontainer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"name": "Go",
55
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6-
"image": "mcr.microsoft.com/devcontainers/go:1.22-bookworm",
6+
"image": "mcr.microsoft.com/devcontainers/go:1.23-bookworm",
77
// Features to add to the dev container. More info: https://containers.dev/features.
88
"features": {
99
"ghcr.io/devcontainers/features/docker-in-docker:2": {},

.go-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.22.7
1+
1.23.1

CHANGELOG/CHANGELOG-3.6.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ See [List of metrics](https://etcd.io/docs/latest/metrics/) for all metrics per
9898
- Add [`etcd_server_range_duration_seconds`](https://github.com/etcd-io/etcd/pull/17983).
9999

100100
### Go
101-
- Require [Go 1.22+](https://github.com/etcd-io/etcd/pull/16594).
102-
- Compile with [Go 1.22+](https://go.dev/doc/devel/release#go1.21.minor). Please refer to [gc-guide](https://go.dev/doc/gc-guide) to configure `GOGC` and `GOMEMLIMIT` properly.
101+
- Require [Go 1.23+](https://github.com/etcd-io/etcd/pull/16594).
102+
- Compile with [Go 1.23+](https://go.dev/doc/devel/release#go1.21.minor). Please refer to [gc-guide](https://go.dev/doc/gc-guide) to configure `GOGC` and `GOMEMLIMIT` properly.
103103

104104
### Other
105105

api/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module go.etcd.io/etcd/api/v3
22

3-
go 1.22
3+
go 1.23
44

5-
toolchain go1.22.7
5+
toolchain go1.23.1
66

77
require (
88
github.com/coreos/go-semver v0.3.1

client/internal/v2/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module go.etcd.io/etcd/client/v2
22

3-
go 1.22
3+
go 1.23
44

5-
toolchain go1.22.7
5+
toolchain go1.23.1
66

77
require (
88
go.etcd.io/etcd/api/v3 v3.6.0-alpha.0

client/pkg/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module go.etcd.io/etcd/client/pkg/v3
22

3-
go 1.22
3+
go 1.23
44

5-
toolchain go1.22.7
5+
toolchain go1.23.1
66

77
require (
88
github.com/coreos/go-systemd/v22 v22.5.0

client/v3/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module go.etcd.io/etcd/client/v3
22

3-
go 1.22
3+
go 1.23
44

5-
toolchain go1.22.7
5+
toolchain go1.23.1
66

77
require (
88
github.com/coreos/go-semver v0.3.1

etcdctl/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module go.etcd.io/etcd/etcdctl/v3
22

3-
go 1.22
3+
go 1.23
44

5-
toolchain go1.22.7
5+
toolchain go1.23.1
66

77
require (
88
github.com/bgentry/speakeasy v0.2.0

etcdutl/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module go.etcd.io/etcd/etcdutl/v3
22

3-
go 1.22
3+
go 1.23
44

5-
toolchain go1.22.7
5+
toolchain go1.23.1
66

77
replace (
88
go.etcd.io/etcd/api/v3 => ../api

go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module go.etcd.io/etcd/v3
22

3-
go 1.22
3+
go 1.23
44

5-
toolchain go1.22.7
5+
toolchain go1.23.1
66

77
replace (
88
go.etcd.io/etcd/api/v3 => ./api

pkg/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module go.etcd.io/etcd/pkg/v3
22

3-
go 1.22
3+
go 1.23
44

5-
toolchain go1.22.7
5+
toolchain go1.23.1
66

77
require (
88
github.com/creack/pty v1.1.18

server/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module go.etcd.io/etcd/server/v3
22

3-
go 1.22
3+
go 1.23
44

5-
toolchain go1.22.7
5+
toolchain go1.23.1
66

77
require (
88
github.com/coreos/go-semver v0.3.1

tests/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module go.etcd.io/etcd/tests/v3
22

3-
go 1.22
3+
go 1.23
44

5-
toolchain go1.22.7
5+
toolchain go1.23.1
66

77
replace (
88
go.etcd.io/etcd/api/v3 => ../api

tools/mod/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module go.etcd.io/etcd/tools/v3
22

3-
go 1.22.1
3+
go 1.23
44

5-
toolchain go1.22.7
5+
toolchain go1.23.1
66

77
require (
88
github.com/alexfalkowski/gocovmerge v1.3.13

tools/rw-heatmaps/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module go.etcd.io/etcd/tools/rw-heatmaps/v3
22

3-
go 1.22
3+
go 1.23
44

5-
toolchain go1.22.7
5+
toolchain go1.23.1
66

77
require (
88
github.com/spf13/cobra v1.8.1

tools/testgrid-analysis/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module go.etcd.io/etcd/tools/testgrid-analysis/v3
22

3-
go 1.22
3+
go 1.23
44

5-
toolchain go1.22.7
5+
toolchain go1.23.1
66

77
require (
88
github.com/GoogleCloudPlatform/testgrid v0.0.173

0 commit comments

Comments
 (0)