node-red 4.0.7 → 4.0.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 +32 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,35 @@
|
|
|
1
|
+
#### 4.0.9: Maintenance Release
|
|
2
|
+
|
|
3
|
+
Editor
|
|
4
|
+
|
|
5
|
+
- Add details for the dynamic subscription to match the English docs (#5050) @aikitori
|
|
6
|
+
- Fix tooltip snapping based on `typedInput` type (#5051) @GogoVega
|
|
7
|
+
- Prevent symbol usage warning in monaco (#5049) @Steve-Mcl
|
|
8
|
+
- Show subflow flow context under node section of sidebar (#5025) @knolleary
|
|
9
|
+
- feat: Add custom label for default deploy button in settings.editorTheme (#5030) @matiseni51
|
|
10
|
+
- Handle long auto-complete suggests (#5042) @knolleary
|
|
11
|
+
- Handle undefined username when generating user icon (#5043) @knolleary
|
|
12
|
+
- Handle dragging node into group and splicing link at same time (#5027) @knolleary
|
|
13
|
+
- Remember context sidebar tree state when refreshing (#5021) @knolleary
|
|
14
|
+
- Update sf instance env vars when removed from template (#5023) @knolleary
|
|
15
|
+
- Do not select group when triggering quick-add within it (#5022) @knolleary
|
|
16
|
+
- Fix library icon handling within library browser component (#5017) @knolleary
|
|
17
|
+
|
|
18
|
+
Runtime
|
|
19
|
+
- Allow env var access to context (#5016) @knolleary
|
|
20
|
+
- fix debug status reporting if null (#5018) @dceejay
|
|
21
|
+
- Fix grunt dev via better ndoemon ignore rules (#5015) @knolleary
|
|
22
|
+
- Fix typo in CHANGELOG (4.0.7-->4.0.8) (#5007) @natcl
|
|
23
|
+
|
|
24
|
+
Nodes
|
|
25
|
+
- Switch: Avoid exceeding call stack when draining message group in Switch (#5014) @knolleary
|
|
26
|
+
|
|
27
|
+
#### 4.0.8: Maintenance Release
|
|
28
|
+
|
|
29
|
+
Editor
|
|
30
|
+
|
|
31
|
+
- Fix config node sort order when importing (#5000) @knolleary
|
|
32
|
+
|
|
1
33
|
#### 4.0.7: Maintenance Release
|
|
2
34
|
|
|
3
35
|
Editor
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-red",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.9",
|
|
4
4
|
"description": "Low-code programming for event-driven applications",
|
|
5
5
|
"homepage": "https://nodered.org",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -31,10 +31,10 @@
|
|
|
31
31
|
"flow"
|
|
32
32
|
],
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@node-red/editor-api": "4.0.
|
|
35
|
-
"@node-red/runtime": "4.0.
|
|
36
|
-
"@node-red/util": "4.0.
|
|
37
|
-
"@node-red/nodes": "4.0.
|
|
34
|
+
"@node-red/editor-api": "4.0.9",
|
|
35
|
+
"@node-red/runtime": "4.0.9",
|
|
36
|
+
"@node-red/util": "4.0.9",
|
|
37
|
+
"@node-red/nodes": "4.0.9",
|
|
38
38
|
"basic-auth": "2.0.1",
|
|
39
39
|
"bcryptjs": "2.4.3",
|
|
40
40
|
"cors": "2.8.5",
|