mongodb-memory-server-core
Advanced tools
Comparing version 6.5.1 to 6.5.2
@@ -6,2 +6,13 @@ # Change Log | ||
## [6.5.2](https://github.com/nodkz/mongodb-memory-server/compare/v6.5.1...v6.5.2) (2020-04-05) | ||
### Bug Fixes | ||
* insensitive the regexp when a primary is elected ([#294](https://github.com/nodkz/mongodb-memory-server/issues/294)) ([746ccb1](https://github.com/nodkz/mongodb-memory-server/commit/746ccb1)), closes [#292](https://github.com/nodkz/mongodb-memory-server/issues/292) | ||
## [6.5.1](https://github.com/nodkz/mongodb-memory-server/compare/v6.5.0...v6.5.1) (2020-04-02) | ||
@@ -8,0 +19,0 @@ |
@@ -324,3 +324,3 @@ "use strict"; | ||
} | ||
else if (/transition to primary complete; database writes are now permitted/.test(line)) { | ||
else if (/transition to primary complete; database writes are now permitted/i.test(line)) { | ||
this.isInstancePrimary = true; | ||
@@ -327,0 +327,0 @@ this.debug('Calling all waitForPrimary resolve functions'); |
{ | ||
"name": "mongodb-memory-server-core", | ||
"version": "6.5.1", | ||
"version": "6.5.2", | ||
"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.", | ||
@@ -93,3 +93,3 @@ "main": "lib/index", | ||
}, | ||
"gitHead": "c1757140c5f3d6911f4a673607173b124cf284fb" | ||
"gitHead": "7c0d3defc37122f1c5b58481aaedd859996045b9" | ||
} |
Sorry, the diff of this file is not supported yet
353883