Skip to content

Commit 1734dc9

Browse files
release: v9.4.0
1 parent 4c1ccc9 commit 1734dc9

File tree

7 files changed

+31
-11
lines changed

7 files changed

+31
-11
lines changed

CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## [9.4.0](https://github.com/nodkz/mongodb-memory-server/compare/v9.3.0...v9.4.0) (2024-06-24)
2+
3+
4+
### Fixes
5+
6+
* **MongoMemoryReplSet:** dont warn unless storage engine is set explicitly ([582bf0a](https://github.com/nodkz/mongodb-memory-server/commit/582bf0ae88ffa7ca66258a96344ed2ce6d5abd18))
7+
8+
9+
### Refactor
10+
11+
* **utils::removeDir:** remove nodejs 12 workaround ([a852513](https://github.com/nodkz/mongodb-memory-server/commit/a852513b615b17179837af76f94aafabe1ea7ab7))
12+
13+
14+
### Dependencies
15+
16+
* **async-mutex:** upgrade to version 0.4.1 ([b67c783](https://github.com/nodkz/mongodb-memory-server/commit/b67c7830b3bfce6e23c03ce36fd4a6fea5112933))
17+
* **debug:** upgrade to version 4.3.5 ([72a0b76](https://github.com/nodkz/mongodb-memory-server/commit/72a0b7665d9d63ff99a052220b89c00b909502f8))
18+
* **mongodb:** upgrade to version 5.9.2 ([4c1ccc9](https://github.com/nodkz/mongodb-memory-server/commit/4c1ccc9572460f658dce044e5481f9dd43a4556b))
19+
* **tslib:** upgrade to version 2.6.3 ([a49993b](https://github.com/nodkz/mongodb-memory-server/commit/a49993b85bb23ecdf90f10f2e73b0a64b096878d))
20+
121
## [9.4.0-beta.1](https://github.com/nodkz/mongodb-memory-server/compare/v9.3.0...v9.4.0-beta.1) (2024-06-05)
222

323

packages/mongodb-memory-server-core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mongodb-memory-server-core",
3-
"version": "9.4.0-beta.1",
3+
"version": "9.4.0",
44
"description": "MongoDB Server for testing (core package, without autodownload). The server will allow you to connect your favourite ODM or client library to the MongoDB Server and run parallel integration tests isolated from each other.",
55
"main": "lib/index",
66
"types": "lib/index.d.ts",

packages/mongodb-memory-server-global-4.0/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mongodb-memory-server-global-4.0",
3-
"version": "9.4.0-beta.1",
3+
"version": "9.4.0",
44
"mongodb_version": "4.0.28",
55
"description": "MongoDB Server for testing (auto-download 4.0 version to ~/.cache/mongodb-binaries).",
66
"main": "index.js",
@@ -25,7 +25,7 @@
2525
"mongomem"
2626
],
2727
"dependencies": {
28-
"mongodb-memory-server-core": "9.4.0-beta.1",
28+
"mongodb-memory-server-core": "9.4.0",
2929
"tslib": "^2.6.3"
3030
},
3131
"scripts": {

packages/mongodb-memory-server-global-4.2/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mongodb-memory-server-global-4.2",
3-
"version": "9.4.0-beta.1",
3+
"version": "9.4.0",
44
"mongodb_version": "4.2.24",
55
"description": "MongoDB Server for testing (auto-download 4.2 version to ~/.cache/mongodb-binaries).",
66
"main": "index.js",
@@ -25,7 +25,7 @@
2525
"mongomem"
2626
],
2727
"dependencies": {
28-
"mongodb-memory-server-core": "9.4.0-beta.1",
28+
"mongodb-memory-server-core": "9.4.0",
2929
"tslib": "^2.6.3"
3030
},
3131
"scripts": {

packages/mongodb-memory-server-global-4.4/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mongodb-memory-server-global-4.4",
3-
"version": "9.4.0-beta.1",
3+
"version": "9.4.0",
44
"mongodb_version": "4.4.28",
55
"description": "MongoDB Server for testing (auto-download 4.4 version to ~/.cache/mongodb-binaries).",
66
"main": "index.js",
@@ -25,7 +25,7 @@
2525
"mongomem"
2626
],
2727
"dependencies": {
28-
"mongodb-memory-server-core": "9.4.0-beta.1",
28+
"mongodb-memory-server-core": "9.4.0",
2929
"tslib": "^2.6.3"
3030
},
3131
"scripts": {

packages/mongodb-memory-server-global/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mongodb-memory-server-global",
3-
"version": "9.4.0-beta.1",
3+
"version": "9.4.0",
44
"description": "MongoDB Server for testing (auto-download latest version to ~/.cache/mongodb-binaries).",
55
"main": "index.js",
66
"types": "index.d.ts",
@@ -24,7 +24,7 @@
2424
"mongomem"
2525
],
2626
"dependencies": {
27-
"mongodb-memory-server-core": "9.4.0-beta.1",
27+
"mongodb-memory-server-core": "9.4.0",
2828
"tslib": "^2.6.3"
2929
},
3030
"scripts": {

packages/mongodb-memory-server/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mongodb-memory-server",
3-
"version": "9.4.0-beta.1",
3+
"version": "9.4.0",
44
"description": "MongoDB Server for testing (auto-download latest version). The server will allow you to connect your favourite ODM or client library to the MongoDB Server and run parallel integration tests isolated from each other.",
55
"main": "index.js",
66
"types": "index.d.ts",
@@ -24,7 +24,7 @@
2424
"mongomem"
2525
],
2626
"dependencies": {
27-
"mongodb-memory-server-core": "9.4.0-beta.1",
27+
"mongodb-memory-server-core": "9.4.0",
2828
"tslib": "^2.6.3"
2929
},
3030
"scripts": {

0 commit comments

Comments
 (0)