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.34.0 to 3.34.1

5

CHANGES.md

@@ -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 @@

7

lib/plugin.js

@@ -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 @@

6

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

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