node-red 4.0.0-beta.1 → 4.0.0-beta.2

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 CHANGED
@@ -1,3 +1,24 @@
1
+ #### 4.0.0-beta.2: Beta Release
2
+
3
+ Editor
4
+
5
+ - Introduce multiplayer feature (#4629) @knolleary
6
+ - Separate the "add new config-node" option into a new (+) button (#4627) @GogoVega
7
+ - Retain Palette categories collapsed and filter to localStorage (#4634) @knolleary
8
+ - Ensure palette filter reapplies and clear up unknown categories (#4637) @knolleary
9
+ - Add support for plugin (only) modules to the palette manager (#4620) @knolleary
10
+ - Update monaco to latest and node types to 18 LTS (#4615) @Steve-Mcl
11
+
12
+ Runtime
13
+
14
+ - Fix handling of subflow config-node select type in sf module (#4643) @knolleary
15
+ - Comms API updates (#4628) @knolleary
16
+ - Add French translations for 4.0.0-beta.1 (#4621) @GogoVega
17
+ - Add Japanese translations for 4.0.0-beta.1 (#4612) @kazuhitoyokoi
18
+
19
+ Nodes
20
+ - Fix change node handling of replacing with boolean (#4639) @knolleary
21
+
1
22
  #### 4.0.0-beta.1: Beta Release
2
23
 
3
24
  Editor
@@ -29,6 +50,15 @@ Nodes
29
50
  - Let debug node status msg length be settable via settings (#4402) @dceejay
30
51
  - Feat: Add ability to set headers for WebSocket client (#4436) @marcus-j-davies
31
52
 
53
+ #### 3.1.8: Maintenance Release
54
+
55
+ - Add validation and error handling on subflow instance properties (#4632) @knolleary
56
+ - Hide import/export context menu if disabled in theme (#4633) @knolleary
57
+ - Show change indicator on subflow tabs (#4631) @knolleary
58
+ - Bump dependencies (#4630) @knolleary
59
+ - Reset workspace index when clearing nodes (#4619) @knolleary
60
+ - Remove typo in global config (#4613) @kazuhitoyokoi
61
+
32
62
  #### 3.1.7: Maintenance Release
33
63
 
34
64
  - 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": "4.0.0-beta.1",
3
+ "version": "4.0.0-beta.2",
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": "4.0.0-beta.1",
35
- "@node-red/runtime": "4.0.0-beta.1",
36
- "@node-red/util": "4.0.0-beta.1",
37
- "@node-red/nodes": "4.0.0-beta.1",
34
+ "@node-red/editor-api": "4.0.0-beta.2",
35
+ "@node-red/runtime": "4.0.0-beta.2",
36
+ "@node-red/util": "4.0.0-beta.2",
37
+ "@node-red/nodes": "4.0.0-beta.2",
38
38
  "basic-auth": "2.0.1",
39
39
  "bcryptjs": "2.4.3",
40
- "express": "4.18.2",
40
+ "express": "4.19.2",
41
41
  "fs-extra": "11.1.1",
42
- "node-red-admin": "^3.1.2",
42
+ "node-red-admin": "^3.1.3",
43
43
  "nopt": "5.0.0",
44
44
  "semver": "7.5.4"
45
45
  },
package/settings.js CHANGED
@@ -437,6 +437,10 @@ module.exports = {
437
437
  }
438
438
  },
439
439
 
440
+ multiplayer: {
441
+ /** To enable the Multiplayer feature, set this value to true */
442
+ enabled: false
443
+ },
440
444
  },
441
445
 
442
446
  /*******************************************************************************