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

sessionstore

Package Overview
Dependencies
Maintainers
2
Versions
58
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sessionstore - npm Package Compare versions

Comparing version 1.2.5 to 1.2.6

5

lib/databases/mongodb.js

@@ -104,3 +104,6 @@ 'use strict';

if (options.username) {
if (options.authSource && options.username) {
// Authenticate with authSource
client.authenticate(options.username, options.password, {authSource: options.authSource}, finish);
} else if (options.username) {
client.authenticate(options.username, options.password, finish);

@@ -107,0 +110,0 @@ } else {

6

package.json
{
"author": "adrai",
"name": "sessionstore",
"version": "1.2.5",
"version": "1.2.6",
"private": false,

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

"dependencies": {
"async": "1.4.0",
"async": "1.4.2",
"jsondate": "0.0.1",
"lodash": "3.10.0",
"lodash": "3.10.1",
"parent-require": "1.0.0",

@@ -19,0 +19,0 @@ "tolerance": "1.0.0"

@@ -39,2 +39,5 @@ # Introduction

timeout: 10000 // optional
// authSource: 'authedicationDatabase', // optional
// username: 'technicalDbUser', // optional
// password: 'secret' // optional
})

@@ -41,0 +44,0 @@ }));

@@ -0,1 +1,4 @@

#### v1.2.6
- mongodb: give possibility to use authSource
#### v1.2.5

@@ -2,0 +5,0 @@ - redis: implemented touch

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