Skip to content

Commit cebb98b

Browse files
authored
DOCSP-50020 Remove EOL mentions (#133)
* DOCSP-50020 Remove EOL mentions * MM review * remove froom compat table
1 parent 5926e2c commit cebb98b

File tree

5 files changed

+8
-83
lines changed

5 files changed

+8
-83
lines changed

source/aggregation.txt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -197,11 +197,10 @@ plan:
197197
Run an Atlas Full-Text Search
198198
-----------------------------
199199

200-
.. tip:: Only Available on Atlas for MongoDB v4.2 and later
200+
.. tip:: Only Available for Collections with an Atlas Search Index
201201

202-
This aggregation pipeline operator is only available for collections hosted
203-
on :atlas:`MongoDB Atlas </>` clusters running v4.2 or later that are
204-
covered by an :atlas:`Atlas Search index </reference/atlas-search/index-definitions/>`.
202+
This aggregation pipeline operator is only available for collections
203+
with an :atlas:`Atlas Search index </reference/atlas-search/index-definitions/>`.
205204

206205
To specify a full-text search of one or more fields, you can create
207206
a ``$search`` pipeline stage. The {+driver-short+} provides the

source/connect/stable-api.txt

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,6 @@ Stable API
1717
.. meta::
1818
:keywords: compatible, backwards, upgrade
1919

20-
.. note::
21-
22-
The Stable API feature requires {+mdb-server+} 5.0 or later.
23-
2420
Overview
2521
--------
2622

@@ -106,7 +102,7 @@ Unrecognized field 'apiVersion' on server
106102

107103
The {+driver-short+} raises this exception if you specify an API version and connect to a
108104
MongoDB server that doesn't support the {+stable-api+}. Ensure you're connecting to a
109-
deployment running {+mdb-server+} v5.0 or later.
105+
deployment running {+mdb-server+} v6.0 or later.
110106

111107
Provided apiStrict:true, but the command count is not in API Version
112108
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

source/databases-collections/time-series.txt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,6 @@ series data:
5151
Create a Time Series Collection
5252
-------------------------------
5353

54-
.. important:: Server Version for Time Series Collections
55-
56-
To create and interact with time series collections, you must be
57-
connected to a deployment running {+mdb-server+} 5.0 or later.
58-
5954
You can create a time series collection to store time series data.
6055
To create a time series collection, pass the following parameters to the
6156
``createCollection()`` method:

source/includes/mongodb-compatibility-table-scala.rst

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -8,63 +8,33 @@
88
- MongoDB 7.0
99
- MongoDB 6.1
1010
- MongoDB 6.0
11-
- MongoDB 5.0
12-
- MongoDB 4.4
13-
- MongoDB 4.2
14-
- MongoDB 4.0
15-
- MongoDB 3.6
1611

1712
* - 5.5
1813
- ✓
1914
- ✓
2015
- ✓
2116
- ✓
22-
- ✓
23-
- ✓
24-
- ✓
25-
-
26-
-
2717

2818
* - 5.2 to 5.4
2919
- ✓
3020
- ✓
3121
- ✓
3222
- ✓
33-
- ✓
34-
- ✓
35-
- ✓
36-
- ✓
37-
-
3823

3924
* - 4.10 to 5.1
4025
- ⊛
4126
- ✓
4227
- ✓
4328
- ✓
44-
- ✓
45-
- ✓
46-
- ✓
47-
- ✓
48-
- ✓
4929

5030
* - 4.8 to 4.9
5131
- ⊛
5232
- ⊛
5333
- ✓
5434
- ✓
55-
- ✓
56-
- ✓
57-
- ✓
58-
- ✓
59-
- ✓
6035

6136
* - 4.7
6237
- ⊛
6338
- ⊛
6439
- ⊛
6540
- ✓
66-
- ✓
67-
- ✓
68-
- ✓
69-
- ✓
70-
- ✓

source/security/auth.txt

Lines changed: 4 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,8 @@ mechanisms.
3131
Default Authentication Mechanism
3232
--------------------------------
3333

34-
In MongoDB 3.0, MongoDB changed the default authentication mechanism
35-
from ``MONGODB-CR`` to ``SCRAM-SHA-1``. In MongoDB 4.0, support for
36-
the deprecated ``MONGODB-CR`` mechanism was removed and ``SCRAM-SHA-256`` support was
37-
added.
34+
The default authentication mechanism for MongoDB 6.0 and later is
35+
``SCRAM-SHA-256``.
3836

3937
To create a credential that authenticates by using the default
4038
authentication mechanism, regardless of server version, create a
@@ -57,12 +55,6 @@ authentication mechanism:
5755
:copyable:
5856
:dedent:
5957

60-
For challenge and response mechanisms, we recommend using the default
61-
authentication mechanism. This approach simplifies upgrading from MongoDB 2.6 to MongoDB
62-
3.0, even after upgrading the authentication schema. For MongoDB 4.0 users, we also recommend
63-
the default authentication mechanism because it checks the mechanisms and uses the correct
64-
hashing algorithm.
65-
6658
SCRAM-Based Mechanisms
6759
----------------------
6860

@@ -73,15 +65,11 @@ based on the `IETF RFC 5802
7365
best practices for implementation of challenge-response mechanisms for authenticating
7466
users with passwords.
7567

76-
MongoDB 3.0 introduced support for ``SCRAM-SHA-1``, which uses the
77-
``SHA-1`` hashing function. MongoDB 4.0 introduced support for ``SCRAM-SHA-256`` which
78-
uses the ``SHA-256`` hashing function.
79-
8068
SCRAM-SHA-256
8169
~~~~~~~~~~~~~
8270

83-
Using this mechanism requires MongoDB 4.0 and
84-
``featureCompatibilityVersion`` to be set to 4.0.
71+
Using this mechanism requires ``featureCompatibilityVersion`` to be set to 4.0
72+
or a later version.
8573

8674
To explicitly create a credential of type ``SCRAM-SHA-256``, use
8775
the ``createScramSha256Credential()`` method:
@@ -103,29 +91,6 @@ Or, you can use a connection string that explicitly specifies
10391
:copyable:
10492
:dedent:
10593

106-
SCRAM-SHA-1
107-
~~~~~~~~~~~
108-
109-
To explicitly create a credential of type ``SCRAM-SHA-1``, use the
110-
``createScramSha1Credential()`` method:
111-
112-
.. literalinclude:: /includes/security/auth.scala
113-
:start-after: start-scram-sha-1
114-
:end-before: end-scram-sha-1
115-
:language: scala
116-
:copyable:
117-
:dedent:
118-
119-
Or, you can use a connection string that explicitly specifies
120-
``authMechanism=SCRAM-SHA-1``:
121-
122-
.. literalinclude:: /includes/security/auth.scala
123-
:start-after: start-scram-sha-1-connection-string
124-
:end-before: end-scram-sha-1-connection-string
125-
:language: scala
126-
:copyable:
127-
:dedent:
128-
12994
x.509
13095
-----
13196

0 commit comments

Comments
 (0)