@feathersjs/authentication-local
Advanced tools
Comparing version 1.1.2 to 1.1.3
# Change Log | ||
## [v1.1.2](https://github.com/feathersjs/authentication-local/tree/v1.1.2) (2018-04-15) | ||
[Full Changelog](https://github.com/feathersjs/authentication-local/compare/v1.1.1...v1.1.2) | ||
**Closed issues:** | ||
- Protect hooks does not support dot notation [\#61](https://github.com/feathersjs/authentication-local/issues/61) | ||
**Merged pull requests:** | ||
- Use latest version of Lodash [\#62](https://github.com/feathersjs/authentication-local/pull/62) ([daffl](https://github.com/daffl)) | ||
## [v1.1.1](https://github.com/feathersjs/authentication-local/tree/v1.1.1) (2018-03-25) | ||
@@ -4,0 +15,0 @@ [Full Changelog](https://github.com/feathersjs/authentication-local/compare/v1.1.0...v1.1.1) |
@@ -40,3 +40,3 @@ const hasher = require('../utils/hash'); | ||
return Promise.all(data.map(item => { | ||
if (item.hasOwnProperty(field)) { | ||
if (Object.prototype.hasOwnProperty.call(item, field)) { | ||
return hashPw(item[field]).then(hashedPassword => { | ||
@@ -43,0 +43,0 @@ return Object.assign(item, { |
{ | ||
"name": "@feathersjs/authentication-local", | ||
"description": "Local authentication strategy for @feathers/authentication", | ||
"version": "1.1.2", | ||
"version": "1.1.3", | ||
"homepage": "https://github.com/feathersjs/authentication-local", | ||
@@ -6,0 +6,0 @@ "main": "lib/", |
27823