Skip to content

DOCSP-39159: v5.2 removal of support for 3.6 #591

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
merged 3 commits into from
Nov 19, 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
13 changes: 8 additions & 5 deletions .github/workflows/vale-tdbx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,26 @@ jobs:
- name: checkout
uses: actions/checkout@master

- name: Install docutils
run: sudo apt-get install -y docutils

- id: files
uses: masesgroup/retrieve-changed-files@v2
with:
format: 'csv'
format: "csv"

- name: checkout-latest-rules
uses: actions/checkout@master
with:
repository: mongodb/mongodb-vale-action
path: './tdbx-vale-rules'
path: "./tdbx-vale-rules"
token: ${{secrets.GITHUB_TOKEN}}

- name: move-files-for-vale-action
run: |
cp tdbx-vale-rules/.vale.ini .vale.ini
mkdir -p .github/styles/
cp -rf tdbx-vale-rules/.github/styles/ .github/
cp tdbx-vale-rules/.vale.ini .vale.ini
mkdir -p .github/styles/
cp -rf tdbx-vale-rules/.github/styles/ .github/

- name: run-vale
uses: errata-ai/vale-action@reviewdog
Expand Down
2 changes: 1 addition & 1 deletion source/includes/mongodb-compatibility-table-java.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
- ✓
- ✓
- ✓
-
-

* - 4.10 to 5.1
- ⊛
Expand Down
19 changes: 19 additions & 0 deletions source/upgrade.txt
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,15 @@ changes between the current and upgrade versions. For example, if you
are upgrading the driver from v4.0 to v4.5, address all breaking changes from
the version after v4.0 including any listed under v4.5.

.. _java-breaking-changes-v5.2:

Version 5.2 Breaking Changes
~~~~~~~~~~~~~~~~~~~~~~~~~~~~

- The driver is no longer compatible with {+mdb-server+} version
v3.6. To learn more about this change, see the
:ref:`<java-server-release-change-v5.2>` section.

.. _java-breaking-changes-v5.0:

Version 5.0 Breaking Changes
Expand Down Expand Up @@ -435,6 +444,16 @@ end-of-life (EOL).
To learn more about the MongoDB support for EOL products,
see the `Legacy Support Policy <https://www.mongodb.com/support-policy/legacy>`__.

.. _java-server-release-change-v5.2:

Driver Version 5.2 Server Support Changes
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

The v5.2 driver drops support for {+mdb-server+} v3.6.
To use the v5.2 driver, your {+mdb-server+} must be v4.0 or later. To
learn how to upgrade your {+mdb-server+} deployment, see
:manual:`Release Notes </release-notes>` in the {+mdb-server+} manual.

.. _java-server-8.1-incompatibility:

Server Version 8.1 Support Changes
Expand Down
9 changes: 8 additions & 1 deletion source/whats-new.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,14 @@ The 5.2.1 driver patch release includes the following changes:
What's New in 5.2
-----------------

New features of the 5.2 driver release include:
.. important:: Removal of Support for {+mdb-server+} 3.6

{+driver-short+} v5.2 removes support for {+mdb-server+} 3.6. To
learn more about compatible versions of the server, see
:ref:`java-compatibility-tables`.

The 5.2 driver release includes the following changes, fixes,
and features:

- A forward-slash (``/``) character between the host names and client
options in a connection URI is optional. The driver parses the
Expand Down
Loading