Socket
Socket
Sign inDemoInstall

connect-mongo

Package Overview
Dependencies
17
Maintainers
2
Versions
67
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.3.0 to 1.3.1

5

CHANGELOG.md

@@ -0,1 +1,6 @@

1.3.1 / 2016-07-23
=================
* Restrict `bluebird` accepted versions to 3.x
1.3.0 / 2016-07-23

@@ -2,0 +7,0 @@ =================

4

package.json
{
"name": "connect-mongo",
"version": "1.3.0",
"version": "1.3.1",
"description": "MongoDB session store for Express and Connect",

@@ -25,3 +25,3 @@ "keywords": [

"dependencies": {
"bluebird": ">= 2.0",
"bluebird": "^3.0",
"mongodb": ">= 1.2.0 <3.0.0"

@@ -28,0 +28,0 @@ },

@@ -189,3 +189,3 @@ 'use strict';

['count', 'findOne', 'remove', 'drop', 'update', 'ensureIndex'].forEach(function (method) {
collection[method + 'Async'] = Promise.promisify(collection[method], collection);
collection[method + 'Async'] = Promise.promisify(collection[method], { context: collection });
});

@@ -192,0 +192,0 @@

@@ -155,3 +155,3 @@ 'use strict';

['count', 'findOne', 'remove', 'drop', 'update', 'ensureIndex'].forEach(method => {
collection[method + 'Async'] = Promise.promisify(collection[method], collection);
collection[method + 'Async'] = Promise.promisify(collection[method], { context: collection });
});

@@ -158,0 +158,0 @@

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc