diff --git a/docs/compatibility.txt b/docs/compatibility.txt index 5197deab7..55971c9dd 100644 --- a/docs/compatibility.txt +++ b/docs/compatibility.txt @@ -15,7 +15,7 @@ Compatibility :class: singlecol .. meta:: - :keywords: laravel 9, laravel 10, laravel 11, laravel 12, 4.0, 4.1, 4.2, 5.0, 5.1, 5.2, 5.3 + :keywords: laravel 9, laravel 10, laravel 11, laravel 12, 4.0, 4.1, 4.2, 5.0, 5.1, 5.2, 5.3, 5.4 Laravel Compatibility --------------------- diff --git a/docs/includes/framework-compatibility-laravel.rst b/docs/includes/framework-compatibility-laravel.rst index e8d59469d..4b0055692 100644 --- a/docs/includes/framework-compatibility-laravel.rst +++ b/docs/includes/framework-compatibility-laravel.rst @@ -8,7 +8,7 @@ - Laravel 10.x - Laravel 9.x - * - 5.2 to 5.3 + * - 5.2 to 5.4 - ✓ - ✓ - ✓ diff --git a/docs/transactions.txt b/docs/transactions.txt index b4a7827ba..e2aa894eb 100644 --- a/docs/transactions.txt +++ b/docs/transactions.txt @@ -60,21 +60,8 @@ This guide contains the following sections: Requirements and Limitations ---------------------------- -To perform transactions in MongoDB, you must use the following MongoDB -version and topology: - -- MongoDB version 4.0 or later -- A replica set deployment or sharded cluster - MongoDB Server and the {+odm-short+} have the following limitations: -- In MongoDB versions 4.2 and earlier, write operations performed within a - transaction must be on existing collections. In MongoDB versions 4.4 and - later, the server automatically creates collections as necessary when - you perform write operations in a transaction. To learn more about this - limitation, see :manual:`Create Collections and Indexes in a Transaction ` - in the {+server-docs-name+}. - - MongoDB does not support nested transactions. If you attempt to start a transaction within another one, the extension raises a ``RuntimeException``. To learn more about this limitation, see :manual:`Transactions and Sessions `