node-red 4.0.1 → 4.0.3

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +50 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -1,3 +1,53 @@
1
+ #### 4.0.3: Maintenance Release
2
+
3
+ Editor
4
+
5
+ - Refresh page title after changing tab name (#4850) @kazuhitoyokoi
6
+ - Add Japanese translations for v4.0.2 (again) (#4853) @kazuhitoyokoi
7
+ - Stay in quick-add mode following context menu insert (#4883) @knolleary
8
+ - Do not include Junction type in quick-add for virtual links (#4879) @knolleary
9
+ - Multiplayer cursor tracking (#4845) @knolleary
10
+ - Hide add-flow options when disabled via editorTheme (#4869) @knolleary
11
+ - Fix env-var config select when multiple defined (#4872) @knolleary
12
+ - Fix subflow outbound-link filter (#4857) @GogoVega
13
+ - Add French translations for v4.0.2 (#4856) @GogoVega
14
+ - Fix moving link wires (#4851) @knolleary
15
+ - Adjust type search dialog position to prevent x-overflow (#4844) @Steve-Mcl
16
+ - fix: modulesInUse might be undefined (#4838) @lorenz-maurer
17
+ - Add Japanese translations for v4.0.2 (#4849) @kazuhitoyokoi
18
+ - Fix menu to enable/disable selection when it's a group (#4828) @GogoVega
19
+
20
+ Runtime
21
+
22
+ - Update dependencies (#4874) @knolleary
23
+ - GitHub: Add citation file to enable "Cite this repository" feature (#4861) @lobis
24
+ - Remove use of util.log (#4875) @knolleary
25
+
26
+ Nodes
27
+
28
+ - Fix invalid property error in range node example (#4855)
29
+ - Fix typo in flow example name (#4854) @kazuhitoyokoi
30
+ - Move SNI, ALPN and Verify Server cert out of check (#4882) @hardillb
31
+ - Set status of mqtt nodes to "disconnected" when deregistered from broker (#4878) @Steve-Mcl
32
+ - MQTT: Ensure will payload is a string (#4873) @knolleary
33
+ - Let batch node terminate "early" if msg.parts set to end of sequence (#4829) @dceejay
34
+ - Fix unintentional Capitalisation in Split node name (#4835) @dceejay
35
+
36
+ #### 4.0.2: Maintenance Release
37
+
38
+ Editor
39
+
40
+ - Use a more subtle border on the header (#4818) @bonanitech
41
+ - Improve the editor's French translations (#4824) @GogoVega
42
+ - Clean up orphaned editors (#4821) @Steve-Mcl
43
+ - Fix node validation if the property is not required (#4812) @GogoVega
44
+ - Ensure mermaid.min.js is cached properly between loads of the editor (#4817) @knolleary
45
+
46
+ Runtime
47
+
48
+ - Allow auth cookie name to be customised (#4815) @knolleary
49
+ - Guard against undefined sessions in multiplayer (#4816) @knolleary
50
+
1
51
  #### 4.0.1: Maintenance Release
2
52
 
3
53
  Editor
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-red",
3
- "version": "4.0.1",
3
+ "version": "4.0.3",
4
4
  "description": "Low-code programming for event-driven applications",
5
5
  "homepage": "https://nodered.org",
6
6
  "license": "Apache-2.0",
@@ -31,16 +31,16 @@
31
31
  "flow"
32
32
  ],
33
33
  "dependencies": {
34
- "@node-red/editor-api": "4.0.1",
35
- "@node-red/runtime": "4.0.1",
36
- "@node-red/util": "4.0.1",
37
- "@node-red/nodes": "4.0.1",
34
+ "@node-red/editor-api": "4.0.3",
35
+ "@node-red/runtime": "4.0.3",
36
+ "@node-red/util": "4.0.3",
37
+ "@node-red/nodes": "4.0.3",
38
38
  "basic-auth": "2.0.1",
39
39
  "bcryptjs": "2.4.3",
40
40
  "cors": "2.8.5",
41
- "express": "4.19.2",
41
+ "express": "4.21.0",
42
42
  "fs-extra": "11.2.0",
43
- "node-red-admin": "^4.0.0",
43
+ "node-red-admin": "^4.0.1",
44
44
  "nopt": "5.0.0",
45
45
  "semver": "7.5.4"
46
46
  },