Skip to content
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

Drop support for MongoDB 4.4 #2617

Merged
merged 1 commit into from
Mar 27, 2024
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: 5 additions & 6 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ jobs:
- "7.0"
- "6.0"
- "5.0"
- "4.4"
driver-version:
- "stable"
topology:
Expand All @@ -38,7 +37,7 @@ jobs:
# Test against lowest dependencies
- dependencies: "lowest"
php-version: "8.1"
mongodb-version: "4.4"
mongodb-version: "5.0"
driver-version: "1.11.0"
topology: "server"
symfony-version: "stable"
Expand All @@ -49,17 +48,17 @@ jobs:
driver-version: "stable"
dependencies: "highest"
symfony-version: "7"
# Test with a 4.4 replica set
# Test with a 5.0 replica set
- topology: "replica_set"
php-version: "8.2"
mongodb-version: "4.4"
mongodb-version: "5.0"
driver-version: "stable"
dependencies: "highest"
symfony-version: "stable"
# Test with a 4.4 sharded cluster
# Test with a 5.0 sharded cluster
- topology: "sharded_cluster"
php-version: "8.2"
mongodb-version: "4.4"
mongodb-version: "5.0"
driver-version: "stable"
dependencies: "highest"
symfony-version: "stable"
Expand Down
3 changes: 1 addition & 2 deletions docs/en/reference/transactions-and-concurrency.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ atomic, the operation as a whole is not and other operations may interleave.
Transaction support
~~~~~~~~~~~~~~~~~~~

MongoDB supports multi-document transactions on replica sets (starting in MongoDB 4.2) and sharded clusters (MongoDB
4.4). Standalone topologies do not support multi-document transactions.
MongoDB supports multi-document transactions on replica sets and sharded clusters. Standalone topologies do not support multi-document transactions.

Transaction Support in Doctrine MongoDB ODM
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
Loading