n8n-core 1.11.1 → 1.11.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/generate-known +1 -4
- package/bin/generate-ui-types +1 -4
- package/package.json +3 -3
package/bin/generate-known
CHANGED
|
@@ -6,10 +6,7 @@ const { LoggerProxy } = require('n8n-workflow');
|
|
|
6
6
|
const { packageDir, writeJSON } = require('./common');
|
|
7
7
|
const { loadClassInIsolation } = require('../dist/ClassLoader');
|
|
8
8
|
|
|
9
|
-
LoggerProxy.init(
|
|
10
|
-
log: console.log.bind(console),
|
|
11
|
-
warn: console.warn.bind(console),
|
|
12
|
-
});
|
|
9
|
+
LoggerProxy.init(console);
|
|
13
10
|
|
|
14
11
|
const loadClass = (sourcePath) => {
|
|
15
12
|
try {
|
package/bin/generate-ui-types
CHANGED
|
@@ -4,10 +4,7 @@ const { LoggerProxy, NodeHelpers } = require('n8n-workflow');
|
|
|
4
4
|
const { PackageDirectoryLoader } = require('../dist/DirectoryLoader');
|
|
5
5
|
const { packageDir, writeJSON } = require('./common');
|
|
6
6
|
|
|
7
|
-
LoggerProxy.init(
|
|
8
|
-
log: console.log.bind(console),
|
|
9
|
-
warn: console.warn.bind(console),
|
|
10
|
-
});
|
|
7
|
+
LoggerProxy.init(console);
|
|
11
8
|
|
|
12
9
|
function findReferencedMethods(obj, refs = {}, latestName = '') {
|
|
13
10
|
for (const key in obj) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-core",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.2",
|
|
4
4
|
"description": "Core functionality of n8n",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"homepage": "https://n8n.io",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"@types/xml2js": "^0.4.11"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
|
-
"n8n-nodes-base": "1.11.
|
|
38
|
+
"n8n-nodes-base": "1.11.1"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"aws4": "^1.8.0",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"typedi": "^0.10.0",
|
|
57
57
|
"uuid": "^8.3.2",
|
|
58
58
|
"xml2js": "^0.5.0",
|
|
59
|
-
"n8n-workflow": "1.11.
|
|
59
|
+
"n8n-workflow": "1.11.1",
|
|
60
60
|
"@n8n/client-oauth2": "0.8.0"
|
|
61
61
|
},
|
|
62
62
|
"scripts": {
|