Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

mongodb-core

Package Overview
Dependencies
Maintainers
1
Versions
177
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mongodb-core - npm Package Compare versions

Comparing version 1.1.22 to 1.1.23

9

HISTORY.md

@@ -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 @@ -----------------

4

lib/connection/pool.js

@@ -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": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc