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/rust
define: base https://www.mongodb.com/${prefix}
define: versions v2.7 v2.8 v3.0 master
define: versions v2.7 v2.8 v3.0 v3.1 master

symlink: current -> master

Expand Down
19 changes: 10 additions & 9 deletions snooty.toml
Original file line number Diff line number Diff line change
@@ -1,28 +1,29 @@
name = "rust"
title = "Rust Driver"

intersphinx = [ "https://www.mongodb.com/docs/manual/objects.inv",
"https://www.mongodb.com/docs/drivers/objects.inv",
"https://www.mongodb.com/docs/atlas/objects.inv"
]
intersphinx = [
"https://www.mongodb.com/docs/manual/objects.inv",
"https://www.mongodb.com/docs/drivers/objects.inv",
"https://www.mongodb.com/docs/atlas/objects.inv",
]

toc_landing_pages = [
"/quick-start",
"/fundamentals/connections",
"/fundamentals/crud",
"/usage-examples",
"/fundamentals/indexes"
]
"/fundamentals/indexes",
]

sharedinclude_root = "https://raw.githubusercontent.com/10gen/docs-shared/main/"

[constants]
driver-long = "MongoDB Rust Driver"
driver-short = "Rust driver"
server = "MongoDB Server"
docs-branch = "master" # always set this to the docs branch (i.e. master, v2.6, v2.5, etc.)
version = "3.0.1" # always set this to the driver version (i.e. 2.6.0, 2.5.0, etc.)
min-rust-version = "1.60" # always set this to the minimum supported Rust version
docs-branch = "master" # always set this to the docs branch (i.e. master, v2.6, v2.5, etc.)
version = "3.1.0" # always set this to the driver version (i.e. 2.6.0, 2.5.0, etc.)
min-rust-version = "1.60" # always set this to the minimum supported Rust version
api = "https://docs.rs/mongodb/{+version+}/mongodb"
bson-version = "2.11.0"
bson-api = "https://docs.rs/bson/{+bson-version+}/bson"
Expand Down
26 changes: 26 additions & 0 deletions source/whats-new.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,38 @@ What's New
Learn about new features, improvements, and fixes introduced in the
following versions of the {+driver-long+}:

* :ref:`Version 3.1 <rust-version-3.1>`
* :ref:`Version 3.0.1 <rust-version-3.0.1>`
* :ref:`Version 3.0 <rust-version-3.0>`
* :ref:`Version 2.8 <rust-version-2.8>`
* :ref:`Version 2.7 <rust-version-2.7>`
* :ref:`Version 2.6 <rust-version-2.6>`

.. _rust-version-3.1:

What's New in 3.1
-----------------

The {+driver-short+} v3.1 release includes the following features,
improvements, and fixes:

- Adds support for more than one Key Management Service (KMS) provider of the same type.
To learn more about KMS providers, see
:manual:`Queryable Encryption </core/queryable-encryption/>` in the {+server+}
manual.
- Adds support for v2 of the Queryable Encryption range protocol. Range indexes for
Queryable Encryption are now GA.
- Adds support for the ``type`` field when creating indexes. To learn more about
creating indexes, see :manual:`Indexes </indexes/>` in the {+server+} manual.
- Implements the Happy Eyeballs algorithm for managing
TCP connections. To learn more about this algorithm, see the Rust documentation
for the `happy_eyeballs <https://docs.rs/happy_eyeballs/0.2.0/happy_eyeballs/>`__ crate.
- The driver publishes a ``TopologyDescriptionChangedEvent`` event when a topology
closes.

To learn more about this release, see the `v3.1 Release Notes <{+driver-source+}/releases/tag/v3.1.0>`__
on GitHub.

.. _rust-version-3.0.1:

What's New in 3.0.1
Expand Down