Skip to content
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

DOCSP-41826 - Remove MDB 3.6 #228

Merged
merged 6 commits into from
Sep 17, 2024
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
7 changes: 0 additions & 7 deletions source/fundamentals/authentication.txt
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,6 @@ authentication mechanisms, depending on which MongoDB versions your server suppo

- ``SCRAM-SHA-256``
- ``SCRAM-SHA-1``
- ``MONGODB-CR``

.. note::

MongoDB version 4.0 uses SCRAM as the default mechanism, and no longer
supports ``MONGODB-CR``.


Select the :guilabel:`Connection String` or :guilabel:`MongoCredential` tab to
see the corresponding syntax for specifying the default authentication mechanism:
Expand Down
10 changes: 9 additions & 1 deletion source/includes/language-compatibility-table-csharp.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@
- .NET Core 3.X
- .NET Core 2.X

* - 3.0
- ✓
- ✓
- ✓
- ✓
- ✓
-

* - 2.3 to 2.28
- ✓
- ✓
Expand All @@ -37,7 +45,7 @@
- .NET 4.7 [#2.14-note]_
- .NET 4.6

* - 2.13 to 2.28
* - 2.13 to 3.0
- ✓
- ✓
-
Expand Down
14 changes: 14 additions & 0 deletions source/includes/mongodb-compatibility-table-csharp.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,20 @@
- MongoDB 3.0
- MongoDB 2.6

* - 3.0
- ✓
- ✓
- ✓
- ✓
- ✓
- ✓
- ✓
-
-
-
-
-

* - 2.29
- ✓
- ✓
Expand Down
20 changes: 18 additions & 2 deletions source/upgrade.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ Upgrade Driver Versions
:depth: 1
:class: singlecol


Overview
--------

Expand Down Expand Up @@ -57,6 +56,16 @@ changes between the current and upgrade versions. For example, if you
are upgrading the driver from v2.0 to v2.20, address all breaking changes from
the version after v2.0 including any listed under v2.20.

.. _csharp-breaking-changes-3.0:

Version 3.0 Potential Breaking Change
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

- This version of the driver removes support for the
``MONGODB-CR`` authentication mechanism. To learn more about
configuring authentication in the {+driver-short+}, see
:ref:`Authentication Mechanisms. <csharp-authentication-mechanisms>`

.. _csharp-breaking-changes-2.28.0:

Version 2.28.0 Potential Breaking Change
Expand Down Expand Up @@ -174,6 +183,13 @@ To learn more about the compatibility between .NET/C# driver versions
and {+mdb-server+} versions, visit the
:ref:`Compatibility <csharp-compatibility-tables>` page.

Version 3.0 Release Support Changes
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

The v3.0 driver drops support for {+mdb-server+} v3.6 and earlier. To
use driver v3.0 or later, your {+mdb-server+} must be v4.0 or
later.

Version 2.14 Release Support Changes
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Expand All @@ -182,4 +198,4 @@ use any driver from v2.14 and later, your {+mdb-server+} must be v3.6 or
later.

To learn how to upgrade your {+mdb-server+} deployment, see
:manual:`Release Notes </release-notes/>` in the {+mdb-server+} manual.
:manual:`Release Notes </release-notes/>` in the {+mdb-server+} manual.
13 changes: 12 additions & 1 deletion source/whats-new.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@ What's New
:values: reference

.. meta::
:keywords: update, new feature, deprecation, upgrade, driver v2.19, driver v2.20, driver v2.21, driver v2.22, driver v2.23, driver v2.24, driver v2.25, driver v2.26
:keywords: update, new feature, deprecation, upgrade, driver v2.19, driver v2.20, driver v2.21, driver v2.22, driver v2.23, driver v2.24, driver v2.25, driver v2.26, driver v2.27, driver v2.28, driver v3.0

Learn what's new in:

* :ref:`Version 3.0 <csharp-version-3.0>`
* :ref:`Version 2.28 <csharp-version-2.28>`
* :ref:`Version 2.27 <csharp-version-2.27>`
* :ref:`Version 2.26 <csharp-version-2.26>`
Expand All @@ -32,6 +33,16 @@ Learn what's new in:

.. _upcoming-breaking-changes:

.. _csharp-version-3.0:
mongoKart marked this conversation as resolved.
Show resolved Hide resolved

What's New in 3.0
-----------------

.. warning:: Breaking Changes in v3.0

The v3.0 driver contains breaking changes. See :ref:`<csharp-breaking-changes-3.0>`
for more information.

.. _csharp-version-2.28:

What's New in 2.28
Expand Down
Loading