node-red 2.2.0 → 2.2.1
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/CHANGELOG.md +25 -0
- package/lib/red.js +0 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,28 @@
|
|
|
1
|
+
#### 2.2.1: Maintenance Release
|
|
2
|
+
|
|
3
|
+
Editor
|
|
4
|
+
|
|
5
|
+
- Handle mixed-cased filter terms in keyboard shortcut dialog (#3444) @knolleary
|
|
6
|
+
- Prevent duplicate links being added between nodes (#3442) @knolleary
|
|
7
|
+
- Fix to hide tooltip after removing subflow tab (#3391) @HiroyasuNishiyama
|
|
8
|
+
- Fix node validation to be applied to config node (#3397) @HiroyasuNishiyama
|
|
9
|
+
- Fix: Dont add wires to undo buffer twice (#3437) @Steve-Mcl
|
|
10
|
+
|
|
11
|
+
Runtime
|
|
12
|
+
|
|
13
|
+
- Improve module location parsing (of stack info) when adding hook (#3447) @Steve-Mcl
|
|
14
|
+
- Fix substitution of NR_NODE_PATH (#3445) @HiroyasuNishiyama
|
|
15
|
+
- Remove console.log when ignoring disabled module (#3439) @knolleary
|
|
16
|
+
- Improve "Unexpected Node Error" logging (#3446) @Steve-Mcl
|
|
17
|
+
|
|
18
|
+
Nodes
|
|
19
|
+
|
|
20
|
+
- Debug: Fix no-prototype-builtins bug in debug node and utils (#3394) @Alkarex
|
|
21
|
+
- Delay: Fix Japanese message of delay node (#3434)
|
|
22
|
+
- Allow nbRateUnits to be undefined when validating (#3443) @knolleary
|
|
23
|
+
- Coding help for recently added node-red Predefined Environment Variables (#3440) @Steve-Mcl
|
|
24
|
+
|
|
25
|
+
|
|
1
26
|
#### 2.2.0: Milestone Release
|
|
2
27
|
|
|
3
28
|
Editor
|
package/lib/red.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-red",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.1",
|
|
4
4
|
"description": "Low-code programming for event-driven applications",
|
|
5
5
|
"homepage": "http://nodered.org",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -31,15 +31,15 @@
|
|
|
31
31
|
"flow"
|
|
32
32
|
],
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@node-red/editor-api": "2.2.
|
|
35
|
-
"@node-red/runtime": "2.2.
|
|
36
|
-
"@node-red/util": "2.2.
|
|
37
|
-
"@node-red/nodes": "2.2.
|
|
34
|
+
"@node-red/editor-api": "2.2.1",
|
|
35
|
+
"@node-red/runtime": "2.2.1",
|
|
36
|
+
"@node-red/util": "2.2.1",
|
|
37
|
+
"@node-red/nodes": "2.2.1",
|
|
38
38
|
"basic-auth": "2.0.1",
|
|
39
39
|
"bcryptjs": "2.4.3",
|
|
40
40
|
"express": "4.17.2",
|
|
41
41
|
"fs-extra": "10.0.0",
|
|
42
|
-
"node-red-admin": "^2.2.
|
|
42
|
+
"node-red-admin": "^2.2.3",
|
|
43
43
|
"nopt": "5.0.0",
|
|
44
44
|
"semver": "7.3.5"
|
|
45
45
|
},
|