Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config/redirects
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
define: prefix docs/drivers/node
define: base https://www.mongodb.com/${prefix}
define: versions v3.6 v3.7 v4.0 v4.1 v4.2 v4.3 v4.4 v4.5 v4.6 v4.7 v4.8 v4.9 v4.10 v4.11 v4.12 v4.13 v4.14 v4.15 v4.16 v4.17 v5.0 v5.1 v5.2 v5.3 v5.4 v5.5 v5.6 v5.7 v5.8 v5.9 v6.0 v6.1 v6.2 v6.3 v6.4 v6.5 v6.6 v6.7 v6.8 v6.9 v6.10 v6.11 v6.12 v6.13 v6.14 v6.15 v6.16 master
define: versions v3.6 v3.7 v4.0 v4.1 v4.2 v4.3 v4.4 v4.5 v4.6 v4.7 v4.8 v4.9 v4.10 v4.11 v4.12 v4.13 v4.14 v4.15 v4.16 v4.17 v5.0 v5.1 v5.2 v5.3 v5.4 v5.5 v5.6 v5.7 v5.8 v5.9 v6.0 v6.1 v6.2 v6.3 v6.4 v6.5 v6.6 v6.7 v6.8 v6.9 v6.10 v6.11 v6.12 v6.13 v6.14 v6.15 v6.16 v6.17 master

symlink: current -> master

Expand Down
2 changes: 1 addition & 1 deletion snooty.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ toc_landing_pages = [
sharedinclude_root = "https://raw.githubusercontent.com/10gen/docs-shared/main/"

[constants]
version = "6.16"
version = "6.17"
api = "https://mongodb.github.io/node-mongodb-native/{+version+}"
driver-long = "MongoDB Node.js driver"
driver-short = "Node.js driver"
Expand Down
2 changes: 1 addition & 1 deletion source/includes/language-compatibility-table-node.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
- Node.js v16.x.x
- Node.js v14.x.x

* - 6.11 to 6.16 [#latest-note]_
* - 6.11 to 6.17 [#latest-note]_
- ✓
- ✓
- ✓
Expand Down
10 changes: 10 additions & 0 deletions source/includes/mongodb-compatibility-table-node.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,16 @@
- MongoDB 4.0
- MongoDB 3.6

* - 6.17
- ✓
- ✓
- ✓
- ✓
- ✓
- ✓
-
-

* - 6.10 to 6.16
- ✓
- ✓
Expand Down
39 changes: 39 additions & 0 deletions source/reference/release-notes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Release Notes

Learn what's new in:

* :ref:`Version 6.17 <version-6.17>`
* :ref:`Version 6.16 <version-6.16>`
* :ref:`Version 6.15 <version-6.15>`
* :ref:`Version 6.14 <version-6.14>`
Expand All @@ -39,6 +40,44 @@ Learn what's new in:
* :ref:`Version 6.1 <version-6.1>`
* :ref:`Version 6.0 <version-6.0>`

.. _version-6.17:

What's New in 6.17
------------------

The {+driver-short+} v6.17 release includes the following features:

- Removes support for {+mdb-server+} 4.0.

- Upgrades the ``bson`` package to v6.10.4. For more information about this release,
see the :github:`v6.10.4 Release Notes <mongodb/js-bson/releases/tag/v6.10.4>` for the
``bson`` package on GitHub.

- Adds the ``keepAliveInitialDelay`` option when constructing a ``MongoClient``.
This option defaults to ``120000`` milliseconds.

- Retries OIDC authentication when the initial authentication fails due to an
expired token error.

- Adds the ``sort`` option for ``updateOne()`` and ``replaceOne()`` operations.
This option requires {+mdb-server+} 8.0 or later.

- Instructs the ``MongoClient.close()`` method to close outstanding in-use
connections.

- Adds a ``keyTimeoutMS`` encryption option for configuring DEK cache expiration time.
This option defaults to ``6000`` milliseconds and requires ``mongodb-client-encryption``
version 6.4 or later.

- Instructs update operations to generate an error if the ``ignoreUndefined`` is set
to ``true`` and all updates are undefined.

- Treats socket errors as network errors.

To learn more about this release, see the
:github:`v6.17.0 Release Notes <mongodb/node-mongodb-native/releases/tag/v6.17.0>` on
GitHub.

.. _version-6.16:

What's New in 6.16
Expand Down
Loading