n8n-core 2.28.1 → 2.29.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/azure-blob/azure-blob.service.ee.d.ts +11 -2
- package/dist/binary-data/azure-blob/azure-blob.service.ee.js +60 -4
- package/dist/binary-data/azure-blob/azure-blob.service.ee.js.map +1 -1
- package/dist/binary-data/azure-blob.manager.d.ts +23 -0
- package/dist/binary-data/azure-blob.manager.js +81 -0
- package/dist/binary-data/azure-blob.manager.js.map +1 -0
- package/dist/binary-data/binary-data.config.d.ts +3 -3
- package/dist/binary-data/binary-data.config.js +1 -1
- package/dist/binary-data/binary-data.config.js.map +1 -1
- package/dist/binary-data/object-store.manager.js +3 -2
- package/dist/binary-data/object-store.manager.js.map +1 -1
- package/dist/binary-data/utils.js +1 -1
- package/dist/binary-data/utils.js.map +1 -1
- package/dist/build.tsbuildinfo +1 -1
- package/dist/errors/error-reporter.js +2 -2
- package/dist/errors/error-reporter.js.map +1 -1
- package/dist/execution-engine/active-workflow-triggers.d.ts +6 -4
- package/dist/execution-engine/active-workflow-triggers.js +83 -109
- package/dist/execution-engine/active-workflow-triggers.js.map +1 -1
- package/dist/execution-engine/index.d.ts +1 -0
- package/dist/execution-engine/index.js +3 -1
- package/dist/execution-engine/index.js.map +1 -1
- package/dist/execution-engine/node-execution-context/base-execute-context.js +19 -1
- package/dist/execution-engine/node-execution-context/base-execute-context.js.map +1 -1
- package/dist/execution-engine/node-execution-context/utils/binary-helper-functions.js +37 -3
- package/dist/execution-engine/node-execution-context/utils/binary-helper-functions.js.map +1 -1
- package/dist/execution-engine/node-execution-context/utils/get-additional-keys.js +3 -0
- package/dist/execution-engine/node-execution-context/utils/get-additional-keys.js.map +1 -1
- package/dist/execution-engine/node-execution-context/utils/request-helpers/oauth.js +85 -47
- package/dist/execution-engine/node-execution-context/utils/request-helpers/oauth.js.map +1 -1
- package/dist/execution-engine/node-execution-context/utils/scheduling-helper-functions.js +8 -1
- package/dist/execution-engine/node-execution-context/utils/scheduling-helper-functions.js.map +1 -1
- package/dist/execution-engine/partial-execution-utils/directed-graph.js +4 -4
- package/dist/execution-engine/partial-execution-utils/directed-graph.js.map +1 -1
- package/dist/execution-engine/poll-trigger-executor.d.ts +12 -0
- package/dist/execution-engine/poll-trigger-executor.js +88 -0
- package/dist/execution-engine/poll-trigger-executor.js.map +1 -0
- package/dist/execution-engine/scheduled-task-manager.d.ts +24 -20
- package/dist/execution-engine/scheduled-task-manager.js +111 -73
- package/dist/execution-engine/scheduled-task-manager.js.map +1 -1
- package/dist/execution-engine/workflow-active-triggers-state.d.ts +12 -3
- package/dist/execution-engine/workflow-active-triggers-state.js +42 -10
- package/dist/execution-engine/workflow-active-triggers-state.js.map +1 -1
- package/dist/execution-engine/workflow-execute.js +9 -4
- package/dist/execution-engine/workflow-execute.js.map +1 -1
- package/dist/nodes-loader/directory-loader.d.ts +3 -0
- package/dist/nodes-loader/directory-loader.js +57 -1
- package/dist/nodes-loader/directory-loader.js.map +1 -1
- package/dist/nodes-loader/scan-directory-for-packages.js +13 -1
- package/dist/nodes-loader/scan-directory-for-packages.js.map +1 -1
- package/dist/observability/tracing/sentry-tracing.d.ts +1 -1
- package/dist/observability/tracing/sentry-tracing.js +13 -1
- package/dist/observability/tracing/sentry-tracing.js.map +1 -1
- package/dist/observability/tracing/span-sampling.d.ts +1 -1
- package/dist/observability/tracing/span-sampling.js +2 -0
- package/dist/observability/tracing/span-sampling.js.map +1 -1
- package/package.json +22 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-core",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.29.0",
|
|
4
4
|
"description": "Core functionality of n8n",
|
|
5
5
|
"main": "dist/index",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -17,22 +17,26 @@
|
|
|
17
17
|
"LICENSE_EE.md"
|
|
18
18
|
],
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@n8n/typeorm": "0.3.20-17",
|
|
21
20
|
"@types/express": "^5.0.1",
|
|
22
21
|
"@types/jsonwebtoken": "9.0.10",
|
|
23
22
|
"@types/lodash": "4.17.17",
|
|
23
|
+
"@types/luxon": "3.2.0",
|
|
24
24
|
"@types/mime-types": "3.0.1",
|
|
25
|
+
"@types/ms": "2.1.0",
|
|
26
|
+
"@types/ssh2": "1.15.0",
|
|
25
27
|
"@types/uuid": "^11.0.0",
|
|
26
28
|
"@types/xml2js": "^0.4.14",
|
|
27
|
-
"@vitest/coverage-v8": "4.1.
|
|
29
|
+
"@vitest/coverage-v8": "4.1.9",
|
|
30
|
+
"axios": "1.18.0",
|
|
28
31
|
"jest-mock-extended": "^3.0.4",
|
|
29
32
|
"nock": "14.0.14",
|
|
30
33
|
"reflect-metadata": "0.2.2",
|
|
31
|
-
"vitest": "^4.1.
|
|
34
|
+
"vitest": "^4.1.9",
|
|
32
35
|
"vitest-mock-extended": "^3.1.0",
|
|
33
36
|
"@n8n/playwright-janitor": "0.1.0",
|
|
34
|
-
"@n8n/typescript-config": "1.
|
|
35
|
-
"@n8n/
|
|
37
|
+
"@n8n/typescript-config": "1.7.0",
|
|
38
|
+
"@n8n/typeorm": "0.4.0",
|
|
39
|
+
"@n8n/vitest-config": "1.16.0"
|
|
36
40
|
},
|
|
37
41
|
"peerDependencies": {
|
|
38
42
|
"zod": "3.25.67"
|
|
@@ -42,21 +46,22 @@
|
|
|
42
46
|
"@azure/identity": "4.13.0",
|
|
43
47
|
"@azure/storage-blob": "^12.32.0",
|
|
44
48
|
"@langchain/core": "1.1.41",
|
|
49
|
+
"@sentry/core": "^10.55.0",
|
|
45
50
|
"@sentry/node": "^10.55.0",
|
|
46
51
|
"@sentry/node-native": "^10.55.0",
|
|
47
52
|
"@sentry/profiling-node": "^10.55.0",
|
|
48
|
-
"axios": "1.18.0",
|
|
49
53
|
"callsites": "3.1.0",
|
|
50
54
|
"chardet": "2.0.0",
|
|
51
55
|
"cron": "4.4.0",
|
|
52
56
|
"fast-glob": "3.2.12",
|
|
53
|
-
"file-type": "
|
|
57
|
+
"file-type": "21.3.2",
|
|
54
58
|
"form-data": "4.0.6",
|
|
55
59
|
"htmlparser2": "^10.0.0",
|
|
56
60
|
"jsonwebtoken": "9.0.3",
|
|
57
61
|
"lodash": "4.18.1",
|
|
58
62
|
"luxon": "3.7.2",
|
|
59
63
|
"mime-types": "3.0.2",
|
|
64
|
+
"ms": "2.1.3",
|
|
60
65
|
"nanoid": "3.3.8",
|
|
61
66
|
"oauth-1.0a": "2.2.6",
|
|
62
67
|
"p-cancelable": "2.1.1",
|
|
@@ -68,16 +73,16 @@
|
|
|
68
73
|
"xml2js": "0.6.2",
|
|
69
74
|
"zod": "3.25.67",
|
|
70
75
|
"qs": "6.15.2",
|
|
71
|
-
"@n8n/backend-
|
|
72
|
-
"@n8n/backend-
|
|
73
|
-
"@n8n/
|
|
74
|
-
"@n8n/
|
|
75
|
-
"@n8n/decorators": "1.28.1",
|
|
76
|
-
"@n8n/constants": "0.28.0",
|
|
77
|
-
"@n8n/di": "0.14.0",
|
|
76
|
+
"@n8n/backend-common": "1.29.0",
|
|
77
|
+
"@n8n/backend-network": "1.3.0",
|
|
78
|
+
"@n8n/client-oauth2": "1.11.0",
|
|
79
|
+
"@n8n/decorators": "1.29.0",
|
|
78
80
|
"@n8n/errors": "0.10.0",
|
|
79
|
-
"
|
|
80
|
-
"n8n
|
|
81
|
+
"n8n-workflow": "2.29.0",
|
|
82
|
+
"@n8n/constants": "0.29.0",
|
|
83
|
+
"@n8n/workflow-sdk": "0.22.0",
|
|
84
|
+
"@n8n/config": "2.27.0",
|
|
85
|
+
"@n8n/di": "0.14.0"
|
|
81
86
|
},
|
|
82
87
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
83
88
|
"homepage": "https://n8n.io",
|