node-red 4.0.2 → 4.0.4

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 +52 -0
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,3 +1,55 @@
1
+ #### 4.0.4: Maintenance Release
2
+
3
+ Editor
4
+
5
+ - Fix `link call` node can call out of a subflow (#4892) @GogoVega
6
+ - Fix wrong unlock state when event is triggered after deployment (#4889) @GogoVega
7
+ - i18n(App) update with latest language file changes (#4903) @joebordes
8
+ - fix typo: depreciated (#4895) @dxdc
9
+
10
+ Runtime
11
+
12
+ - Update dev dependencies (#4893) @knolleary
13
+
14
+ Nodes
15
+
16
+ - MQTT: Allow msg.userProperties to have number values (#4900) @hardillb
17
+
18
+ #### 4.0.3: Maintenance Release
19
+
20
+ Editor
21
+
22
+ - Refresh page title after changing tab name (#4850) @kazuhitoyokoi
23
+ - Add Japanese translations for v4.0.2 (again) (#4853) @kazuhitoyokoi
24
+ - Stay in quick-add mode following context menu insert (#4883) @knolleary
25
+ - Do not include Junction type in quick-add for virtual links (#4879) @knolleary
26
+ - Multiplayer cursor tracking (#4845) @knolleary
27
+ - Hide add-flow options when disabled via editorTheme (#4869) @knolleary
28
+ - Fix env-var config select when multiple defined (#4872) @knolleary
29
+ - Fix subflow outbound-link filter (#4857) @GogoVega
30
+ - Add French translations for v4.0.2 (#4856) @GogoVega
31
+ - Fix moving link wires (#4851) @knolleary
32
+ - Adjust type search dialog position to prevent x-overflow (#4844) @Steve-Mcl
33
+ - fix: modulesInUse might be undefined (#4838) @lorenz-maurer
34
+ - Add Japanese translations for v4.0.2 (#4849) @kazuhitoyokoi
35
+ - Fix menu to enable/disable selection when it's a group (#4828) @GogoVega
36
+
37
+ Runtime
38
+
39
+ - Update dependencies (#4874) @knolleary
40
+ - GitHub: Add citation file to enable "Cite this repository" feature (#4861) @lobis
41
+ - Remove use of util.log (#4875) @knolleary
42
+
43
+ Nodes
44
+
45
+ - Fix invalid property error in range node example (#4855)
46
+ - Fix typo in flow example name (#4854) @kazuhitoyokoi
47
+ - Move SNI, ALPN and Verify Server cert out of check (#4882) @hardillb
48
+ - Set status of mqtt nodes to "disconnected" when deregistered from broker (#4878) @Steve-Mcl
49
+ - MQTT: Ensure will payload is a string (#4873) @knolleary
50
+ - Let batch node terminate "early" if msg.parts set to end of sequence (#4829) @dceejay
51
+ - Fix unintentional Capitalisation in Split node name (#4835) @dceejay
52
+
1
53
  #### 4.0.2: Maintenance Release
2
54
 
3
55
  Editor
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-red",
3
- "version": "4.0.2",
3
+ "version": "4.0.4",
4
4
  "description": "Low-code programming for event-driven applications",
5
5
  "homepage": "https://nodered.org",
6
6
  "license": "Apache-2.0",
@@ -31,18 +31,18 @@
31
31
  "flow"
32
32
  ],
33
33
  "dependencies": {
34
- "@node-red/editor-api": "4.0.2",
35
- "@node-red/runtime": "4.0.2",
36
- "@node-red/util": "4.0.2",
37
- "@node-red/nodes": "4.0.2",
34
+ "@node-red/editor-api": "4.0.4",
35
+ "@node-red/runtime": "4.0.4",
36
+ "@node-red/util": "4.0.4",
37
+ "@node-red/nodes": "4.0.4",
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.1",
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
- "semver": "7.5.4"
45
+ "semver": "7.6.3"
46
46
  },
47
47
  "optionalDependencies": {
48
48
  "@node-rs/bcrypt": "1.10.4"