@node-red/runtime 3.0.0-beta.4 → 3.0.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/lib/flows/Subflow.js
CHANGED
package/lib/nodes/credentials.js
CHANGED
|
@@ -373,11 +373,13 @@ var api = module.exports = {
|
|
|
373
373
|
|
|
374
374
|
}
|
|
375
375
|
}
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
if (
|
|
379
|
-
|
|
380
|
-
|
|
376
|
+
if (/^subflow(:|$)/.test(nodeType)) {
|
|
377
|
+
for (cred in savedCredentials) {
|
|
378
|
+
if (savedCredentials.hasOwnProperty(cred)) {
|
|
379
|
+
if (!newCreds.hasOwnProperty(cred)) {
|
|
380
|
+
delete savedCredentials[cred];
|
|
381
|
+
dirty = true;
|
|
382
|
+
}
|
|
381
383
|
}
|
|
382
384
|
}
|
|
383
385
|
}
|
package/locales/ja/runtime.json
CHANGED
|
@@ -122,6 +122,7 @@
|
|
|
122
122
|
"stopped-flows": "フローを停止しました",
|
|
123
123
|
"stopped": "停止しました",
|
|
124
124
|
"stopping-error": "ノードの停止に失敗しました: __message__",
|
|
125
|
+
"updated-flows": "フローを更新しました",
|
|
125
126
|
"added-flow": "フローを追加します: __label__",
|
|
126
127
|
"updated-flow": "フローを更新しました: __label__",
|
|
127
128
|
"removed-flow": "フローを削除しました: __label__",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@node-red/runtime",
|
|
3
|
-
"version": "3.0.0
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"repository": {
|
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
}
|
|
17
17
|
],
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@node-red/registry": "3.0.0
|
|
20
|
-
"@node-red/util": "3.0.0
|
|
19
|
+
"@node-red/registry": "3.0.0",
|
|
20
|
+
"@node-red/util": "3.0.0",
|
|
21
21
|
"async-mutex": "0.3.2",
|
|
22
22
|
"clone": "2.1.2",
|
|
23
23
|
"express": "4.18.1",
|