n8n-core 2.14.1 → 2.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/binary-data/object-store/object-store.config.d.ts +1 -0
- package/dist/binary-data/object-store/object-store.config.js +5 -0
- package/dist/binary-data/object-store/object-store.config.js.map +1 -1
- package/dist/binary-data/object-store/object-store.service.ee.js +1 -1
- package/dist/binary-data/object-store/object-store.service.ee.js.map +1 -1
- package/dist/build.tsbuildinfo +1 -1
- package/dist/execution-engine/execution-lifecycle-hooks.d.ts +2 -1
- package/dist/execution-engine/execution-lifecycle-hooks.js +2 -1
- package/dist/execution-engine/execution-lifecycle-hooks.js.map +1 -1
- package/dist/execution-engine/node-execution-context/node-execution-context.d.ts +2 -1
- package/dist/execution-engine/node-execution-context/node-execution-context.js +15 -0
- package/dist/execution-engine/node-execution-context/node-execution-context.js.map +1 -1
- package/dist/execution-engine/node-execution-context/utils/custom-data.d.ts +5 -0
- package/dist/execution-engine/node-execution-context/utils/custom-data.js +38 -0
- package/dist/execution-engine/node-execution-context/utils/custom-data.js.map +1 -0
- package/dist/execution-engine/node-execution-context/utils/get-additional-keys.js +2 -32
- package/dist/execution-engine/node-execution-context/utils/get-additional-keys.js.map +1 -1
- package/dist/execution-engine/partial-execution-utils/find-trigger-for-partial-execution.d.ts +1 -1
- package/dist/execution-engine/partial-execution-utils/find-trigger-for-partial-execution.js +5 -2
- package/dist/execution-engine/partial-execution-utils/find-trigger-for-partial-execution.js.map +1 -1
- package/dist/execution-engine/workflow-execute.js +9 -0
- package/dist/execution-engine/workflow-execute.js.map +1 -1
- package/dist/html-sandbox.d.ts +2 -1
- package/dist/html-sandbox.js +7 -3
- package/dist/html-sandbox.js.map +1 -1
- package/package.json +8 -8
package/dist/html-sandbox.js
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.getHtmlSandboxCSP = exports.isFormHtmlSandboxingDisabled = exports.isWebhookHtmlSandboxingDisabled = void 0;
|
|
4
4
|
const config_1 = require("@n8n/config");
|
|
5
5
|
const di_1 = require("@n8n/di");
|
|
6
6
|
const isWebhookHtmlSandboxingDisabled = () => {
|
|
7
7
|
return di_1.Container.get(config_1.SecurityConfig).disableWebhookHtmlSandboxing;
|
|
8
8
|
};
|
|
9
9
|
exports.isWebhookHtmlSandboxingDisabled = isWebhookHtmlSandboxingDisabled;
|
|
10
|
-
const
|
|
10
|
+
const isFormHtmlSandboxingDisabled = () => {
|
|
11
|
+
return di_1.Container.get(config_1.SecurityConfig).disableFormHtmlSandboxing;
|
|
12
|
+
};
|
|
13
|
+
exports.isFormHtmlSandboxingDisabled = isFormHtmlSandboxingDisabled;
|
|
14
|
+
const getHtmlSandboxCSP = () => {
|
|
11
15
|
return 'sandbox allow-downloads allow-forms allow-modals allow-orientation-lock allow-pointer-lock allow-popups allow-presentation allow-scripts allow-top-navigation-by-user-activation allow-top-navigation-to-custom-protocols';
|
|
12
16
|
};
|
|
13
|
-
exports.
|
|
17
|
+
exports.getHtmlSandboxCSP = getHtmlSandboxCSP;
|
|
14
18
|
//# sourceMappingURL=html-sandbox.js.map
|
package/dist/html-sandbox.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"html-sandbox.js","sourceRoot":"","sources":["../src/html-sandbox.ts"],"names":[],"mappings":";;;AAAA,wCAA6C;AAC7C,gCAAoC;AAE7B,MAAM,+BAA+B,GAAG,GAAG,EAAE;IACnD,OAAO,cAAS,CAAC,GAAG,CAAC,uBAAc,CAAC,CAAC,4BAA4B,CAAC;AACnE,CAAC,CAAC;AAFW,QAAA,+BAA+B,mCAE1C;AAKK,MAAM,
|
|
1
|
+
{"version":3,"file":"html-sandbox.js","sourceRoot":"","sources":["../src/html-sandbox.ts"],"names":[],"mappings":";;;AAAA,wCAA6C;AAC7C,gCAAoC;AAE7B,MAAM,+BAA+B,GAAG,GAAG,EAAE;IACnD,OAAO,cAAS,CAAC,GAAG,CAAC,uBAAc,CAAC,CAAC,4BAA4B,CAAC;AACnE,CAAC,CAAC;AAFW,QAAA,+BAA+B,mCAE1C;AAEK,MAAM,4BAA4B,GAAG,GAAG,EAAE;IAChD,OAAO,cAAS,CAAC,GAAG,CAAC,uBAAc,CAAC,CAAC,yBAAyB,CAAC;AAChE,CAAC,CAAC;AAFW,QAAA,4BAA4B,gCAEvC;AAKK,MAAM,iBAAiB,GAAG,GAAW,EAAE;IAC7C,OAAO,2NAA2N,CAAC;AACpO,CAAC,CAAC;AAFW,QAAA,iBAAiB,qBAE5B"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-core",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.16.0",
|
|
4
4
|
"description": "Core functionality of n8n",
|
|
5
5
|
"main": "dist/index",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"@types/uuid": "^10.0.0",
|
|
26
26
|
"@types/xml2js": "^0.4.14",
|
|
27
27
|
"@n8n/errors": "0.6.0",
|
|
28
|
-
"@n8n/typescript-config": "1.
|
|
28
|
+
"@n8n/typescript-config": "1.4.0"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@aws-sdk/client-s3": "3.808.0",
|
|
@@ -60,14 +60,14 @@
|
|
|
60
60
|
"winston": "3.14.2",
|
|
61
61
|
"xml2js": "0.6.2",
|
|
62
62
|
"zod": "3.25.67",
|
|
63
|
-
"@n8n/backend-common": "1.
|
|
64
|
-
"@n8n/config": "2.13.1",
|
|
63
|
+
"@n8n/backend-common": "1.16.0",
|
|
65
64
|
"@n8n/client-oauth2": "1.1.0",
|
|
66
|
-
"@n8n/constants": "0.
|
|
67
|
-
"@n8n/
|
|
65
|
+
"@n8n/constants": "0.20.0",
|
|
66
|
+
"@n8n/config": "2.15.0",
|
|
67
|
+
"@n8n/decorators": "1.16.0",
|
|
68
68
|
"@n8n/di": "0.10.0",
|
|
69
|
-
"@n8n/workflow-sdk": "0.
|
|
70
|
-
"n8n-workflow": "2.
|
|
69
|
+
"@n8n/workflow-sdk": "0.9.0",
|
|
70
|
+
"n8n-workflow": "2.16.0"
|
|
71
71
|
},
|
|
72
72
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
73
73
|
"homepage": "https://n8n.io",
|