You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
***MongoBinaryDownloadUrl:** refactor fedora handling to pass through to rhel ([31b4696](https://github.com/typegoose/mongodb-memory-server/commit/31b469642a8decf7d818da78ab89e5c0745a0b48)), closes [#893](https://github.com/typegoose/mongodb-memory-server/issues/893)
7
+
8
+
9
+
### Refactor
10
+
11
+
***MongoBinaryDownloadUrl::getFedoraVersionString:** change to use "else if" chain ([194df6f](https://github.com/typegoose/mongodb-memory-server/commit/194df6f7ed5a3f3d9f031a7d0526f71c460a533c))
***MongoBinaryDownloadUrl:** support ubuntu 2404 & 8.0.0 ([1a88c37](https://github.com/typegoose/mongodb-memory-server/commit/1a88c37e7b0a019e152dc493d25256d0b2f3e536))
26
+
***resolveConfig:** update default binary version to 7.0.14 ([946e78e](https://github.com/typegoose/mongodb-memory-server/commit/946e78e761c5b10952a5c35c87fa477fdf83a825))
27
+
28
+
29
+
### Dependencies
30
+
31
+
***debug:** upgrade to version 4.3.7 ([d537118](https://github.com/typegoose/mongodb-memory-server/commit/d5371181390518e2ad87a3312556ffc183c542cc))
32
+
***follow-redirects:** upgrade to version 1.15.9 ([a762dd4](https://github.com/typegoose/mongodb-memory-server/commit/a762dd4dbbf9ea922f2726151ff2d77e02582c6d))
33
+
***mongodb:** upgrade to version 6.9.0 ([3d4f898](https://github.com/typegoose/mongodb-memory-server/commit/3d4f89876cc43eab6c7ed96c97f3b224f2e78e10))
34
+
***tslib:** upgrade to version 2.7.0 ([2b702d1](https://github.com/typegoose/mongodb-memory-server/commit/2b702d120ef626a53f730f7cfe26f03d925c2657))
35
+
36
+
37
+
### Dev-Dependencies
38
+
39
+
***@types/jest:** upgrade to version 29.5.13 ([4395d50](https://github.com/typegoose/mongodb-memory-server/commit/4395d50f3e15845546240c1b9ce433a9493f948b))
40
+
***rimraf:** upgrade to version 5.0.10 ([52420ba](https://github.com/typegoose/mongodb-memory-server/commit/52420ba2f629eb62bf0bfa336867a88584d287fe))
41
+
***test-jest:** upgrade to version 29.2.5 ([8fa6918](https://github.com/typegoose/mongodb-memory-server/commit/8fa69188579bb4de24b4ffdec00451e9016385a1))
***getport:** check new port against cache ([b70d868](https://github.com/typegoose/mongodb-memory-server/commit/b70d868cf5b6766e751ef6fec53e8e4ccccd1de6)), closes [#883](https://github.com/typegoose/mongodb-memory-server/issues/883)
49
+
***getport:** update cache time when last used ([a332b49](https://github.com/typegoose/mongodb-memory-server/commit/a332b491b173d9d3b03578c9f6bcd46fecbaa6d7)), closes [#883](https://github.com/typegoose/mongodb-memory-server/issues/883)
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -86,7 +86,7 @@ On Linux, you will also need `libcurl4` (or `libcurl3` on some older distro vers
86
86
87
87
### Configuring which mongod binary to use
88
88
89
-
The default behavior is that version `7.0.11` for your OS will be downloaded. By setting [Environment variables](https://typegoose.github.io/mongodb-memory-server/docs/api/config-options) you are able to specify which version and binary will be downloaded:
89
+
The default behavior is that version `7.0.14` for your OS will be downloaded. By setting [Environment variables](https://typegoose.github.io/mongodb-memory-server/docs/api/config-options) you are able to specify which version and binary will be downloaded:
@@ -128,7 +128,7 @@ const mongod = new MongoMemoryServer({
128
128
auth?: boolean, // add "--auth" argument, dont use this directly use top-level "auth"
129
129
},
130
130
binary?: {
131
-
version?: string, // by default '7.0.11'
131
+
version?: string, // by default '7.0.14'
132
132
downloadDir?: string, // see the documentation on what is chosen by default https://typegoose.github.io/mongodb-memory-server/docs/api/config-options#download_dir
Copy file name to clipboardExpand all lines: packages/mongodb-memory-server-core/package.json
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "mongodb-memory-server-core",
3
-
"version": "10.0.1-beta.1",
3
+
"version": "10.1.2",
4
4
"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.",
0 commit comments