Comparing version 3.23.1 to 3.23.2
@@ -0,1 +1,6 @@ | ||
## 3.22.2 2021-01-14 | ||
* Debug option to print full error stacks regardless of logger. | ||
## 3.22.1 2020-12-10 | ||
@@ -2,0 +7,0 @@ |
@@ -314,2 +314,3 @@ /* Copyright © 2010-2018 Richard Rodger and other contributors, MIT License. */ | ||
// TODO: should be a configuration param so we can handle plugin name resolution | ||
exports.depends = function () { | ||
@@ -316,0 +317,0 @@ var self = this |
@@ -59,2 +59,4 @@ /* Copyright © 2016-2019 Richard Rodger and other contributors, MIT License. */ | ||
function flat_logger(entry) { | ||
let opts = this.options() | ||
var level_str = (entry.level_name + '').toUpperCase() | ||
@@ -124,2 +126,5 @@ if (level_str.length < 5) { | ||
this.private$.print.log(sb.join('\t').substring(0, entry.maxlen$ || 11111)) | ||
if (entry.err && opts.debug.print.err) { | ||
this.private$.print.err(entry.err) | ||
} | ||
} | ||
@@ -126,0 +131,0 @@ |
@@ -13,3 +13,3 @@ /* Copyright © 2014-2020 Richard Rodger and other contributors, MIT License. */ | ||
module.exports = function (callmodule, defaults, orig_initial) { | ||
module.exports = function resolve_options(callmodule, defaults, orig_initial) { | ||
var sourcemap = { | ||
@@ -16,0 +16,0 @@ argv: {}, |
@@ -25,3 +25,2 @@ /* Copyright © 2020 Richard Rodger and other contributors, MIT License. */ | ||
ordu.operator('seneca_complete', intern.op.seneca_complete); | ||
// TODO: exports -> meta and handle all meta processing | ||
ordu.add([ | ||
@@ -28,0 +27,0 @@ tasks.args, |
@@ -34,5 +34,2 @@ /* Copyright © 2020 Richard Rodger and other contributors, MIT License. */ | ||
// TODO: exports -> meta and handle all meta processing | ||
ordu.add([ | ||
@@ -39,0 +36,0 @@ tasks.args, |
{ | ||
"name": "seneca", | ||
"description": "A Microservices Framework for Node.js", | ||
"version": "3.23.1", | ||
"version": "3.23.2", | ||
"license": "MIT", | ||
@@ -87,3 +87,3 @@ "homepage": "http://senecajs.org", | ||
"@hapi/joi": "^17.1.1", | ||
"@hapi/wreck": "^17.0.0", | ||
"@hapi/wreck": "^17.1.0", | ||
"eraro": "^2.1.0", | ||
@@ -102,3 +102,3 @@ "fast-safe-stringify": "^2.0.7", | ||
"patrun": "^7.0.0", | ||
"qs": "^6.9.4", | ||
"qs": "^6.9.6", | ||
"rolling-stats": "^0.1.1", | ||
@@ -110,3 +110,3 @@ "seneca-transport": "^6.0.0", | ||
"@hapi/code": "^8.0.2", | ||
"@hapi/hoek": "^9.1.0", | ||
"@hapi/hoek": "^9.1.1", | ||
"@hapi/lab": "^24.1.0", | ||
@@ -120,11 +120,11 @@ "@seneca/test-plugin": "0.0.1", | ||
"lolex": "^6.0.0", | ||
"prettier": "^2.1.2", | ||
"seneca-entity": "^10.1.0", | ||
"prettier": "^2.2.1", | ||
"seneca-entity": "^12.0.0", | ||
"seneca-error-test": "^0.2.2", | ||
"seneca-joi": "^7.0.2", | ||
"seneca-promisify": "^2.0.0", | ||
"gex": "^3.0.1", | ||
"typescript": "^4.0.5", | ||
"@types/node": "^14.14.8" | ||
"gex": "^3.1.0", | ||
"typescript": "^4.1.3", | ||
"@types/node": "^14.14.20" | ||
} | ||
} |
@@ -96,2 +96,5 @@ /* Copyright © 2010-2020 Richard Rodger and other contributors, MIT License. */ | ||
env: false, | ||
// Regardless of logging, call `console.err` on errors | ||
err: false, | ||
}, | ||
@@ -98,0 +101,0 @@ |
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
255028
6045
Updated@hapi/wreck@^17.1.0
Updatedqs@^6.9.6