Skip to content

Commit 0893e42

Browse files
GODRIVER-3592 Update remaining Go 1.23 references to 1.25
- Update CONTRIBUTING.md development requirement - Update golangci-lint.sh to use Go 1.25.0 - Update internal module go.mod files to use Go 1.25
1 parent 2235fdc commit 0893e42

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The Go Driver team uses GitHub to manage and review all code changes. Pull reque
1818

1919
When creating a pull request, please ensure that your code adheres to the following guidelines:
2020

21-
Code should compile and tests should pass under all Go versions which the driver currently supports. Currently, the Go Driver supports a minimum version of Go 1.19 and requires Go 1.23 for development. Please run the following `Taskfile` targets to validate your changes:
21+
Code should compile and tests should pass under all Go versions which the driver currently supports. Currently, the Go Driver supports a minimum version of Go 1.19 and requires Go 1.25 for development. Please run the following `Taskfile` targets to validate your changes:
2222

2323
- `task fmt`
2424
- `task lint`

etc/golangci-lint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -ex
33

44
# Keep this in sync with go version used in static-analysis Evergreen build variant.
5-
GO_VERSION=1.23.0
5+
GO_VERSION=1.25.0
66
GOLANGCI_LINT_VERSION=1.60.1
77

88
# Unset the cross-compiler overrides while downloading binaries.

internal/cmd/faas/awslambda/mongodb/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.mongodb.go/mongo-driver/v2/internal/cmd/faas/awslambda/mongodb
22

3-
go 1.23
3+
go 1.25
44

55
replace go.mongodb.org/mongo-driver/v2 => ../../../../../
66

internal/test/compilecheck/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module go.mongodb.go/mongo-driver/v2/internal/test/compilecheck
22

3-
go 1.23.0
3+
go 1.25.0
44

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

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

0 commit comments

Comments
 (0)