0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-27 22:59:51 -05:00

Merge branch 'master' into #857-deps-bug

This commit is contained in:
Juan Picado @jotadeveloper 2018-07-27 22:48:49 +02:00 committed by GitHub
commit 943ddebb2b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 17 additions and 2 deletions

View file

@ -2,6 +2,21 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
<a name="3.4.0"></a>
# [3.4.0](https://github.com/verdaccio/verdaccio/compare/v3.3.0...v3.4.0) (2018-07-27)
### Bug Fixes
* Authentication Plugins / plugin[method] is not a function ([0a3870e](https://github.com/verdaccio/verdaccio/commit/0a3870e))
### Features
* adds base64 support in webui token ([#840](https://github.com/verdaccio/verdaccio/issues/840)) ([4a7a94a](https://github.com/verdaccio/verdaccio/commit/4a7a94a))
<a name="3.3.0"></a>
# [3.3.0](https://github.com/verdaccio/verdaccio/compare/v3.2.0...v3.3.0) (2018-07-22)

View file

@ -1,6 +1,6 @@
{
"name": "verdaccio",
"version": "3.3.0",
"version": "3.4.0",
"description": "Private npm repository server",
"author": {
"name": "Alex Kocharin",

View file

@ -98,7 +98,7 @@ class Auth implements IAuth {
if (_.isFunction(plugin[method]) === false) {
method = 'add_user';
}
if (_.isFunction[method] === false) {
if (_.isFunction(plugin[method]) === false) {
next();
} else {
// p.add_user() execution