Skip to content

DOCSP-50018: Remove EOL server version mentions #697

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 2 commits into from
May 22, 2025
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
11 changes: 0 additions & 11 deletions source/crud/query-documents/sort.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
Sort Results
============



.. contents:: On this page
:local:
:backlinks: none
Expand Down Expand Up @@ -373,15 +371,6 @@ The output of the preceding code resembles the following:
{"_id": 2, "letter": "a", "food": "donuts and coffee", "score": 0.75}
{"_id": 3, "letter": "a", "food": "maple syrup", "score": 0.75}

.. note:: Text Search Behavior in MongoDB 4.4 or Later

The structure of text search has changed for MongoDB 4.4 or later. You no
longer project ``Projections.metaTextScore()`` into your
``FindIterable`` instance in order to sort on the text score. In addition,
the field name you specify in a ``$meta`` text score aggregation operation
used in a sort is ignored. This means that the field name argument you pass
to ``Sorts.metaTextScore()`` is disregarded.

For more information about the classes in this section, see the
following API Documentation:

Expand Down
55 changes: 0 additions & 55 deletions source/includes/mongodb-compatibility-table-java.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,130 +9,75 @@
- MongoDB 7.0
- MongoDB 6.1
- MongoDB 6.0
- MongoDB 5.0
- MongoDB 4.4
- MongoDB 4.2
- MongoDB 4.0
- MongoDB 3.6

* - 5.5
- ✓
- ✓
- ✓
- ✓
- ✓
- ✓
- ✓
- ✓
-
-

* - 5.2 to 5.4
- ✓
- ✓
- ✓
- ✓
- ✓
- ✓
- ✓
- ✓
- ✓
-

* - 4.10 to 5.1
- ⊛
- ⊛
- ✓
- ✓
- ✓
- ✓
- ✓
- ✓
- ✓
- ✓

* - 4.8 to 4.9
- ⊛
- ⊛
- ⊛
- ✓
- ✓
- ✓
- ✓
- ✓
- ✓
- ✓

* - 4.7
- ⊛
- ⊛
- ⊛
- ⊛
- ✓
- ✓
- ✓
- ✓
- ✓
- ✓

* - 4.3 to 4.6
- ⊛
- ⊛
- ⊛
- ⊛
- ⊛
- ✓
- ✓
- ✓
- ✓
- ✓

* - 4.1 to 4.2
- ⊛
- ⊛
- ⊛
- ⊛
- ⊛
- ⊛
- ✓
- ✓
- ✓
- ✓

* - 4.0
- ⊛
- ⊛
- ⊛
- ⊛
- ⊛
- ⊛
- ⊛
- ✓
- ✓
- ✓

* - 3.11 to 3.12
- ✗ [#v3-note]_
- ⊛
- ⊛
- ⊛
- ⊛
- ⊛
- ⊛
- ✓
- ✓
- ✓

* - 3.8 to 3.10
- ✗ [#v3-note]_
- ⊛
- ⊛
- ⊛
- ⊛
- ⊛
- ⊛
- ⊛
- ✓
- ✓

.. [#v3-note] These driver versions are not compatible with MongoDB 8.1 or later because of an authentication issue. To learn more, see :ref:`java-server-8.1-incompatibility`.
6 changes: 3 additions & 3 deletions source/indexes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ that you track index memory and disk usage for capacity planning. In addition,
when a write operation updates an indexed field, MongoDB updates the related
index.

Since MongoDB supports dynamic schemas, applications can query against fields whose names cannot be known in advance or
are arbitrary. MongoDB 4.2 introduced :manual:`wildcard indexes </core/index-wildcard/>` to help support these queries.
Wildcard indexes are not designed to replace workload-based index planning.
Since MongoDB supports dynamic schemas, applications can query against fields whose names you don't know in advance or
are arbitrary. :manual:`Wildcard indexes </core/index-wildcard/>` help support these queries, but
are not designed to replace workload-based index planning.

For more information about designing your data model and choosing indexes appropriate for your application, see the {+mdb-server+}
:manual:`Data Modeling and Indexes </core/data-model-operations/#indexes>`.
Expand Down
Loading