Socket
Socket
Sign inDemoInstall

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.2.27 to 1.2.28

4

HISTORY.md

@@ -0,1 +1,5 @@

1.2.28 12-13-2015
-----------------
- Backed out Prevent Maximum call stack exceeded by calling all callbacks on nextTick, (Issue #64, https://github.com/iamruinous) as it breaks node 0.10.x support.
1.2.27 12-13-2015

@@ -2,0 +6,0 @@ -----------------

13

lib/cursor.js

@@ -243,12 +243,11 @@ "use strict";

var handleCallback = function(callback, err, result) {
process.nextTick(function() {
try {
callback(err, result);
} catch(err) {
try {
callback(err, result);
} catch(err) {
process.nextTick(function() {
throw err;
}
});
});
}
}
// Internal methods

@@ -255,0 +254,0 @@ Cursor.prototype._find = function(callback) {

{
"name": "mongodb-core",
"version": "1.2.27",
"version": "1.2.28",
"description": "Core MongoDB driver functionality, no bells and whistles and meant for integration not end applications",

@@ -5,0 +5,0 @@ "main": "index.js",

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