node-red 3.0.0-beta.1 → 3.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 +35 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,38 @@
|
|
|
1
|
+
#### 3.0.0-beta.2: Beta Release
|
|
2
|
+
|
|
3
|
+
**Migration from 2.x**
|
|
4
|
+
|
|
5
|
+
- The 'slice wires' action has changed from Ctrl-RightMouseButton to Alt-LeftMouseButton
|
|
6
|
+
|
|
7
|
+
Editor
|
|
8
|
+
|
|
9
|
+
- Rework Junctions to be more node like in their event handling (#3607) @knolleary
|
|
10
|
+
- Change slicing / slice-junction operations over to mouse button 0 (Left Mouse Button) (#3609) @Steve-Mcl
|
|
11
|
+
- Do not slice-junction link node wires (#3608) @knolleary
|
|
12
|
+
- Handle many-to-one slicing of wires (#3604) @knolleary
|
|
13
|
+
- Ensure ACE worker options are set (#3611) @Steve-Mcl
|
|
14
|
+
- Remove duplicate history add of ungroup event (#3605) @knolleary
|
|
15
|
+
- use text width instead of number of characters for deciding select fi… (#3603) @HiroyasuNishiyama
|
|
16
|
+
- Update Japanese info of link call node reflecting update of English info (#3600) @HiroyasuNishiyama
|
|
17
|
+
- Fix typedInput label not visible on themes (#3580) @bonanitech
|
|
18
|
+
- Fix project switching when junctions are present (#3595) @Steve-Mcl
|
|
19
|
+
- Fix junction: when wiring from a regular nodes INPUT, backwards to a junction (#3591) @Steve-Mcl
|
|
20
|
+
- Fix error initialising flow tab editor (#3585) @Steve-Mcl
|
|
21
|
+
- Add Japanese translations for v3.0-beta.1 (#3576) @kazuhitoyokoi
|
|
22
|
+
- Fix image paths where `red/image/typedInput/XXXX.png` should be `red/image/typedInput/XXXX.svg` (#3592) @kazuhitoyokoi
|
|
23
|
+
- Fix browser console error Uncaught TypeError when searching certain terms (#3584) @Steve-Mcl
|
|
24
|
+
|
|
25
|
+
Runtime
|
|
26
|
+
|
|
27
|
+
- fix error on system-info action (#3589) @HiroyasuNishiyama
|
|
28
|
+
|
|
29
|
+
Nodes
|
|
30
|
+
|
|
31
|
+
- I18n switch rule selector (#3602) @HiroyasuNishiyama
|
|
32
|
+
- Handle removal of event handlers to allow mqtt client.end() to work (#3594) @PhilDay-CT
|
|
33
|
+
- update link-call node info according to current behavior (#3597) @HiroyasuNishiyama
|
|
34
|
+
|
|
35
|
+
|
|
1
36
|
#### 3.0.0-beta.1: Beta Release
|
|
2
37
|
|
|
3
38
|
**Migration from 2.x**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-red",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.2",
|
|
4
4
|
"description": "Low-code programming for event-driven applications",
|
|
5
5
|
"homepage": "http://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": "3.0.0-beta.
|
|
35
|
-
"@node-red/runtime": "3.0.0-beta.
|
|
36
|
-
"@node-red/util": "3.0.0-beta.
|
|
37
|
-
"@node-red/nodes": "3.0.0-beta.
|
|
34
|
+
"@node-red/editor-api": "3.0.0-beta.2",
|
|
35
|
+
"@node-red/runtime": "3.0.0-beta.2",
|
|
36
|
+
"@node-red/util": "3.0.0-beta.2",
|
|
37
|
+
"@node-red/nodes": "3.0.0-beta.2",
|
|
38
38
|
"basic-auth": "2.0.1",
|
|
39
39
|
"bcryptjs": "2.4.3",
|
|
40
40
|
"express": "4.18.1",
|