New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

publication-server

Package Overview
Dependencies
Maintainers
1
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

publication-server - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

2

client/package.json
{
"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

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