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
***MongoBinary::getPath:** check that "stdout" actually exists ([613e670](https://github.com/typegoose/mongodb-memory-server/commit/613e6704db78c423afbafc3b88301f6f4ea34d8d)), closes [#742](https://github.com/typegoose/mongodb-memory-server/issues/742)[#issuecomment-2528284865](https://github.com/typegoose/mongodb-memory-server/issues/issuecomment-2528284865)
8
+
***MongoBinary:** dont execute systembinary "--version" cmd if version check is false ([03c8412](https://github.com/typegoose/mongodb-memory-server/commit/03c84129a9a58c9d7325d127eea6fb18b18de461))
Copy file name to clipboardExpand all lines: packages/mongodb-memory-server-core/package.json
+1-1
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.1.2",
3
+
"version": "10.1.3-beta.1",
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.",
Copy file name to clipboardExpand all lines: packages/mongodb-memory-server-core/src/util/MongoBinary.ts
+12-11
Original file line number
Diff line number
Diff line change
@@ -87,19 +87,20 @@ export class MongoBinary {
87
87
if(!!options.systemBinary){
88
88
// this case should actually never be false, because if "SYSTEM_BINARY" is set, "locateBinary" will run "getSystemPath" which tests the path for permissions
89
89
if(!isNullOrUndefined(binaryPath)){
90
-
log(`getPath: Spawning binaryPath "${binaryPath}" to get version`);
Copy file name to clipboardExpand all lines: packages/mongodb-memory-server/package.json
+2-2
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "mongodb-memory-server",
3
-
"version": "10.1.2",
3
+
"version": "10.1.3-beta.1",
4
4
"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.",
0 commit comments