Skip to content

DOCSP-41360: v5.1.2 patch release #560

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
Jul 11, 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
2 changes: 1 addition & 1 deletion snooty.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ driver = "java"
driver-long = "MongoDB Java Driver"
driver-short = "Java driver"
version = "5.1"
full-version = "{+version+}.1"
full-version = "{+version+}.2"
mdb-server = "MongoDB Server"
package-name-org = "mongodb-org"
api = "https://mongodb.github.io/mongo-java-driver/{+version+}"
Expand Down
38 changes: 31 additions & 7 deletions source/whats-new.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ What's New

Learn what's new in:

* :ref:`Version 5.2 <version-5.2>`
* :ref:`Version 5.2 <java-version-5.2>`
* :ref:`Version 5.1.2 <java-version-5.1.2>`
* :ref:`Version 5.1.1 <java-version-5.1.1>`
* :ref:`Version 5.1 <version-5.1>`
* :ref:`Version 5.0 <version-5.0>`
Expand All @@ -38,7 +39,7 @@ Learn what's new in:
* :ref:`Version 4.1 <version-4.1>`
* :ref:`Version 4.0 <version-4.0>`

.. _version-5.2:
.. _java-version-5.2:

What's New in 5.2
-----------------
Expand All @@ -56,13 +57,28 @@ New features of the 5.2 driver release include:

// Connection URI without delimiting forward-slash
String uri = "mongodb://example.com?w=majority";


.. _java-version-5.1.2:

What's New in 5.1.2
-------------------

The 5.1.2 driver patch release includes the following changes:

- Fixes an issue that prevents the driver from encoding and
decoding concrete classes that extend generic base classes, in cases that you
specify the base class as the generic type of the ``MongoCollection`` instance.

- Fixes an issue related to how domain names are validated when you use
SOCKS5 proxy functionality, allowing you to use domain names with more than
six characters in the top-level domain.

.. _java-version-5.1.1:

What's New in 5.1.1
-------------------

The 5.1.1 driver patch includes the following changes:
The 5.1.1 driver patch release includes the following changes:

- When using the ``MONGODB-OIDC`` authentication mechanism, you must not
include comma characters in the ``authMechanismProperties`` connection
Expand Down Expand Up @@ -198,6 +214,12 @@ The 5.0 driver release introduces the following features:
:manual:`listCollections </reference/command/listCollections/>` Server manual
page or :ref:`java-collection-names`.

.. note::

The v5.0.2 patch release fixed an issue related to how domain names are validated when you use
SOCKS5 proxy functionality, allowing you to use domain names with more than
six characters in the top-level domain.

.. _version-4.11:

What's New in 4.11
Expand Down Expand Up @@ -321,9 +343,11 @@ New features of the 4.11 driver release include:
- Support for connecting to MongoDB by using a SOCKS5 proxy. To learn more
see :ref:`java-connect-socks`.

- Fixed an issue related to how domain names are validated when you use proxy
functionality, allowing you to use domain names with more than
six characters in the top-level domain.
.. note::

The v4.11.3 patch release fixed an issue related to how domain names are validated when you use
SOCKS5 proxy functionality, allowing you to use domain names with more than
six characters in the top-level domain.

- Added the ``getSplitEvent()`` method to the ``ChangeStreamDocument`` class
to identify fragments of a change stream event that exceeds 16MB. You must
Expand Down
Loading