n8n 1.47.1 → 1.47.3
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/dist/build.tsbuildinfo +1 -1
- package/dist/commands/worker.js +2 -0
- package/dist/commands/worker.js.map +1 -1
- package/dist/databases/migrations/mysqldb/1717498465931-AddActivatedAtUserSetting.js +2 -2
- package/dist/databases/migrations/mysqldb/1717498465931-AddActivatedAtUserSetting.js.map +1 -1
- package/dist/databases/repositories/execution.repository.d.ts +1 -0
- package/dist/databases/repositories/execution.repository.js +15 -2
- package/dist/databases/repositories/execution.repository.js.map +1 -1
- package/package.json +3 -3
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 });
|