Skip to content

Commit

Permalink
DOCSP-39159: v5.2 removal of support for 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
rustagir committed Nov 19, 2024
1 parent ee3d30a commit e8d219f
Show file tree
Hide file tree
Showing 4 changed files with 70 additions and 2 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/vale-tdbx.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: vale-checks
on:
pull_request:
paths:
- "source/**"

jobs:
vale:
name: TDBX Vale rules
runs-on: ubuntu-latest
steps:
- 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"

- name: checkout-latest-rules
uses: actions/checkout@master
with:
repository: mongodb/mongodb-vale-action
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/
- name: run-vale
uses: errata-ai/vale-action@reviewdog
with:
reporter: github-pr-check
files: ${{steps.files.outputs.added_modified}}
fail_on_error: true
token: ${{secrets.GITHUB_TOKEN}}
2 changes: 1 addition & 1 deletion source/includes/mongodb-compatibility-table-java-rs.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-rs-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-rs-server-release-change-v5.2>` section.

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

Version 5.0 Breaking Changes
Expand Down Expand Up @@ -430,6 +439,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-rs-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-rs-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 @@ -31,7 +31,14 @@ following versions of the {+driver-long+}:
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-rs-compatibility`.

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

.. sharedinclude:: dbx/jvm/v5.2-wn-items.rst

Expand Down

0 comments on commit e8d219f

Please sign in to comment.