-
Notifications
You must be signed in to change notification settings - Fork 52
v6.13 release #957
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
jordan-smith721
merged 4 commits into
mongodb:master
from
jordan-smith721:v6.13-release
Jan 31, 2025
Merged
v6.13 release #957
Changes from 2 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ | |
- MongoDB 4.0 | ||
- MongoDB 3.6 | ||
|
||
* - 6.10 to 6.12 | ||
* - 6.10 to 6.13 | ||
- ✓ | ||
- ✓ | ||
- ✓ | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -19,6 +19,7 @@ What's New | |||||
|
||||||
Learn what's new in: | ||||||
|
||||||
* :ref:`Version 6.13 <version-6.13>` | ||||||
* :ref:`Version 6.12 <version-6.12>` | ||||||
* :ref:`Version 6.11 <version-6.11>` | ||||||
* :ref:`Version 6.10 <version-6.10>` | ||||||
|
@@ -33,6 +34,50 @@ Learn what's new in: | |||||
* :ref:`Version 6.1 <version-6.1>` | ||||||
* :ref:`Version 6.0 <version-6.0>` | ||||||
|
||||||
.. _version-6.13: | ||||||
|
||||||
What's New in 6.13 | ||||||
------------------ | ||||||
|
||||||
The {+driver-short+} v6.13 release includes the following features: | ||||||
|
||||||
- Adds a new standardized logger to enable insight into database operations | ||||||
without code changes. You can enable and configure the logger through | ||||||
environment variables, as shown in the following example: | ||||||
|
||||||
.. code-block:: bash | ||||||
|
||||||
env MONGODB_LOG_ALL=debug node server.mjs | ||||||
|
||||||
- Improves command monitoring performance by removing deep copies of command and | ||||||
reply objects. | ||||||
nbbeeken marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
|
||||||
- Adds an experimental abort signal feature. You can pass the ``signal`` command | ||||||
to the following methods to interrupt the execution of the method when the | ||||||
signal is triggered: | ||||||
|
||||||
- ``collection.find()`` | ||||||
- ``collection.findOne()`` | ||||||
- ``collection.aggregate()`` | ||||||
- ``collection.coundDocuments()`` | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
- ``db.listCollections()`` | ||||||
- ``db.command()`` | ||||||
|
||||||
Aborting a signal closes a connection, which might cause unnecessary | ||||||
connection reestablishment. | ||||||
|
||||||
- To avoid potential DNS timeout errors, the driver catches and retries DNS | ||||||
lookups when resolving ``mongodb+srv://`` connection strings. | ||||||
|
||||||
- ``MongoClient.close()`` also closes any associated cursors. | ||||||
- You can call ``MongoClient.close()`` concurrently. | ||||||
nbbeeken marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
- Fixes an issue that caused ``MONGODB-OIDC`` authentication to not properly | ||||||
reauthenticate if the handshake includes speculative authentication. | ||||||
|
||||||
To learn more about this release, see the | ||||||
:github:`v6.13.0 Release Notes <mongodb/node-mongodb-native/releases/tag/v6.13.0>` on | ||||||
GitHub. | ||||||
|
||||||
.. _version-6.12: | ||||||
|
||||||
What's New in 6.12 | ||||||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.