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

n8n-workflow

Package Overview
Dependencies
Maintainers
2
Versions
284
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

n8n-workflow - npm Package Compare versions

Comparing version 1.34.0 to 1.35.0

5

dist/Extensions/StringExtensions.js

@@ -248,3 +248,6 @@ "use strict";

catch (error) {
return undefined;
if (value.includes("'")) {
throw new expression_extension_error_1.ExpressionExtensionError("Parsing failed. Check you're using double quotes");
}
throw new expression_extension_error_1.ExpressionExtensionError('Parsing failed');
}

@@ -251,0 +254,0 @@ }

9

dist/NodeHelpers.js

@@ -221,3 +221,3 @@ "use strict";

default: '*',
description: 'The origin(s) to allow cross-origin non-preflight requests from in a browser',
description: 'Comma-separated list of URLs allowed for cross-origin non-preflight requests. Use * (default) to allow all origins.',
},

@@ -233,3 +233,6 @@ ];

if (optionsProperty)
optionsProperty.options.push(...commonCORSParameters);
optionsProperty.options = [
...commonCORSParameters,
...optionsProperty.options,
];
else

@@ -399,3 +402,3 @@ properties.push(...commonCORSParameters);

const executionOrder = [];
const indexToResolve = Array.from({ length: nodePropertiesArray.length }, (v, k) => k);
const indexToResolve = Array.from({ length: nodePropertiesArray.length }, (_, k) => k);
const resolvedParameters = [];

@@ -402,0 +405,0 @@ let index;

@@ -706,2 +706,6 @@ "use strict";

runExecutionData.resultData.error !== undefined) {
if (runExecutionData.resultData.error.name === 'NodeOperationError' ||
runExecutionData.resultData.error.name === 'NodeApiError') {
throw runExecutionData.resultData.error;
}
const error = new Error(runExecutionData.resultData.error.message);

@@ -708,0 +712,0 @@ error.stack = runExecutionData.resultData.error.stack;

{
"name": "n8n-workflow",
"version": "1.34.0",
"version": "1.35.0",
"description": "Workflow base code of n8n",

@@ -5,0 +5,0 @@ "license": "SEE LICENSE IN LICENSE.md",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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