Skip to content

DOCSP-35304: remove eqFull method #498

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 4 commits into from
Jan 12, 2024
Merged
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
11 changes: 10 additions & 1 deletion source/upgrade.txt
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Version 5.0 Breaking Changes
``long`` instead of type ``int``. Because this change breaks both binary and source
compatibility, update any source code that uses these methods and rebuild your binary.

- The driver removes the following record annotations:
- This driver version removes the following record annotations:

- ``BsonId``
- ``BsonProperty``
Expand All @@ -95,6 +95,15 @@ Version 5.0 Breaking Changes
<java-socketsettings-example>` in the Specify MongoClient Settings
guide.

- This driver version removes the ``Filters.eqFull()`` method, which allowed you
to construct an equality filter when performing a vector search.
You can use the ``Filters.eq()`` method when instantiating a
``VectorSearchOptions`` type, as shown in the following code:

.. code-block:: java

VectorSearchOptions opts = vectorSearchOptions().filter(eq("x", 8));

.. _java-breaking-changes-v4.8:

Version 4.8 Breaking Changes
Expand Down