Socket
Socket
Sign inDemoInstall

passport-local-sequelize

Package Overview
Dependencies
25
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.9.0 to 0.9.1

4

lib/passport-local-sequelize.js

@@ -101,3 +101,3 @@ var util = require('util'),

self.set(options.hashField, new Buffer(hashRaw, 'binary').toString('hex'));
self.set(options.hashField, Buffer.from(hashRaw).toString('hex'));
self.set(options.saltField, salt);

@@ -143,3 +143,3 @@

var hash = new Buffer(hashRaw, 'binary').toString('hex');
var hash = Buffer.from(hashRaw).toString('hex');

@@ -146,0 +146,0 @@ if (hash === self.get(options.hashField)) {

{
"name": "passport-local-sequelize",
"version": "0.9.0",
"version": "0.9.1",
"engines": {
"node": ">=10.0.0"
},
"description": "Sequelize plugin that simplifies building username and password login with Passport",

@@ -13,3 +16,3 @@ "main": "lib/passport-local-sequelize.js",

"scripts": {
"test": "node_modules/jshint/bin/jshint lib/*.js test/*.js && node_modules/mocha/bin/mocha -R spec"
"test": "node_modules/jshint/bin/jshint lib/*.js test/*.js && node_modules/mocha/bin/_mocha -R spec"
},

@@ -26,12 +29,12 @@ "keywords": [

"dependencies": {
"passport-local": "~1.0.0",
"sequelize": "~5.6.1",
"lodash": "~4.17.4"
"lodash": "^4.17.21",
"passport-local": "^1.0.0",
"sequelize": "^6.24.0"
},
"devDependencies": {
"jshint": "~2.9.5",
"mocha": "^6.1.3",
"should": "~11.2.0",
"sqlite3": "^4.0.6"
"jshint": "^2.13.6",
"mocha": "^10.2.0",
"should": "^13.2.3",
"sqlite3": "^5.1.2"
}
}

@@ -0,0 +0,0 @@ # Passport-Local Sequelize

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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