Skip to content

chore(deps): bump go.mongodb.org/mongo-driver/v2 from 2.8.2 to 2.9.0 in /agent - #13659

Closed
dependabot[bot] wants to merge 1 commit into
dev-v2from
dependabot/go_modules/agent/go.mongodb.org/mongo-driver/v2-2.8.1
Closed

chore(deps): bump go.mongodb.org/mongo-driver/v2 from 2.8.2 to 2.9.0 in /agent#13659
dependabot[bot] wants to merge 1 commit into
dev-v2from
dependabot/go_modules/agent/go.mongodb.org/mongo-driver/v2-2.8.1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 28, 2026

Copy link
Copy Markdown
Contributor

Bumps go.mongodb.org/mongo-driver/v2 from 2.8.2 to 2.9.0.

Release notes

Sourced from go.mongodb.org/mongo-driver/v2's releases.

MongoDB Go Driver 2.9.0

The MongoDB Go Driver Team is pleased to release version 2.9.0 of the official MongoDB Go Driver.

Release Highlights

[!WARNING] The minimum supported MongoDB server version is now 4.4.

[!WARNING] The minimum supported Go version is now 1.25. The Go Driver supports the last 2 Go minor versions.

New ext/awsauth module

The new ext/awsauth module adds support for all AWS authentication methods via the official AWS SDK for Go. Applications running on AWS can now use an awsauth.CredentialsProvider in ClientOptions, ClientEncryptionOptions, and AutoEncryptionOptions.

For example, to configure a mongo.Client with the new ext/awsauth module:

import (
    "context"
    "log"
"github.com/aws/aws-sdk-go-v2/config"
"go.mongodb.org/mongo-driver/ext/awsauth"
"go.mongodb.org/mongo-driver/v2/mongo"
"go.mongodb.org/mongo-driver/v2/mongo/options"

)
func main() {
cfg, err := config.LoadDefaultConfig(context.Background())
if err != nil {
log.Fatal(err)
}
provider := awsauth.NewCredentialsProvider(cfg.Credentials)
credential := options.Credential{
	AuthMechanism:          "MONGODB-AWS",
	AWSCredentialsProvider: provider,
}
client, err := mongo.Connect(options.Client().SetAuth(credential))
if err != nil {
log.Fatal(err)
}
defer client.Disconnect(context.Background())
// ...

}

[!NOTE]

... (truncated)

Commits
  • 099a81f BUMP v2.9.0
  • 3c87f21 GODRIVER-4101 Add tlsDisableCertificateRevocationCheck option. (#2571)
  • 5e5fba9 Bump testdata/specifications from d9d69f5 to 70a628b (#2576)
  • ac30cac GODRIVER-4109: Exclude OCSP errors from backpressure label (#2584)
  • 15ca7a0 GODRIVER-4096 Fix panic in Collection.insert on out-of-order write errors (#2...
  • 325f1ac Bump github/codeql-action from 4.37.8 to 4.37.9 in the actions group (#2583)
  • 4fe3377 GODRIVER-4062 Remove the ServerOverloadedError retry example. (#2568)
  • ed6483f Bump github.com/bombsimon/logrusr/v4 from 4.1.0 to 4.2.0 (#2580)
  • b575bc1 Bump github.com/bitfield/script from 0.24.3 to 0.25.0 (#2552)
  • 5ba69b9 Bump .evergreen/drivers-evergreen-tools from 890a93b to c70d29e (#2575)
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Aug 28, 2026
@dependabot dependabot Bot changed the title chore(deps): bump go.mongodb.org/mongo-driver/v2 from 2.8.0 to 2.8.1 in /agent chore(deps): bump go.mongodb.org/mongo-driver/v2 from 2.8.1 to 2.8.2 in /agent Sep 3, 2026
@dependabot
dependabot Bot force-pushed the dependabot/go_modules/agent/go.mongodb.org/mongo-driver/v2-2.8.1 branch from 2595f31 to 79aec04 Compare September 3, 2026 03:49
@dependabot dependabot Bot changed the title chore(deps): bump go.mongodb.org/mongo-driver/v2 from 2.8.1 to 2.8.2 in /agent chore(deps): bump go.mongodb.org/mongo-driver/v2 from 2.8.2 to 2.9.0 in /agent Sep 8, 2026
@dependabot
dependabot Bot force-pushed the dependabot/go_modules/agent/go.mongodb.org/mongo-driver/v2-2.8.1 branch from 79aec04 to 2194261 Compare September 8, 2026 09:13
Bumps [go.mongodb.org/mongo-driver/v2](https://github.com/mongodb/mongo-go-driver) from 2.8.2 to 2.9.0.
- [Release notes](https://github.com/mongodb/mongo-go-driver/releases)
- [Commits](mongodb/mongo-go-driver@v2.8.2...v2.9.0)

---
updated-dependencies:
- dependency-name: go.mongodb.org/mongo-driver/v2
  dependency-version: 2.8.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/go_modules/agent/go.mongodb.org/mongo-driver/v2-2.8.1 branch from 2194261 to bb05131 Compare September 9, 2026 05:56
@dependabot @github

dependabot Bot commented on behalf of github Sep 9, 2026

Copy link
Copy Markdown
Contributor Author

Superseded by #13768.

@dependabot dependabot Bot closed this Sep 9, 2026
@dependabot
dependabot Bot deleted the dependabot/go_modules/agent/go.mongodb.org/mongo-driver/v2-2.8.1 branch September 9, 2026 08:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file go Pull requests that update Go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants