Skip to content

Commit 301f1b7

Browse files
authored
upgrade golang to 1.24.3 (#20846)
* upgrade golang to 1.24.3 * fix caddy * update go debug * fix non-constant format string in call to fmt Format method
1 parent 956ee80 commit 301f1b7

File tree

98 files changed

+403
-205
lines changed

Some content is hidden

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

98 files changed

+403
-205
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ RUN curl -sSL "https://awscli.amazonaws.com/awscli-exe-linux-$(arch).zip" -o aws
188188
./aws/install --bin-dir /usr/local/bin --install-dir /usr/local/aws-cli --update && \
189189
rm -rf awscliv2.zip ./aws
190190

191-
ENV GO_VERSION=1.23.6
191+
ENV GO_VERSION=1.24.3
192192
ENV GOPATH=/root/go-packages
193193
ENV GOROOT=/root/go
194194
ENV PATH=$GOROOT/bin:$GOPATH/bin:$PATH

components/blobserve/go.mod

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
module github.com/gitpod-io/gitpod/blobserve
22

3-
go 1.23.0
3+
go 1.24
44

5-
toolchain go1.23.3
5+
toolchain go1.24.3
6+
7+
godebug tlsmlkem=0
68

79
require (
810
github.com/containerd/containerd v1.6.36
@@ -97,7 +99,6 @@ require (
9799
github.com/mitchellh/go-homedir v1.1.0 // indirect
98100
github.com/mitchellh/reflectwalk v1.0.2 // indirect
99101
github.com/moby/locker v1.0.1 // indirect
100-
github.com/moby/sys/mountinfo v0.7.1 // indirect
101102
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
102103
github.com/modern-go/reflect2 v1.0.2 // indirect
103104
github.com/mr-tron/base58 v1.2.0 // indirect

components/common-go/go.mod

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
module github.com/gitpod-io/gitpod/common-go
22

3-
go 1.22.0
3+
go 1.24
44

5-
toolchain go1.23.3
5+
toolchain go1.24.3
6+
7+
godebug tlsmlkem=0
68

79
require (
810
github.com/configcat/go-sdk/v7 v7.6.0

components/content-service-api/go/go.mod

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
module github.com/gitpod-io/gitpod/content-service/api
22

3-
go 1.22.0
3+
go 1.24
44

5-
toolchain go1.23.3
5+
toolchain go1.24.3
6+
7+
godebug tlsmlkem=0
68

79
require (
810
github.com/gitpod-io/gitpod/common-go v0.0.0-00010101000000-000000000000
Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
module github.com/gitpod-io/gitpod/content-service-api/util
22

3-
go 1.22
3+
go 1.24
4+
5+
toolchain go1.24.3
6+
7+
godebug tlsmlkem=0
48

59
replace github.com/gitpod-io/gitpod/content-service/api => ../../go
610

@@ -10,15 +14,14 @@ require (
1014
)
1115

1216
require (
13-
github.com/golang/protobuf v1.5.4 // indirect
1417
github.com/iancoleman/strcase v0.0.0-20180726023541-3605ed457bf7 // indirect
1518
github.com/opencontainers/go-digest v1.0.0 // indirect
1619
github.com/opencontainers/image-spec v1.0.2 // indirect
17-
golang.org/x/net v0.19.0 // indirect
18-
golang.org/x/sys v0.15.0 // indirect
19-
golang.org/x/text v0.14.0 // indirect
20-
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
20+
golang.org/x/net v0.26.0 // indirect
21+
golang.org/x/sys v0.21.0 // indirect
22+
golang.org/x/text v0.16.0 // indirect
23+
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
2124
google.golang.org/genproto v0.0.0-20221118155620-16455021b5e6 // indirect
22-
google.golang.org/grpc v1.52.3 // indirect
23-
google.golang.org/protobuf v1.33.0 // indirect
25+
google.golang.org/grpc v1.65.0 // indirect
26+
google.golang.org/protobuf v1.34.2 // indirect
2427
)

components/content-service-api/typescript/util/go.sum

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

components/content-service/go.mod

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
module github.com/gitpod-io/gitpod/content-service
22

3-
go 1.23.0
3+
go 1.24
44

5-
toolchain go1.23.3
5+
toolchain go1.24.3
6+
7+
godebug tlsmlkem=0
68

79
require (
810
cloud.google.com/go/storage v1.39.1

components/docker-up/go.mod

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
module github.com/gitpod-io/gitpod/docker-up
22

3-
go 1.22.0
3+
go 1.24
44

5-
toolchain go1.23.3
5+
toolchain go1.24.3
6+
7+
godebug tlsmlkem=0
68

79
require (
810
github.com/opencontainers/runtime-spec v1.2.0
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
module testbed
22

3-
go 1.22
3+
go 1.24
4+
5+
toolchain go1.24.3
6+
7+
godebug tlsmlkem=0
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
module testtarget
22

3-
go 1.22
3+
go 1.24
4+
5+
toolchain go1.24.3
6+
7+
godebug tlsmlkem=0

components/ee/agent-smith/go.mod

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
module github.com/gitpod-io/gitpod/agent-smith
22

3-
go 1.22.0
3+
go 1.24
44

5-
toolchain go1.23.3
5+
toolchain go1.24.3
6+
7+
godebug tlsmlkem=0
68

79
require (
810
github.com/alecthomas/jsonschema v0.0.0-20210413112511-5c9c23bdc720

components/gitpod-cli/go.mod

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
module github.com/gitpod-io/gitpod/gitpod-cli
22

3-
go 1.23.0
3+
go 1.24
44

5-
toolchain go1.23.3
5+
toolchain go1.24.3
6+
7+
godebug tlsmlkem=0
68

79
require (
810
github.com/bufbuild/connect-go v1.10.0
@@ -51,7 +53,6 @@ require (
5153
github.com/prometheus/client_golang v1.19.1 // indirect
5254
github.com/prometheus/client_model v0.6.1 // indirect
5355
github.com/prometheus/common v0.55.0 // indirect
54-
github.com/rogpeppe/go-internal v1.12.0 // indirect
5556
golang.org/x/crypto v0.36.0 // indirect
5657
golang.org/x/sys v0.31.0 // indirect
5758
google.golang.org/genproto/googleapis/api v0.0.0-20240528184218-531527333157 // indirect

components/gitpod-db/go/go.mod

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
module github.com/gitpod-io/gitpod/components/gitpod-db/go
22

3-
go 1.22.0
3+
go 1.24
44

5-
toolchain go1.23.3
5+
toolchain go1.24.3
6+
7+
godebug tlsmlkem=0
68

79
require (
810
github.com/gitpod-io/gitpod/common-go v0.0.0-00010101000000-000000000000

components/gitpod-protocol/go/go.mod

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
module github.com/gitpod-io/gitpod/gitpod-protocol
22

3-
go 1.22
3+
go 1.24
4+
5+
toolchain go1.24.3
6+
7+
godebug tlsmlkem=0
48

59
require (
610
github.com/golang/mock v1.6.0

components/ide-metrics-api/go.mod

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
module github.com/gitpod-io/generated_code_dependencies
22

3-
go 1.22
3+
go 1.24
4+
5+
toolchain go1.24.3
6+
7+
godebug tlsmlkem=0

components/ide-metrics-api/go/go.mod

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
module github.com/gitpod-io/gitpod/ide-metrics-api
22

3-
go 1.22.0
3+
go 1.24
44

5-
toolchain go1.23.3
5+
toolchain go1.24.3
6+
7+
godebug tlsmlkem=0
68

79
require (
810
github.com/gitpod-io/gitpod/common-go v0.0.0-00010101000000-000000000000

components/ide-metrics/go.mod

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
module github.com/gitpod-io/gitpod/ide-metrics
22

3-
go 1.22.0
3+
go 1.24
44

5-
toolchain go1.23.3
5+
toolchain go1.24.3
6+
7+
godebug tlsmlkem=0
68

79
require (
810
github.com/gitpod-io/gitpod/common-go v0.0.0-00010101000000-000000000000

components/ide-service-api/go/go.mod

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
module github.com/gitpod-io/gitpod/ide-service-api
22

3-
go 1.22.0
3+
go 1.24
44

5-
toolchain go1.23.3
5+
toolchain go1.24.3
6+
7+
godebug tlsmlkem=0
68

79
require (
810
github.com/gitpod-io/gitpod/common-go v0.0.0-00010101000000-000000000000

components/ide-service/go.mod

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
module github.com/gitpod-io/gitpod/ide-service
22

3-
go 1.22.0
3+
go 1.24
44

5-
toolchain go1.23.3
5+
toolchain go1.24.3
6+
7+
godebug tlsmlkem=0
68

79
require (
810
github.com/containerd/containerd v1.6.36

components/ide/code-desktop/status/go.mod

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
module github.com/gitpod-io/gitpod/code-desktop/status
22

3-
go 1.22.0
3+
go 1.24
44

5-
toolchain go1.23.3
5+
toolchain go1.24.3
6+
7+
godebug tlsmlkem=0
68

79
require (
810
github.com/gitpod-io/gitpod/common-go v0.0.0-00010101000000-000000000000

components/ide/code/codehelper/go.mod

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
module github.com/gitpod-io/gitpod/code/codehelper
22

3-
go 1.22.0
3+
go 1.24
44

5-
toolchain go1.23.3
5+
toolchain go1.24.3
6+
7+
godebug tlsmlkem=0
68

79
require (
810
github.com/gitpod-io/gitpod/common-go v0.0.0-00010101000000-000000000000

components/ide/jetbrains/cli/go.mod

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
module github.com/gitpod-io/gitpod/jetbrains/cli
22

3-
go 1.22
3+
go 1.24
4+
5+
toolchain go1.24.3
6+
7+
godebug tlsmlkem=0
48

59
require github.com/spf13/cobra v1.4.0
610

components/ide/jetbrains/launcher/go.mod

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
module github.com/gitpod-io/gitpod/jetbrains/launcher
22

3-
go 1.22.0
3+
go 1.24
44

5-
toolchain go1.23.3
5+
toolchain go1.24.3
6+
7+
godebug tlsmlkem=0
68

79
require (
810
github.com/gitpod-io/gitpod/common-go v0.0.0-00010101000000-000000000000

components/image-builder-api/go.mod

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
module github.com/gitpod-io/generated_code_dependencies
22

3-
go 1.22
3+
go 1.24
4+
5+
toolchain go1.24.3
6+
7+
godebug tlsmlkem=0

components/image-builder-api/go/go.mod

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
module github.com/gitpod-io/gitpod/image-builder/api
22

3-
go 1.22.0
3+
go 1.24
44

5-
toolchain go1.23.3
5+
toolchain go1.24.3
6+
7+
godebug tlsmlkem=0
68

79
require (
810
github.com/gitpod-io/gitpod/common-go v0.0.0-00010101000000-000000000000

components/image-builder-bob/go.mod

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
module github.com/gitpod-io/gitpod/image-builder/bob
22

3-
go 1.23.0
3+
go 1.24
44

5-
toolchain go1.23.3
5+
toolchain go1.24.3
6+
7+
godebug tlsmlkem=0
68

79
require (
810
github.com/containerd/console v1.0.3

components/image-builder-mk3/go.mod

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
module github.com/gitpod-io/gitpod/image-builder
22

3-
go 1.22.0
3+
go 1.24
44

5-
toolchain go1.23.3
5+
toolchain go1.24.3
6+
7+
godebug tlsmlkem=0
68

79
require (
810
github.com/alecthomas/jsonschema v0.0.0-20210526225647-edb03dcab7bc

0 commit comments

Comments
 (0)