Comparing version 3.34.0 to 3.34.1
@@ -0,1 +1,6 @@ | ||
## 3.34.1 2024-01-18 | ||
* Remove lodash.template as a sub-dependency. | ||
## 3.34.0 2024-01-18 | ||
@@ -2,0 +7,0 @@ |
@@ -424,3 +424,4 @@ /* Copyright © 2020 Richard Rodger and other contributors, MIT License. */ | ||
else { | ||
if (!so.legacy.options && !Joi.isSchema(defaults_values, { legacy: true })) { | ||
let useJoi = so.legacy.options || Joi.isSchema(defaults_values, { legacy: true }); | ||
if (!useJoi) { | ||
// TODO: use Gubu.isShape | ||
@@ -695,2 +696,6 @@ let isShape = defaults_values.gubu && defaults_values.gubu.gubu$; | ||
} | ||
// Joi prototype missing, so just accept any options | ||
else if (null != spec.$_root) { | ||
return Joi.object({}); | ||
} | ||
let joiobj = Joi.object(); | ||
@@ -697,0 +702,0 @@ if (opts.allow_unknown) { |
@@ -592,3 +592,5 @@ /* Copyright © 2020 Richard Rodger and other contributors, MIT License. */ | ||
else { | ||
if (!so.legacy.options && !Joi.isSchema(defaults_values, { legacy: true })) { | ||
let useJoi = so.legacy.options || Joi.isSchema(defaults_values, { legacy: true }) | ||
if (!useJoi) { | ||
// TODO: use Gubu.isShape | ||
@@ -953,2 +955,7 @@ let isShape = defaults_values.gubu && defaults_values.gubu.gubu$ | ||
// Joi prototype missing, so just accept any options | ||
else if (null != spec.$_root) { | ||
return Joi.object({}) | ||
} | ||
let joiobj = Joi.object() | ||
@@ -955,0 +962,0 @@ |
{ | ||
"name": "seneca", | ||
"description": "A Microservices Framework for Node.js", | ||
"version": "3.34.0", | ||
"version": "3.34.1", | ||
"license": "MIT", | ||
@@ -104,4 +104,4 @@ "homepage": "http://senecajs.org", | ||
"rolling-stats": "^0.2.1", | ||
"seneca-transport": "^8.0.0", | ||
"use-plugin": "9" | ||
"seneca-transport": "^8.2.0", | ||
"use-plugin": "^10.2.0" | ||
}, | ||
@@ -108,0 +108,0 @@ "devDependencies": { |
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
678576
13060
+ Addednorma@3.1.1(transitive)
+ Addeduse-plugin@10.2.0(transitive)
- Removederaro@2.1.0(transitive)
- Removedlodash._reinterpolate@3.0.0(transitive)
- Removedlodash.template@4.5.0(transitive)
- Removedlodash.templatesettings@4.2.0(transitive)
- Removednid@1.3.3(transitive)
- Removednorma@2.0.2(transitive)
- Removeduse-plugin@9.1.0(transitive)
Updatedseneca-transport@^8.2.0
Updateduse-plugin@^10.2.0