node-red 3.1.7 → 3.1.9
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 +16 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
#### 3.1.9: Maintenance Release
|
|
2
|
+
|
|
3
|
+
- Prevent subflow being added to itself (#4654) @knolleary
|
|
4
|
+
- Fix use of spawn on windows with cmd files (#4652) @knolleary
|
|
5
|
+
- Guard refresh of unknown subflow (#4640) @knolleary
|
|
6
|
+
- Fix subflow module sending messages to debug sidebar (#4642) @knolleary
|
|
7
|
+
|
|
8
|
+
#### 3.1.8: Maintenance Release
|
|
9
|
+
|
|
10
|
+
- Add validation and error handling on subflow instance properties (#4632) @knolleary
|
|
11
|
+
- Hide import/export context menu if disabled in theme (#4633) @knolleary
|
|
12
|
+
- Show change indicator on subflow tabs (#4631) @knolleary
|
|
13
|
+
- Bump dependencies (#4630) @knolleary
|
|
14
|
+
- Reset workspace index when clearing nodes (#4619) @knolleary
|
|
15
|
+
- Remove typo in global config (#4613) @kazuhitoyokoi
|
|
16
|
+
|
|
1
17
|
#### 3.1.7: Maintenance Release
|
|
2
18
|
|
|
3
19
|
- Add Japanese translation for v3.1.6 (#4603) @kazuhitoyokoi
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-red",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.9",
|
|
4
4
|
"description": "Low-code programming for event-driven applications",
|
|
5
5
|
"homepage": "https://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": "3.1.
|
|
35
|
-
"@node-red/runtime": "3.1.
|
|
36
|
-
"@node-red/util": "3.1.
|
|
37
|
-
"@node-red/nodes": "3.1.
|
|
34
|
+
"@node-red/editor-api": "3.1.9",
|
|
35
|
+
"@node-red/runtime": "3.1.9",
|
|
36
|
+
"@node-red/util": "3.1.9",
|
|
37
|
+
"@node-red/nodes": "3.1.9",
|
|
38
38
|
"basic-auth": "2.0.1",
|
|
39
39
|
"bcryptjs": "2.4.3",
|
|
40
|
-
"express": "4.
|
|
40
|
+
"express": "4.19.2",
|
|
41
41
|
"fs-extra": "11.1.1",
|
|
42
|
-
"node-red-admin": "^3.1.
|
|
42
|
+
"node-red-admin": "^3.1.3",
|
|
43
43
|
"nopt": "5.0.0",
|
|
44
44
|
"semver": "7.5.4"
|
|
45
45
|
},
|