Skip to content
This repository has been archived by the owner on Nov 3, 2024. It is now read-only.

fix(deps): update module go.mongodb.org/mongo-driver to v1.17.1 #58

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 14, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
go.mongodb.org/mongo-driver v1.13.1 -> v1.17.1 age adoption passing confidence

Release Notes

mongodb/mongo-go-driver (go.mongodb.org/mongo-driver)

v1.17.1: MongoDB Go Driver 1.17.1

Compare Source

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

Release Notes

This release improves the behavior of connection checkout by checking for closed connections.

It also fixes a bug where the authSource from a TXT record would be overridden for auth mechanisms
that require an authSource of $external.


For a full list of tickets included in this release, please see the links below:

Full Changelog: v1.17.0...v1.17.1

Documentation for the Go driver can be found on pkg.go.dev and the MongoDB documentation site. BSON library documentation is also available on pkg.go.dev. Questions and inquiries can be asked on the MongoDB Developer Community. Bugs can be reported in the Go Driver project in the MongoDB JIRA where a list of current issues can be found. Your feedback on the Go driver is greatly appreciated!

v1.17.0: MongoDB Go Driver 1.17.0

Compare Source

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

Release Notes

This release adds support for client authentication using OpenID Connect (MONGODB-OIDC), and for the Queryable Encryption Range Protocol. The driver now supports MongoDB 8.0. Additionally, IndexView has been extended to include methods for dropping indexes by key (i.e. DropOneWithKey and DropWithKey).

[!NOTE]

This is the last planned minor release in the 1.x series. Future driver versions will be in the 2.x series. The v1.17.x will still receive security and bug fixes for a year.

Queryable Encryption Range Protocol

Added range protocol support for Queryable Encryption.

MONGODB-OIDC

Added support OpenID Connect (OIDC) authentication for workload identities. A workload identity is an identity you assign to a software workload, such as an application, service, script, or container, to authenticate and access other services and resources.

See the documentation for more details.


For a full list of tickets included in this release, please see the links below:

Full Changelog: v1.16.1...v1.17.0

Documentation for the Go driver can be found on pkg.go.dev and the MongoDB documentation site. BSON library documentation is also available on pkg.go.dev. Questions and inquiries can be asked on the MongoDB Developer Community. Bugs can be reported in the Go Driver project in the MongoDB JIRA where a list of current issues can be found. Your feedback on the Go driver is greatly appreciated!

v1.16.1

Compare Source

v1.16.0: MongoDB Go Driver 1.16.0

Compare Source

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

Release Notes

This release adds the ability to specify an index type when creating an Atlas Search Index, reduces memory usage when using "zstd" compression, and upgrades dependencies.

Specify type when creating a search index

Allow specifying index type via SearchIndexModel.Options.SetType when creating a search index.

Reduce zstd memory usage

When "zstd" compression is enabled, static memory usage and per-operation memory usage are reduced.

Upgrade dependencies
  • Bump golang.org/x/crypto from 0.17.0 to 0.22.0
  • Bump github.com/google/go-cmp from 0.5.2 to 0.6.0
  • Bump github.com/montanaflynn/stats from 0.0.0-20171201202039-1bf9dbcd8cbe to 0.7.1
  • Bump golang.org/x/sync from 0.1.0 to 0.7.0
  • Bump github.com/golang/snappy from 0.0.1 to 0.0.4

For a full list of tickets included in this release, please see the links below:

Full Changelog: v1.15.1...v1.16.0

Documentation for the Go driver can be found on pkg.go.dev and the MongoDB documentation site. BSON library documentation is also available on pkg.go.dev. Questions and inquiries can be asked on the MongoDB Developer Community. Bugs can be reported in the Go Driver project in the MongoDB JIRA where a list of current issues can be found. Your feedback on the Go driver is greatly appreciated!

v1.15.1: MongoDB Go Driver 1.15.1

Compare Source

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

Release Notes

