n8n-core 2.25.2 → 2.26.1
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/file-system.manager.d.ts +1 -1
- package/dist/build.tsbuildinfo +1 -1
- package/dist/errors/error-reporter.js +2 -0
- package/dist/errors/error-reporter.js.map +1 -1
- package/dist/errors/workflow-has-issues.error.d.ts +2 -1
- package/dist/errors/workflow-has-issues.error.js +24 -2
- package/dist/errors/workflow-has-issues.error.js.map +1 -1
- package/dist/execution-engine/active-workflows.d.ts +3 -3
- package/dist/execution-engine/active-workflows.js +16 -16
- package/dist/execution-engine/active-workflows.js.map +1 -1
- package/dist/execution-engine/index.d.ts +5 -9
- package/dist/execution-engine/node-execution-context/base-execute-context.d.ts +8 -2
- package/dist/execution-engine/node-execution-context/base-execute-context.js +1 -1
- package/dist/execution-engine/node-execution-context/base-execute-context.js.map +1 -1
- package/dist/execution-engine/node-execution-context/credentials-test-context.js +2 -2
- package/dist/execution-engine/node-execution-context/credentials-test-context.js.map +1 -1
- package/dist/execution-engine/node-execution-context/index.d.ts +0 -1
- package/dist/execution-engine/node-execution-context/index.js +1 -3
- package/dist/execution-engine/node-execution-context/index.js.map +1 -1
- package/dist/execution-engine/node-execution-context/local-load-options-context.js +3 -2
- package/dist/execution-engine/node-execution-context/local-load-options-context.js.map +1 -1
- package/dist/execution-engine/node-execution-context/node-execution-context.d.ts +9 -3
- package/dist/execution-engine/node-execution-context/node-execution-context.js +3 -1
- package/dist/execution-engine/node-execution-context/node-execution-context.js.map +1 -1
- package/dist/execution-engine/node-execution-context/utils/request-helper-functions.d.ts +1 -18
- package/dist/execution-engine/node-execution-context/utils/request-helper-functions.js +3 -1058
- package/dist/execution-engine/node-execution-context/utils/request-helper-functions.js.map +1 -1
- package/dist/execution-engine/node-execution-context/utils/request-helpers/authentication.d.ts +3 -0
- package/dist/execution-engine/node-execution-context/utils/request-helpers/authentication.js +117 -0
- package/dist/execution-engine/node-execution-context/utils/request-helpers/authentication.js.map +1 -0
- package/dist/execution-engine/node-execution-context/utils/request-helpers/axios-utils.d.ts +4 -2
- package/dist/execution-engine/node-execution-context/utils/request-helpers/axios-utils.js +18 -0
- package/dist/execution-engine/node-execution-context/utils/request-helpers/axios-utils.js.map +1 -1
- package/dist/execution-engine/node-execution-context/utils/request-helpers/factory.d.ts +2 -0
- package/dist/execution-engine/node-execution-context/utils/request-helpers/factory.js +78 -0
- package/dist/execution-engine/node-execution-context/utils/request-helpers/factory.js.map +1 -0
- package/dist/execution-engine/node-execution-context/utils/request-helpers/http-request.d.ts +7 -0
- package/dist/execution-engine/node-execution-context/utils/request-helpers/http-request.js +146 -0
- package/dist/execution-engine/node-execution-context/utils/request-helpers/http-request.js.map +1 -0
- package/dist/execution-engine/node-execution-context/utils/request-helpers/index.d.ts +2 -1
- package/dist/execution-engine/node-execution-context/utils/request-helpers/index.js +4 -14
- package/dist/execution-engine/node-execution-context/utils/request-helpers/index.js.map +1 -1
- package/dist/execution-engine/node-execution-context/utils/request-helpers/legacy-request-adapter.d.ts +5 -0
- package/dist/execution-engine/node-execution-context/utils/request-helpers/legacy-request-adapter.js +301 -0
- package/dist/execution-engine/node-execution-context/utils/request-helpers/legacy-request-adapter.js.map +1 -0
- package/dist/execution-engine/node-execution-context/utils/request-helpers/oauth.d.ts +5 -0
- package/dist/execution-engine/node-execution-context/utils/request-helpers/oauth.js +288 -0
- package/dist/execution-engine/node-execution-context/utils/request-helpers/oauth.js.map +1 -0
- package/dist/execution-engine/node-execution-context/utils/{outbound-user-agent.js → request-helpers/outbound-user-agent.js} +2 -2
- package/dist/execution-engine/node-execution-context/utils/request-helpers/outbound-user-agent.js.map +1 -0
- package/dist/execution-engine/node-execution-context/utils/request-helpers/pagination.d.ts +4 -0
- package/dist/execution-engine/node-execution-context/utils/request-helpers/pagination.js +165 -0
- package/dist/execution-engine/node-execution-context/utils/request-helpers/pagination.js.map +1 -0
- package/dist/execution-engine/triggers-and-pollers.d.ts +2 -2
- package/dist/execution-engine/triggers-and-pollers.js +2 -2
- package/dist/execution-engine/triggers-and-pollers.js.map +1 -1
- package/dist/execution-engine/workflow-execute.js +24 -3
- package/dist/execution-engine/workflow-execute.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/nodes-loader/directory-loader.js +8 -2
- package/dist/nodes-loader/directory-loader.js.map +1 -1
- package/dist/ssrf/dns-resolver.d.ts +13 -0
- package/dist/ssrf/dns-resolver.js +93 -0
- package/dist/ssrf/dns-resolver.js.map +1 -0
- package/dist/ssrf/hostname-matcher.d.ts +6 -0
- package/dist/ssrf/hostname-matcher.js +38 -0
- package/dist/ssrf/hostname-matcher.js.map +1 -0
- package/dist/ssrf/in-memory-dns-cache.service.d.ts +11 -0
- package/dist/ssrf/in-memory-dns-cache.service.js +61 -0
- package/dist/ssrf/in-memory-dns-cache.service.js.map +1 -0
- package/dist/ssrf/index.d.ts +5 -0
- package/dist/ssrf/index.js +10 -0
- package/dist/ssrf/index.js.map +1 -0
- package/dist/ssrf/ip-range-builder.d.ts +10 -0
- package/dist/ssrf/ip-range-builder.js +52 -0
- package/dist/ssrf/ip-range-builder.js.map +1 -0
- package/dist/ssrf/ssrf-blocked-ip.error.d.ts +6 -0
- package/dist/ssrf/ssrf-blocked-ip.error.js +21 -0
- package/dist/ssrf/ssrf-blocked-ip.error.js.map +1 -0
- package/dist/ssrf/ssrf-protection.service.d.ts +30 -0
- package/dist/ssrf/ssrf-protection.service.js +159 -0
- package/dist/ssrf/ssrf-protection.service.js.map +1 -0
- package/package.json +21 -19
- package/dist/execution-engine/node-execution-context/utils/outbound-user-agent.js.map +0 -1
- /package/dist/execution-engine/node-execution-context/utils/{outbound-user-agent.d.ts → request-helpers/outbound-user-agent.d.ts} +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ssrf-protection.service.js","sourceRoot":"","sources":["../../src/ssrf/ssrf-protection.service.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-core",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.26.1",
|
|
4
4
|
"description": "Core functionality of n8n",
|
|
5
5
|
"main": "dist/index",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
"files": [
|
|
14
14
|
"dist",
|
|
15
15
|
"bin",
|
|
16
|
-
"
|
|
17
|
-
"
|
|
16
|
+
"LICENSE_EE.md",
|
|
17
|
+
"LICENSE.md"
|
|
18
18
|
],
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@types/express": "^5.0.1",
|
|
@@ -22,17 +22,17 @@
|
|
|
22
22
|
"@types/lodash": "4.17.17",
|
|
23
23
|
"@types/mime-types": "3.0.1",
|
|
24
24
|
"@types/proxy-from-env": "^1.0.4",
|
|
25
|
-
"@types/uuid": "^
|
|
25
|
+
"@types/uuid": "^11.0.0",
|
|
26
26
|
"@types/xml2js": "^0.4.14",
|
|
27
27
|
"@vitest/coverage-v8": "4.1.1",
|
|
28
28
|
"jest-mock-extended": "^3.0.4",
|
|
29
29
|
"vitest": "^4.1.1",
|
|
30
30
|
"vitest-mock-extended": "^3.1.0",
|
|
31
31
|
"zod": "3.25.67",
|
|
32
|
-
"@n8n/errors": "0.
|
|
32
|
+
"@n8n/errors": "0.9.0",
|
|
33
33
|
"@n8n/playwright-janitor": "0.1.0",
|
|
34
|
-
"@n8n/typescript-config": "1.
|
|
35
|
-
"@n8n/vitest-config": "1.
|
|
34
|
+
"@n8n/typescript-config": "1.5.0",
|
|
35
|
+
"@n8n/vitest-config": "1.14.0"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"zod": "3.25.67"
|
|
@@ -40,10 +40,11 @@
|
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"@aws-sdk/client-s3": "3.808.0",
|
|
42
42
|
"@langchain/core": "1.1.41",
|
|
43
|
-
"@sentry/node": "^10.
|
|
44
|
-
"@sentry/node-native": "^10.
|
|
45
|
-
"@sentry/profiling-node": "^10.
|
|
43
|
+
"@sentry/node": "^10.55.0",
|
|
44
|
+
"@sentry/node-native": "^10.55.0",
|
|
45
|
+
"@sentry/profiling-node": "^10.55.0",
|
|
46
46
|
"axios": "1.16.1",
|
|
47
|
+
"cache-manager": "5.2.3",
|
|
47
48
|
"callsites": "3.1.0",
|
|
48
49
|
"chardet": "2.0.0",
|
|
49
50
|
"cron": "4.4.0",
|
|
@@ -66,17 +67,17 @@
|
|
|
66
67
|
"proxy-from-env": "^1.1.0",
|
|
67
68
|
"qs": "6.14.2",
|
|
68
69
|
"ssh2": "1.15.0",
|
|
69
|
-
"uuid": "
|
|
70
|
+
"uuid": "11.1.1",
|
|
70
71
|
"winston": "3.14.2",
|
|
71
72
|
"xml2js": "0.6.2",
|
|
72
|
-
"@n8n/backend-common": "1.
|
|
73
|
-
"@n8n/
|
|
74
|
-
"@n8n/
|
|
75
|
-
"@n8n/
|
|
76
|
-
"@n8n/decorators": "1.
|
|
77
|
-
"@n8n/
|
|
78
|
-
"
|
|
79
|
-
"n8n-
|
|
73
|
+
"@n8n/backend-common": "1.26.1",
|
|
74
|
+
"@n8n/constants": "0.26.0",
|
|
75
|
+
"@n8n/di": "0.13.0",
|
|
76
|
+
"@n8n/config": "2.24.0",
|
|
77
|
+
"@n8n/decorators": "1.26.1",
|
|
78
|
+
"@n8n/workflow-sdk": "0.19.1",
|
|
79
|
+
"n8n-workflow": "2.26.1",
|
|
80
|
+
"@n8n/client-oauth2": "1.8.0"
|
|
80
81
|
},
|
|
81
82
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
82
83
|
"homepage": "https://n8n.io",
|
|
@@ -92,6 +93,7 @@
|
|
|
92
93
|
"clean": "rimraf dist .turbo",
|
|
93
94
|
"typecheck": "tsc --noEmit",
|
|
94
95
|
"build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
|
|
96
|
+
"build:unchecked": "tsc -p tsconfig.build.json --noCheck && tsc-alias -p tsconfig.build.json",
|
|
95
97
|
"dev": "pnpm watch",
|
|
96
98
|
"format": "biome format --write .",
|
|
97
99
|
"format:check": "biome ci .",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"outbound-user-agent.js","sourceRoot":"","sources":["../../../../src/execution-engine/node-execution-context/utils/outbound-user-agent.ts"],"names":[],"mappings":";;AA2BA,wDAEC;AAUD,wEAQC;AAMD,sEAOC;AA5DD,wCAAgD;AAChD,gCAAoC;AAEpC,yCAAiC;AAEjC,uDAAoD;AAEpD,MAAM,eAAe,GAAG,iBAAiB,CAAC;AAC1C,MAAM,iBAAiB,GAAG,KAAK,CAAC;AAEhC,SAAS,cAAc;IACtB,IAAI,CAAC;QAGJ,MAAM,GAAG,GAAG,OAAO,CAAC,IAAA,gBAAI,EAAC,SAAS,EAAE,0BAA0B,CAAC,CAAwB,CAAC;QACxF,OAAO,GAAG,CAAC,OAAO,CAAC;IACpB,CAAC;IAAC,MAAM,CAAC;QACR,OAAO,OAAO,CAAC;IAChB,CAAC;AACF,CAAC;AAQD,SAAgB,sBAAsB,CAAC,OAAe;IACrD,OAAO,gCAAgC,OAAO,MAAM,eAAe,GAAG,CAAC;AACxE,CAAC;AAUD,SAAgB,8BAA8B;IAC7C,MAAM,EAAE,sBAAsB,EAAE,oBAAoB,EAAE,GAAG,cAAS,CAAC,GAAG,CAAC,0BAAiB,CAAC,CAAC;IAE1F,IAAI,CAAC,sBAAsB;QAAE,OAAO,iBAAiB,CAAC;IAEtD,IAAI,oBAAoB,CAAC,MAAM,GAAG,CAAC;QAAE,OAAO,oBAAoB,CAAC;IAEjE,OAAO,sBAAsB,CAAC,cAAc,EAAE,CAAC,CAAC;AACjD,CAAC;AAMD,SAAgB,6BAA6B,CAAC,WAA+B;IAC5E,IAAI,IAAA,iCAAe,EAAC,WAAW,EAAE,YAAY,CAAC;QAAE,OAAO;IAEvD,WAAW,CAAC,OAAO,GAAG;QACrB,GAAG,WAAW,CAAC,OAAO;QACtB,YAAY,EAAE,8BAA8B,EAAE;KAC9C,CAAC;AACH,CAAC"}
|