Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

seneca

Package Overview
Dependencies
Maintainers
1
Versions
140
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

seneca - npm Package Compare versions

Comparing version 3.27.1 to 3.27.2

5

CHANGES.md

@@ -0,1 +1,6 @@

## 3.27.2 2022-05-16
* Accept legacy non-functional option properties to maintain compatibility with old configs.
## 3.27.1 2022-05-15

@@ -2,0 +7,0 @@

12

lib/logging.js

@@ -322,3 +322,5 @@ "use strict";

logb.push(objstr);
obj.$$logged$$ = () => { };
if ('object' === typeof obj) {
obj.$$logged$$ = () => { };
}
}

@@ -345,3 +347,5 @@ else {

'\n');
data.err.$$logged$$ = () => { };
if ('object' === typeof data.err) {
data.err.$$logged$$ = () => { };
}
}

@@ -380,3 +384,5 @@ }

logb.push(util_1.default.inspect(data).replace(/\n/g, ' ').substring(0, datalen));
data.$$logged$$ = () => { };
if ('object' === typeof data) {
data.$$logged$$ = () => { };
}
}

@@ -383,0 +389,0 @@ if (data.did) {

@@ -397,3 +397,5 @@ /* Copyright © 2016-2022 Richard Rodger and other contributors, MIT License. */

logb.push(objstr)
obj.$$logged$$ = () => { }
if ('object' === typeof obj) {
obj.$$logged$$ = () => { }
}
} else {

@@ -425,3 +427,5 @@ logb.push(objstr.substring(0, 22)) + '...'

)
data.err.$$logged$$ = () => { }
if ('object' === typeof data.err) {
data.err.$$logged$$ = () => { }
}
}

@@ -455,3 +459,5 @@ } else if ('add' === data.kind) {

logb.push(Util.inspect(data).replace(/\n/g, ' ').substring(0, datalen))
data.$$logged$$ = () => { }
if ('object' === typeof data) {
data.$$logged$$ = () => { }
}
}

@@ -458,0 +464,0 @@

{
"name": "seneca",
"description": "A Microservices Framework for Node.js",
"version": "3.27.1",
"version": "3.27.2",
"license": "MIT",

@@ -6,0 +6,0 @@ "homepage": "http://senecajs.org",

@@ -271,2 +271,4 @@ /* Copyright © 2010-2022 Richard Rodger and other contributors, MIT License. */

reload$: Skip(Boolean),
actcache: Any(),
seneca: Any(),
};

@@ -273,0 +275,0 @@ // Utility functions exposed by Seneca via `seneca.util`.

Sorry, the diff of this file is not supported yet

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