This release fixes various bugs and addresses a few usability issues:

  • (GODRIVER-3107) Fixes a possible connection leak in the background round-trip-time monitor.
  • (GODRIVER-3217) Allows manually specifying a maxTimeMS value for Find and Aggregate operations when a client-wide timeout (e.g. via timeoutMS or SetTimeout) is set and an operation timeout (i.e. a Context with deadline) is set. Previously, maxTimeMS was always omitted, even if it was set using the SetMaxTime option.
  • (GODRIVER-2992) Add a RemainingBatchLength method to the ChangeStream, similar to the identically named method on the Cursor type.

For a full list of tickets included in this release, please see the links below:

Full Changelog: v1.15.0...1.15.1

Documentation for the Go driver can be found on pkg.go.dev and the MongoDB documentation site. BSON library documentation is also available on pkg.go.dev. Questions and inquiries can be asked on the MongoDB Developer Community. Bugs can be reported in the Go Driver project in the MongoDB JIRA where a list of current issues can be found. Your feedback on the Go driver is greatly appreciated!

Full Changelog: mongodb/mongo-go-driver@v1.15.0...v1.15.1

v1.15.0: MongoDB Go Driver 1.15.0

Compare Source

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

Release Notes

This release adds a feature that can prevent "connection churn" caused by operation timeouts.

Prevent "Connection Churn" Caused by Timeouts

Previously, the Go Driver would close the in-use connection when an operation timed out. However, closing the in-use connection can cause significant additional application and database load if many timeouts happen quickly, potentially causing "connection churn" that can exacerbate latency issues. The Go Driver now offers a new feature that waits (for a maximum of 1 second) for the connection to be reusable after an operation times out instead of closing it.

To enable the new feature, set a Client-wide timeout by using SetTimeout or by specifing the timeoutMS connection string option. Use SetTimeout(0) or timeoutMS=0 to enable the new feature without adding new timeouts. See SetTimeout for more information about the Client-wide timeout configuration.


For a full list of tickets included in this release, please see the links below:

Full Changelog: v1.14.0...1.15.0

Documentation for the Go driver can be found on pkg.go.dev and the MongoDB documentation site. BSON library documentation is also available on pkg.go.dev. Questions and inquiries can be asked on the MongoDB Developer Community. Bugs can be reported in the Go Driver project in the MongoDB JIRA where a list of current issues can be found. Your feedback on the Go driver is greatly appreciated!

v1.14.1: MongoDB Go Driver 1.14.1

Compare Source

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

Release Notes

This release fixes a bug of connection leaking.


For a full list of tickets included in this release, please see the links below:

Full Changelog: v1.14.0...1.14.1

Documentation for the Go driver can be found on pkg.go.dev and the MongoDB documentation site. BSON library documentation is also available on pkg.go.dev. Questions and inquiries can be asked on the MongoDB Developer Community. Bugs can be reported in the Go Driver project in the MongoDB JIRA where a list of current issues can be found. Your feedback on the Go driver is greatly appreciated!

v1.14.0: MongoDB Go Driver 1.14.0

Compare Source

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

Release Notes

This release bumps the minimum Go version from 1.13 to 1.18. It also brings several additional changes and improvements.

Notable Changes
  • In case of a heartbeat timeout, in-progress operations are preemptively canceled.
  • Support connecting with a "mongodb+srv://" URI that contains capital letters in the SRV hostname.

For a full list of tickets included in this release, please see the links below:

Full Changelog: v1.13.2...1.14.0

Documentation for the Go driver can be found on pkg.go.dev and the MongoDB documentation site. BSON library documentation is also available on pkg.go.dev. Questions and inquiries can be asked on the MongoDB Developer Community. Bugs can be reported in the Go Driver project in the MongoDB JIRA where a list of current issues can be found. Your feedback on the Go driver is greatly appreciated!

v1.13.4: MongoDB Go Driver 1.13.4

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

Release Notes

This release fixes a bug of connection leaking.


For a full list of tickets included in this release, please see the links below:

Full Changelog: v1.13.2...1.13.4

Documentation for the Go driver can be found on pkg.go.dev and the MongoDB documentation site. BSON library documentation is also available on pkg.go.dev. Questions and inquiries can be asked on the MongoDB Developer Community. Bugs can be reported in the Go Driver project in the MongoDB JIRA where a list of current issues can be found. Your feedback on the Go driver is greatly appreciated!

v1.13.2: MongoDB Go Driver 1.13.2

