From 5ee9c613afb3d552236aab480c9aeace6ba7ae55 Mon Sep 17 00:00:00 2001 From: Luca Pizzini Date: Wed, 1 Mar 2023 09:17:16 +0100 Subject: [PATCH 1/2] docs(compatibility): added mongoDB server compatibility for mongoose 7 closes #13098 --- docs/compatibility.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/compatibility.md b/docs/compatibility.md index 01f6ebb3926..ce5bae6f8b4 100644 --- a/docs/compatibility.md +++ b/docs/compatibility.md @@ -18,14 +18,14 @@ Below are the [semver](http://semver.org/) ranges representing which versions of | MongoDB Server | Mongoose | | :------------: | :---------------------------: | -| `6.x` | `^6.5.0` | -| `5.x` | `^6.0.0` | -| `4.4.x` | `^5.10.0 \| ^6.0.0` | -| `4.2.x` | `^5.7.0 \| ^6.0.0` | -| `4.0.x` | `^5.2.0 \| ^6.0.0` | -| `3.6.x` | `^5.0.0` | +| `6.x` | `^6.5.0 \| ^7.0.0` | +| `5.x` | `^6.0.0 \| ^7.0.0` | +| `4.4.x` | `^5.10.0 \| ^6.0.0 \| ^7.0.0` | +| `4.2.x` | `^5.7.0 \| ^6.0.0 \| ^7.0.0` | +| `4.0.x` | `^5.2.0 \| ^6.0.0 \| ^7.0.0` | +| `3.6.x` | `^5.0.0 \| ^7.0.0` | | `3.4.x` | `^4.7.3 \| ^5.0.0` | -| `3.2.x` | `^4.3.0 \| 5.0.0` | +| `3.2.x` | `^4.3.0 \| 5.0.0` | | `3.0.x` | `^3.8.22 \| ^4.0.0 \| ^5.0.0` | | `2.6.x` | `^3.8.8 \| ^4.0.0` | | `2.4.x` | `^3.8.0 \| ^4.0.0` | From 364bfd226e86bfb0f0382667b18ac1512e2bd18f Mon Sep 17 00:00:00 2001 From: Valeri Karpov Date: Wed, 1 Mar 2023 10:09:49 -0500 Subject: [PATCH 2/2] Update compatibility.md --- docs/compatibility.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/compatibility.md b/docs/compatibility.md index ce5bae6f8b4..f4ad3f8bc71 100644 --- a/docs/compatibility.md +++ b/docs/compatibility.md @@ -23,11 +23,11 @@ Below are the [semver](http://semver.org/) ranges representing which versions of | `4.4.x` | `^5.10.0 \| ^6.0.0 \| ^7.0.0` | | `4.2.x` | `^5.7.0 \| ^6.0.0 \| ^7.0.0` | | `4.0.x` | `^5.2.0 \| ^6.0.0 \| ^7.0.0` | -| `3.6.x` | `^5.0.0 \| ^7.0.0` | +| `3.6.x` | `^5.0.0 \| ^6.0.0 \| ^7.0.0` | | `3.4.x` | `^4.7.3 \| ^5.0.0` | -| `3.2.x` | `^4.3.0 \| 5.0.0` | +| `3.2.x` | `^4.3.0 \| ^5.0.0` | | `3.0.x` | `^3.8.22 \| ^4.0.0 \| ^5.0.0` | -| `2.6.x` | `^3.8.8 \| ^4.0.0` | +| `2.6.x` | `^3.8.8 \| ^4.0.0 \| ^5.0.0` | | `2.4.x` | `^3.8.0 \| ^4.0.0` | Note that Mongoose `5.x` dropped support for all versions of MongoDB before `3.0.0`. If you need to use MongoDB `2.6` or older, use Mongoose `4.x`.