2.0.0 (2018-08-17)
BREAKING CHANGES
Most users will not have problems with migration to a new version if:
- you use
Node >= 6.0.0
(if not upgrade node version or use mongodb-memory-server@1.9.3) - your tests work with
latest
version of MongoDB (before was hardcoded default version3.4.4
). Anyway you may set explicitly any MongoDB version via configuration options:
const mongod = new MongodbMemoryServer({
binary: {
version: '3.4.4',
},
});