Compare Source

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

Release Notes

This release restores the behavior that an empty map or slice is decoded as nil, and fixes a bug of connecting via UNIX sockets like mongodb://%2Ftmp%2Fmongodb-27017.sock.

This release also stops propagating passwords in error messages.


For a full list of tickets included in this release, please see the links below:

Full Changelog: v1.13.1...1.13.2

Documentation for the Go driver can be found on pkg.go.dev and the MongoDB documentation site. BSON library documentation is also available on pkg.go.dev. Questions and inquiries can be asked on the MongoDB Developer Community. Bugs can be reported in the Go Driver project in the MongoDB JIRA where a list of current issues can be found. Your feedback on the Go driver is greatly appreciated!


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title fix(deps): update module go.mongodb.org/mongo-driver to v1.13.2 fix(deps): update module go.mongodb.org/mongo-driver to v1.14.0 Feb 15, 2024
@renovate renovate bot force-pushed the renovate/go.mongodb.org-mongo-driver-1.x branch from 04029c8 to 88becea Compare February 15, 2024 00:06
@renovate renovate bot force-pushed the renovate/go.mongodb.org-mongo-driver-1.x branch from 88becea to c6169b6 Compare April 12, 2024 23:16
@renovate renovate bot changed the title fix(deps): update module go.mongodb.org/mongo-driver to v1.14.0 fix(deps): update module go.mongodb.org/mongo-driver to v1.15.0 Apr 12, 2024
@renovate renovate bot force-pushed the renovate/go.mongodb.org-mongo-driver-1.x branch from c6169b6 to efeb0aa Compare June 15, 2024 06:08
Copy link
Contributor Author

renovate bot commented Jun 15, 2024

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 8 additional dependencies were updated

Details:

Package Change
github.com/golang/snappy v0.0.1 -> v0.0.4
github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe -> v0.7.1
github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d -> v0.0.0-20240726163527-a2c0da244d78
golang.org/x/crypto v0.21.0 -> v0.26.0
golang.org/x/sync v0.5.0 -> v0.8.0
golang.org/x/sys v0.18.0 -> v0.23.0
golang.org/x/term v0.18.0 -> v0.23.0
golang.org/x/text v0.14.0 -> v0.17.0

@renovate renovate bot changed the title fix(deps): update module go.mongodb.org/mongo-driver to v1.15.0 fix(deps): update module go.mongodb.org/mongo-driver to v1.15.1 Jun 15, 2024
@renovate renovate bot changed the title fix(deps): update module go.mongodb.org/mongo-driver to v1.15.1 fix(deps): update module go.mongodb.org/mongo-driver to v1.16.0 Jun 27, 2024
@renovate renovate bot force-pushed the renovate/go.mongodb.org-mongo-driver-1.x branch from efeb0aa to e447dda Compare June 27, 2024 22:48
@renovate renovate bot force-pushed the renovate/go.mongodb.org-mongo-driver-1.x branch from e447dda to f98fa35 Compare August 7, 2024 21:27
@renovate renovate bot changed the title fix(deps): update module go.mongodb.org/mongo-driver to v1.16.0 fix(deps): update module go.mongodb.org/mongo-driver to v1.16.1 Aug 7, 2024
@renovate renovate bot force-pushed the renovate/go.mongodb.org-mongo-driver-1.x branch from f98fa35 to accc28e Compare August 20, 2024 00:13
@renovate renovate bot force-pushed the renovate/go.mongodb.org-mongo-driver-1.x branch from accc28e to 0915e2e Compare September 17, 2024 21:11
@renovate renovate bot changed the title fix(deps): update module go.mongodb.org/mongo-driver to v1.16.1 fix(deps): update module go.mongodb.org/mongo-driver to v1.17.0 Sep 17, 2024
@renovate renovate bot force-pushed the renovate/go.mongodb.org-mongo-driver-1.x branch from 0915e2e to 89734e3 Compare October 1, 2024 22:48
@renovate renovate bot changed the title fix(deps): update module go.mongodb.org/mongo-driver to v1.17.0 fix(deps): update module go.mongodb.org/mongo-driver to v1.17.1 Oct 1, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants