@@ -19,6 +19,7 @@ What's New
1919
2020Learn what's new in:
2121
22+ * :ref:`Version 6.11 <version-6.11>`
2223* :ref:`Version 6.10 <version-6.10>`
2324* :ref:`Version 6.9 <version-6.9>`
2425* :ref:`Version 6.8 <version-6.8>`
@@ -31,6 +32,46 @@ Learn what's new in:
3132* :ref:`Version 6.1 <version-6.1>`
3233* :ref:`Version 6.0 <version-6.0>`
3334
35+ .. _version-6.11:
36+
37+ What's New in 6.11
38+ ------------------
39+
40+ The {+driver-short+} v6.11 release includes the following features:
41+
42+ - Adds support for Node.js v22.
43+
44+ - Adds the Client Side Operations Timeout (CSOT) feature. CSOT lets you apply
45+ a single timeout to all steps needed to complete a server-side operation, including
46+ server selection, connection checkout, serialization, and server-side execution.
47+
48+ .. note:: Experimental Feature
49+
50+ The CSOT feature is experimental and might change in future driver releases.
51+
52+ - Adds OIDC authentication support for Kubernetes environments. To use OIDC to authenticate
53+ to a Kubernetes environment, set the ``authMechanismProperties`` connection option
54+ to ``ENVIRONMENT:k8s`` in your connection string. You can use this feature when connecting
55+ to an environment running in Amazon's Elastic Kubernetes Service,
56+ Google Kubernetes Engine, or Azure Kubernetes Service.
57+
58+ The following example shows how to specify this connection option:
59+
60+ .. code-block:: javascript
61+ :copyable: true
62+
63+ const client = new MongoClient('mongodb://host:port/?authMechanism=MONGODB-OIDC&authMechanismProperties=ENVIRONMENT:k8s');
64+
65+ - The ``bson`` package adds support for binary vector data. To learn more about this feature,
66+ see the :github:`v6.10.0 Release Notes <mongodb/js-bson/releases/tag/v6.10.0>` for the
67+ ``bson`` package on GitHub.
68+
69+ - The driver emits ``ConnectionClosedEvents`` after ``PoolClearedEvents``.
70+
71+ To learn more about this release, see the
72+ :github:`v6.11.0 Release Notes <mongodb/node-mongodb-native/releases/tag/v6.11.0>` on
73+ GitHub.
74+
3475.. _version-6.10:
3576
3677What's New in 6.10
0 commit comments