mongodb-core
Advanced tools
Comparing version 1.1.22 to 1.1.23
@@ -0,1 +1,10 @@ | ||
1.1.23 04-15-2015 | ||
----------------- | ||
- Standardizing mongoErrors and its API (Issue #14) | ||
- Creating a new connection is slow because of 100ms setTimeout() (Issue #17, https://github.com/vkarpov15) | ||
- remove mkdirp and rimraf dependencies (Issue #12) | ||
- Updated default value of param options.rejectUnauthorized to match documentation (Issue #16) | ||
- ISSUE: NODE-417 Resolution. Improving behavior of thrown errors (Issue #14, https://github.com/owenallenaz) | ||
- Fix cursor hanging when next() called on exhausted cursor (Issue #18, https://github.com/vkarpov15) | ||
1.1.22 04-10-2015 | ||
@@ -2,0 +11,0 @@ ----------------- |
@@ -162,3 +162,3 @@ "use strict"; | ||
for(var i = 0; i < this.size; i++) { | ||
setTimeout(function() { | ||
setImmediate(function() { | ||
self.options.messageHandler = self.messageHandler; | ||
@@ -176,3 +176,3 @@ var connection = new Connection(self.options); | ||
connection.connect(_options); | ||
}, 100); | ||
}); | ||
} | ||
@@ -179,0 +179,0 @@ } |
@@ -439,4 +439,5 @@ "use strict"; | ||
// We have notified about it | ||
if(self.cursorState.notified) return; | ||
if(self.cursorState.notified) { | ||
return callback(new Error('cursor is exhausted')); | ||
} | ||
// Cursor is killed return null | ||
@@ -443,0 +444,0 @@ if(isCursorKilled(self, callback)) return; |
{ | ||
"name": "mongodb-core", | ||
"version": "1.1.22", | ||
"version": "1.1.23", | ||
"description": "Core MongoDB driver functionality, no bells and whistles and meant for integration not end applications", | ||
@@ -18,5 +18,3 @@ "main": "index.js", | ||
"dependencies": { | ||
"bson": "~0.3", | ||
"mkdirp": "0.5.0", | ||
"rimraf": "2.2.6" | ||
"bson": "~0.3" | ||
}, | ||
@@ -29,3 +27,5 @@ "devDependencies": { | ||
"gleak": "0.5.0", | ||
"mongodb-tools": "~1.0" | ||
"mongodb-tools": "~1.0", | ||
"mkdirp": "0.5.0", | ||
"rimraf": "2.2.6" | ||
}, | ||
@@ -32,0 +32,0 @@ "optionalDependencies": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
310652
2
7661
8
- Removedmkdirp@0.5.0
- Removedrimraf@2.2.6
- Removedminimist@0.0.8(transitive)
- Removedmkdirp@0.5.0(transitive)
- Removedrimraf@2.2.6(transitive)