Skip to content

Commit a960eca

Browse files
feat: Update Go toolchain version to 1.24.11 across all modules (#2943)
### Proposed Changes * This pull request updates the Go toolchain and Go version across multiple modules in the repository to use Go 1.24.11 instead of Go 1.24.9. This ensures consistency and access to the latest patches and improvements in the Go 1.24.x series. Go version and toolchain updates: * Updated the `go` version and/or `toolchain` directive to `go1.24.11` in the following files and modules: - `examples/go.mod` (`github.com/opentdf/platform/examples`) - `lib/fixtures/go.mod` (`github.com/opentdf/platform/lib/fixtures`) - `lib/ocrypto/go.mod` (`github.com/opentdf/platform/lib/ocrypto`) - `protocol/go/go.mod` (`github.com/opentdf/platform/protocol/go`) - `sdk/go.mod` (`github.com/opentdf/platform/sdk`) - `service/go.mod` (`github.com/opentdf/platform/service`) - `tests-bdd/go.mod` - `go.work` ### Checklist - [ ] I have added or updated unit tests - [ ] I have added or updated integration tests (if appropriate) - [ ] I have added or updated documentation ### Testing Instructions
1 parent 5431e7e commit a960eca

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

examples/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/opentdf/platform/examples
22

33
go 1.24.0
44

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

77
require (
88
connectrpc.com/connect v1.18.1

go.work

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
go 1.24.9
1+
go 1.24.11
22

33
use (
44
./examples

lib/fixtures/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/opentdf/platform/lib/fixtures
22

33
go 1.23.0
44

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

77
require github.com/Nerzal/gocloak/v13 v13.9.0
88

lib/ocrypto/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/opentdf/platform/lib/ocrypto
22

33
go 1.24.0
44

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

77
require (
88
github.com/stretchr/testify v1.10.0

protocol/go/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/opentdf/platform/protocol/go
22

33
go 1.24.0
44

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

77
require (
88
buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go v1.34.1-20240508200655-46a4cf4ba109.1

sdk/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/opentdf/platform/sdk
22

33
go 1.24.0
44

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

77
require (
88
connectrpc.com/connect v1.19.1

service/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/opentdf/platform/service
22

33
go 1.24.0
44

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

77
require (
88
buf.build/go/protovalidate v0.13.1

tests-bdd/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/opentdf/platform/tests-bdd
22

3-
go 1.24.9
3+
go 1.24.11
44

55
require (
66
github.com/cucumber/godog v0.15.0

0 commit comments

Comments
 (0)