File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ Version 5.0 Breaking Changes
77
77
``long`` instead of type ``int``. Because this change breaks both binary and source
78
78
compatibility, update any source code that uses these methods and rebuild your binary.
79
79
80
- - The driver removes the following record annotations:
80
+ - This driver version removes the following record annotations:
81
81
82
82
- ``BsonId``
83
83
- ``BsonProperty``
@@ -95,6 +95,15 @@ Version 5.0 Breaking Changes
95
95
<java-socketsettings-example>` in the Specify MongoClient Settings
96
96
guide.
97
97
98
+ - This driver version removes the ``Filters.eqFull()`` method, which allowed you
99
+ to construct an equality filter when performing a vector search.
100
+ You can use the ``Filters.eq()`` method when instantiating a
101
+ ``VectorSearchOptions`` type, as shown in the following code:
102
+
103
+ .. code-block:: java
104
+
105
+ VectorSearchOptions opts = vectorSearchOptions().filter(eq("x", 8));
106
+
98
107
.. _java-breaking-changes-v4.8:
99
108
100
109
Version 4.8 Breaking Changes
You can’t perform that action at this time.
0 commit comments