Skip to content

Commit b041a52

Browse files
committed
Drop support for MongoDB 4.4
MongoDB 4.4 reached its EOL in February so let's make the CI lighter for upcoming version
1 parent 2a94296 commit b041a52

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

.github/workflows/continuous-integration.yml

+5-6
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ jobs:
2525
- "7.0"
2626
- "6.0"
2727
- "5.0"
28-
- "4.4"
2928
driver-version:
3029
- "stable"
3130
topology:
@@ -38,7 +37,7 @@ jobs:
3837
# Test against lowest dependencies
3938
- dependencies: "lowest"
4039
php-version: "8.1"
41-
mongodb-version: "4.4"
40+
mongodb-version: "5.0"
4241
driver-version: "1.11.0"
4342
topology: "server"
4443
symfony-version: "stable"
@@ -49,17 +48,17 @@ jobs:
4948
driver-version: "stable"
5049
dependencies: "highest"
5150
symfony-version: "7"
52-
# Test with a 4.4 replica set
51+
# Test with a 5.0 replica set
5352
- topology: "replica_set"
5453
php-version: "8.2"
55-
mongodb-version: "4.4"
54+
mongodb-version: "5.0"
5655
driver-version: "stable"
5756
dependencies: "highest"
5857
symfony-version: "stable"
59-
# Test with a 4.4 sharded cluster
58+
# Test with a 5.0 sharded cluster
6059
- topology: "sharded_cluster"
6160
php-version: "8.2"
62-
mongodb-version: "4.4"
61+
mongodb-version: "5.0"
6362
driver-version: "stable"
6463
dependencies: "highest"
6564
symfony-version: "stable"

docs/en/reference/transactions-and-concurrency.rst

+1-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ atomic, the operation as a whole is not and other operations may interleave.
1515
Transaction support
1616
~~~~~~~~~~~~~~~~~~~
1717

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

2120
Transaction Support in Doctrine MongoDB ODM
2221
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

0 commit comments

Comments
 (0)