Skip to content

Commit 2b99696

Browse files
authored
bump Go version and toolchain to 1.24.0 and 1.24.9 across all modules (#1334)
Signed-off-by: Matthieu MOREL <[email protected]>
1 parent 278a296 commit 2b99696

File tree

11 files changed

+18
-18
lines changed

11 files changed

+18
-18
lines changed

Dockerfile.ci

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
FROM golang:1.23@sha256:77a21b3e354c03e9f66b13bc39f4f0db8085c70f8414406af66b29c6d6c4dd85
1+
FROM golang:1.24@sha256:8b788ecf5fddb91cd04e532205d6411de68a08b510885bb8fb1c93f54c03f737
22

33
COPY --from=envoyproxy/envoy-dev:latest /usr/local/bin/envoy /usr/local/bin/envoy

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ feedback, we might decide to revisit this aspect at a later point in time.
4545

4646
## Requirements
4747

48-
1. Go 1.23+
48+
1. Go 1.24+
4949

5050
## Quick start
5151

contrib/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module github.com/envoyproxy/go-control-plane/contrib
22

3-
go 1.23.0
3+
go 1.24.0
44

5-
toolchain go1.23.6
5+
toolchain go1.24.9
66

77
replace github.com/envoyproxy/go-control-plane/envoy => ../envoy
88

envoy/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module github.com/envoyproxy/go-control-plane/envoy
22

3-
go 1.23.0
3+
go 1.24.0
44

5-
toolchain go1.23.6
5+
toolchain go1.24.9
66

77
// Used to resolve import issues related to go-control-plane package split (https://github.com/envoyproxy/go-control-plane/issues/1074)
88
replace github.com/envoyproxy/[email protected] => ../

examples/dyplomat/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.23@sha256:77a21b3e354c03e9f66b13bc39f4f0db8085c70f8414406af66b29c6d6c4dd85
1+
FROM golang:1.24@sha256:8b788ecf5fddb91cd04e532205d6411de68a08b510885bb8fb1c93f54c03f737
22

33
WORKDIR /go/src/dyplomat
44
COPY . /go/src/dyplomat

examples/dyplomat/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module github.com/envoyproxy/go-control-plane/examples/dyplomat
22

3-
go 1.23.4
3+
go 1.24.0
44

5-
toolchain go1.23.6
5+
toolchain go1.24.9
66

77
replace (
88
github.com/envoyproxy/go-control-plane => ../..

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module github.com/envoyproxy/go-control-plane
22

3-
go 1.23.0
3+
go 1.24.0
44

5-
toolchain go1.23.6
5+
toolchain go1.24.9
66

77
replace (
88
github.com/envoyproxy/go-control-plane/envoy => ./envoy

internal/tools/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module github.com/envoyproxy/go-control-plane/internal/tools
22

3-
go 1.23.0
3+
go 1.24.0
44

5-
toolchain go1.23.6
5+
toolchain go1.24.9
66

77
require (
88
github.com/golangci/golangci-lint/v2 v2.3.1

pkg/server/sotw/v3/ads.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ func (s *server) processADS(sw *streamWrapper, reqCh chan *discovery.DiscoveryRe
4949
// We only watch the multiplexed channel since we don't use per watch channels.
5050
case res := <-respChan:
5151
if err := sw.send(res); err != nil {
52-
return status.Errorf(codes.Unavailable, err.Error())
52+
return status.Errorf(codes.Unavailable, "%s", err.Error())
5353
}
5454
case req, ok := <-reqCh:
5555
// Input stream ended or failed.

ratelimit/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module github.com/envoyproxy/go-control-plane/ratelimit
22

3-
go 1.23.0
3+
go 1.24.0
44

5-
toolchain go1.23.6
5+
toolchain go1.24.9
66

77
replace github.com/envoyproxy/go-control-plane/envoy => ../envoy
88

0 commit comments

Comments
 (0)