publication-server
Advanced tools
Comparing version 1.1.0 to 1.1.1
{ | ||
"name": "publication-client", | ||
"version": "1.0.0", | ||
"version": "1.1.1", | ||
"description": "A client for a publication-server", | ||
@@ -5,0 +5,0 @@ "main": "dist/browser/index.js", |
@@ -89,3 +89,3 @@ 'use strict'; | ||
_.each(source, function(value, key) { | ||
if (_.has(target, key) && ObjectUtils.isPlainObject(target[key]) && ObjectUtils.isPlainObject(source[key])) { | ||
if (_.has(target, key) && isObject(target[key]) && isObject(source[key])) { | ||
deepExtend(target[key], source[key]); | ||
@@ -92,0 +92,0 @@ } else { |
{ | ||
"name": "publication-server", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -133,1 +133,6 @@ publication-server | ||
See [publication-client](https://github.com/mixmaxhq/publication-server/blob/master/client/README.md) for the client for this server. | ||
### Changelog | ||
* 1.1.0 Alter how we wrap the authentication function and make it required. | ||
* 1.0.0 Initial release of server and client |
Sorry, the diff of this file is too big to display
431126
11677
138