n8n 1.48.1 → 1.48.2
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/bin/n8n +5 -0
- package/package.json +5 -5
package/bin/n8n
CHANGED
|
@@ -55,6 +55,11 @@ if (process.env.NODEJS_PREFER_IPV4 === 'true') {
|
|
|
55
55
|
// More details: https://github.com/nodejs/node/issues/48145
|
|
56
56
|
require('net').setDefaultAutoSelectFamily?.(false);
|
|
57
57
|
|
|
58
|
+
// WebCrypto Polyfill for older versions of Node.js 18
|
|
59
|
+
if (!globalThis.crypto?.getRandomValues) {
|
|
60
|
+
globalThis.crypto = require('node:crypto').webcrypto;
|
|
61
|
+
}
|
|
62
|
+
|
|
58
63
|
(async () => {
|
|
59
64
|
const oclif = await import('@oclif/core');
|
|
60
65
|
await oclif.execute({ dir: __dirname });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n",
|
|
3
|
-
"version": "1.48.
|
|
3
|
+
"version": "1.48.2",
|
|
4
4
|
"description": "n8n Workflow Automation Tool",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"homepage": "https://n8n.io",
|
|
@@ -161,12 +161,12 @@
|
|
|
161
161
|
"zod": "3.22.4",
|
|
162
162
|
"zod-to-json-schema": "3.22.4",
|
|
163
163
|
"@n8n/client-oauth2": "0.18.0",
|
|
164
|
-
"@n8n/n8n-nodes-langchain": "1.48.0",
|
|
165
164
|
"@n8n/permissions": "0.10.0",
|
|
166
|
-
"n8n-
|
|
165
|
+
"@n8n/n8n-nodes-langchain": "1.48.0",
|
|
167
166
|
"n8n-core": "1.48.0",
|
|
168
|
-
"n8n-
|
|
169
|
-
"n8n-nodes-base": "1.48.0"
|
|
167
|
+
"n8n-editor-ui": "1.48.1",
|
|
168
|
+
"n8n-nodes-base": "1.48.0",
|
|
169
|
+
"n8n-workflow": "1.47.0"
|
|
170
170
|
},
|
|
171
171
|
"scripts": {
|
|
172
172
|
"clean": "rimraf dist .turbo",
|