Skip to content

Commit afb510a

Browse files
authored
DOCSP-39159: v5.2 removal of support for 3.6 (#591)
* DOCSP-39159: v5.2 removal of support for 3.6 * vale action * add upgrade guide
1 parent 3e3f1b7 commit afb510a

File tree

4 files changed

+36
-7
lines changed

4 files changed

+36
-7
lines changed

.github/workflows/vale-tdbx.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,26 @@ jobs:
1212
- name: checkout
1313
uses: actions/checkout@master
1414

15+
- name: Install docutils
16+
run: sudo apt-get install -y docutils
17+
1518
- id: files
1619
uses: masesgroup/retrieve-changed-files@v2
1720
with:
18-
format: 'csv'
21+
format: "csv"
1922

2023
- name: checkout-latest-rules
2124
uses: actions/checkout@master
2225
with:
2326
repository: mongodb/mongodb-vale-action
24-
path: './tdbx-vale-rules'
27+
path: "./tdbx-vale-rules"
2528
token: ${{secrets.GITHUB_TOKEN}}
2629

2730
- name: move-files-for-vale-action
2831
run: |
29-
cp tdbx-vale-rules/.vale.ini .vale.ini
30-
mkdir -p .github/styles/
31-
cp -rf tdbx-vale-rules/.github/styles/ .github/
32+
cp tdbx-vale-rules/.vale.ini .vale.ini
33+
mkdir -p .github/styles/
34+
cp -rf tdbx-vale-rules/.github/styles/ .github/
3235
3336
- name: run-vale
3437
uses: errata-ai/vale-action@reviewdog

source/includes/mongodb-compatibility-table-java.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
- ✓
2424
- ✓
2525
- ✓
26-
-
26+
-
2727

2828
* - 4.10 to 5.1
2929
- ⊛

source/upgrade.txt

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,15 @@ changes between the current and upgrade versions. For example, if you
5656
are upgrading the driver from v4.0 to v4.5, address all breaking changes from
5757
the version after v4.0 including any listed under v4.5.
5858

59+
.. _java-breaking-changes-v5.2:
60+
61+
Version 5.2 Breaking Changes
62+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
63+
64+
- The driver is no longer compatible with {+mdb-server+} version
65+
v3.6. To learn more about this change, see the
66+
:ref:`<java-server-release-change-v5.2>` section.
67+
5968
.. _java-breaking-changes-v5.0:
6069

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

447+
.. _java-server-release-change-v5.2:
448+
449+
Driver Version 5.2 Server Support Changes
450+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
451+
452+
The v5.2 driver drops support for {+mdb-server+} v3.6.
453+
To use the v5.2 driver, your {+mdb-server+} must be v4.0 or later. To
454+
learn how to upgrade your {+mdb-server+} deployment, see
455+
:manual:`Release Notes </release-notes>` in the {+mdb-server+} manual.
456+
438457
.. _java-server-8.1-incompatibility:
439458

440459
Server Version 8.1 Support Changes

source/whats-new.txt

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,14 @@ The 5.2.1 driver patch release includes the following changes:
4949
What's New in 5.2
5050
-----------------
5151

52-
New features of the 5.2 driver release include:
52+
.. important:: Removal of Support for {+mdb-server+} 3.6
53+
54+
{+driver-short+} v5.2 removes support for {+mdb-server+} 3.6. To
55+
learn more about compatible versions of the server, see
56+
:ref:`java-compatibility-tables`.
57+
58+
The 5.2 driver release includes the following changes, fixes,
59+
and features:
5360

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

0 commit comments

Comments
 (0)