Comparing version 3.27.1 to 3.27.2
@@ -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 @@ |
@@ -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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
593731
11677