From 18f708ccd6098455ac99ac7c471fda4a8d6c81b1 Mon Sep 17 00:00:00 2001 From: Lindsey Moore Date: Fri, 4 Oct 2024 15:48:48 -0400 Subject: [PATCH 1/3] DOCSP-43617 Remove unsupported versions --- source/includes/mongodb-compatibility-table-php.rst | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/source/includes/mongodb-compatibility-table-php.rst b/source/includes/mongodb-compatibility-table-php.rst index febec5a4..f35c7e8d 100644 --- a/source/includes/mongodb-compatibility-table-php.rst +++ b/source/includes/mongodb-compatibility-table-php.rst @@ -12,7 +12,6 @@ - MongoDB 4.2 - MongoDB 4.0 - MongoDB 3.6 - - MongoDB 3.4 * - ext + lib 1.20 - ✓ @@ -23,7 +22,6 @@ - ✓ - ✓ - - - * - ext + lib 1.16 to 1.19 - ⊛ @@ -34,7 +32,6 @@ - ✓ - ✓ - ✓ - - * - ext + lib 1.15 - ⊛ @@ -44,5 +41,4 @@ - ✓ - ✓ - ✓ - - ✓ - - \ No newline at end of file + - ✓ \ No newline at end of file From a8f8abc4a6679a1eb2b9334c15635c885acbba55 Mon Sep 17 00:00:00 2001 From: Lindsey Moore Date: Wed, 9 Oct 2024 14:41:38 -0500 Subject: [PATCH 2/3] remove few more refs from tehc review --- source/data-formats/decimal128.txt | 9 ++++----- .../method/MongoDBDatabase-createCollection.txt | 8 +------- source/tutorial/collation.txt | 3 +-- 3 files changed, 6 insertions(+), 14 deletions(-) diff --git a/source/data-formats/decimal128.txt b/source/data-formats/decimal128.txt index 523b6ac8..a706776e 100644 --- a/source/data-formats/decimal128.txt +++ b/source/data-formats/decimal128.txt @@ -15,11 +15,10 @@ Decimal128 Overview -------- -MongoDB 3.4 introduced support for a Decimal128 BSON type, -which is a 128-bit decimal-based -floating-point value capable of emulating decimal rounding with exact precision. -This functionality is intended for applications that handle :manual:`monetary -data `, such as financial and tax computations. +Decimal128 BSON type is a 128-bit decimal-based floating-point value capable +of emulating decimal rounding with exact precision. This functionality is +intended for applications that handle :manual:`monetary data `, +such as financial and tax computations. The :php:`MongoDB\BSON\Decimal128 ` class may be used to work with this type in PHP. diff --git a/source/reference/method/MongoDBDatabase-createCollection.txt b/source/reference/method/MongoDBDatabase-createCollection.txt index 23c4e51f..4becce8e 100644 --- a/source/reference/method/MongoDBDatabase-createCollection.txt +++ b/source/reference/method/MongoDBDatabase-createCollection.txt @@ -69,8 +69,7 @@ Parameters For replica sets, do not set ``autoIndexId`` to ``false``. .. deprecated:: 1.4 - This option has been deprecated since MongoDB 3.2. As of MongoDB - 4.0, this option cannot be ``false`` when creating a replicated + As of MongoDB 4.0, this option cannot be ``false`` when creating a replicated collection (i.e. a collection outside of the ``local`` database in any mongod mode). @@ -148,11 +147,6 @@ Parameters Defaults to ``1``. - MongoDB 3.0 and later ignores the ``usePowerOf2Sizes`` flag. See - :manual:`collMod ` and - :manual:`db.createCollection() - ` for more information. - * - indexOptionDefaults - array|object - Allows users to specify a default configuration for indexes when diff --git a/source/tutorial/collation.txt b/source/tutorial/collation.txt index ce6a06fd..97b7483c 100644 --- a/source/tutorial/collation.txt +++ b/source/tutorial/collation.txt @@ -17,8 +17,7 @@ Collation Overview -------- -MongoDB 3.4 introduced support for :manual:`collations -`, which provide a set of rules to comply with the +:manual:`Collations ` provide a set of rules to comply with the conventions of a particular language when comparing strings. For example, in Canadian French, the last accent in a given word determines the From 917a5fda292d4d5abb9409c1bc4d11943f77a165 Mon Sep 17 00:00:00 2001 From: Lindsey Moore Date: Fri, 11 Oct 2024 12:49:50 -0500 Subject: [PATCH 3/3] typo --- source/data-formats/decimal128.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/data-formats/decimal128.txt b/source/data-formats/decimal128.txt index a706776e..916141b3 100644 --- a/source/data-formats/decimal128.txt +++ b/source/data-formats/decimal128.txt @@ -15,7 +15,7 @@ Decimal128 Overview -------- -Decimal128 BSON type is a 128-bit decimal-based floating-point value capable +The Decimal128 BSON type is a 128-bit decimal-based floating-point value capable of emulating decimal rounding with exact precision. This functionality is intended for applications that handle :manual:`monetary data `, such as financial and tax computations.