Skip to content

Commit

Permalink
Merge pull request #12200 from hasezoey/updateCompat
Browse files Browse the repository at this point in the history
docs(compatibility): change to use a table
  • Loading branch information
vkarpov15 committed Aug 3, 2022
2 parents 25e4580 + d459c8f commit 547680d
Showing 1 changed file with 26 additions and 13 deletions.
39 changes: 26 additions & 13 deletions docs/compatibility.md
@@ -1,20 +1,33 @@
# MongoDB Server Version Compatibility

Mongoose relies on the [MongoDB Node.js Driver](http://mongodb.github.io/node-mongodb-native/) to talk to MongoDB.
<style>
tr > td, tr > th {
border: 1px solid;
padding: 8px;
}

table tr:nth-child(2n) {
background: rgba(0,0,0,.03);
}
</style>

Mongoose relies on the [MongoDB Node.js Driver](http://mongodb.github.io/node-mongodb-native/) to talk to MongoDB.
You can refer to [this table](https://docs.mongodb.com/drivers/node/current/compatibility/) for up-to-date information as to which version of the MongoDB driver supports which version of MongoDB.

Below are the [semver](http://semver.org/) ranges representing which versions of mongoose are compatible with the listed versions of MongoDB server.

* MongoDB Server 2.4.x: mongoose `^3.8` or `4.x`
* MongoDB Server 2.6.x: mongoose `^3.8.8` or `4.x`
* MongoDB Server 3.0.x: mongoose `^3.8.22`, `4.x`, or `5.x`
* MongoDB Server 3.2.x: mongoose `^4.3.0` or `5.x`
* MongoDB Server 3.4.x: mongoose `^4.7.3` or `5.x`
* MongoDB Server 3.6.x: mongoose `5.x`
* MongoDB Server 4.0.x: mongoose `^5.2.0` or `6.x`
* MongoDB Server 4.2.x: mongoose `^5.7.0` or `6.x`
* MongoDB Server 4.4.x: mongoose `^5.10.0` or `6.x`
* MongoDB Server 5.x: mongoose `^6.0.0`
* MongoDB Server 6.x: mongoose `^6.5.0`
| MongoDB Sever | 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` |
| `3.4.x` | `^4.7.3 \| ^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` |

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.
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`.

0 comments on commit 547680d

Please sign in to comment.