Skip to content

Commit c7728fd

Browse files
authored
Merge branch 'master' into dependabot/submodules/testdata/specifications-909b4d6
2 parents 41d199b + db01901 commit c7728fd

File tree

11 files changed

+13
-13
lines changed

11 files changed

+13
-13
lines changed

.github/workflows/scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
6565
# format to the repository Actions tab.
6666
- name: "Upload artifact"
67-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
67+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
6868
with:
6969
name: SARIF file
7070
path: results.sarif

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The MongoDB Go driver follows [semantic versioning](https://semver.org/) for its
2323
## Requirements
2424

2525
- Go 1.19 or higher. We aim to support the latest versions of Go.
26-
- Go 1.23 or higher is required to run the driver test suite.
26+
- Go 1.25 or higher is required to run the driver test suite.
2727
- MongoDB 4.2 and higher.
2828

2929
## Installation

docs/CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ We are building this software together and strongly encourage contributions from
66

77
## Requirements
88

9-
Go 1.23 or higher is required to run the driver test suite. We use [task](https://taskfile.dev/) as our task runner.
9+
Go 1.25 or higher is required to run the driver test suite. We use [task](https://taskfile.dev/) as our task runner.
1010

1111
## Bug Fixes and New Features
1212

@@ -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.

etc/govulncheck.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ set -ex
77
# Note: this needs to be updated if the listed Go version has vulnerabilities
88
# discovered because they will show up in the scan results along with Go Driver
99
# and dependency vulnerabilities.
10-
GO_VERSION=1.25.1
10+
GO_VERSION=1.25.3
1111

1212
go install golang.org/dl/go$GO_VERSION@latest
1313
go${GO_VERSION} download

examples/_logger/logrus/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/examples/logger/logrus
22

3-
go 1.23
3+
go 1.25
44

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

examples/_logger/zap/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/examples/logger/zap
22

3-
go 1.23
3+
go 1.25
44

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

examples/_logger/zerolog/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/examples/logger/zerolog
22

3-
go 1.23
3+
go 1.25
44

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

go.work

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

33
use (
44
.

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

0 commit comments

Comments
 (0)