node-red 5.0.0-beta.0 → 5.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +52 -1
  2. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
1
+ #### 5.0.0-beta.2: Beta Release
2
+
3
+ Editor
4
+
5
+ - UX updates for next beta (#5444) @knolleary
6
+
7
+ Nodes
8
+
9
+ - Add pause button to debug sidebar (#5390) @dceejay
10
+ - Add burst mode to delay node (#5391) @dceejay
11
+ - Add TLS certs/keys from Env Vars (#5376) @hardillb
12
+
13
+ #### 5.0.0-beta.1: Beta Release
14
+
15
+ Editor
16
+
17
+ - Allow sidebar to be split into two panels (#5378) @knolleary
18
+
1
19
  #### 5.0.0-beta.0: Beta Release
2
20
 
3
21
  Editor
@@ -16,8 +34,41 @@ Nodes
16
34
  - Add ability to use pfx or p12 file for TLS connection settings option (#4907) @dceejay
17
35
 
18
36
 
19
- #### 4.1.2: Maintenance Release
37
+ #### 4.1.3: Maintenance Release
38
+
39
+ Editor
40
+
41
+ - 5343/Editor/Bug: Node help tab resets focus when arrow keys are used to switch between nodes (#5406) @piotrbogun
42
+ - Ensure quick-add filter is applied properly when retriggering add (#5427) @knolleary
43
+ - TreeList: Fix widget treeList keyboard navigation scroll behavior (#5421) @piotrbogun
44
+ - Editor: Flow & subflow names are changed to all lowercase in search dialog #5348 (#5401) @n-lark
45
+ - Allow actions show-next-tab and previous to loop (#5355) @GogoVega
46
+ - 5404/Editor/Bug: Junction error in Quick Add dialog (#5407) @piotrbogun
47
+ - Add tooltip to delete button in node property UI (#5410) @kazuhitoyokoi
48
+ - Fix invalid node size in quick add dialog (#5403) @kazuhitoyokoi
49
+ - Expand folder to avoid error in library (#5399) @kazuhitoyokoi
50
+ - Stricter validator for flow file name in project feature (#5398) @kazuhitoyokoi
51
+ - Fix size and scrolling in Git config UI (#5396) @kazuhitoyokoi
52
+ - Reveal node in search results via mouseover (#5368) @gorenje
53
+
54
+ Runtime
20
55
 
56
+ - Add package-lock.json for reproducible dependency chains (#5426) @dimitrieh
57
+ - Readme markdown refactor for legibility in IDE's (#5423) @dimitrieh
58
+ - Update body-parser (#5418) @knolleary
59
+
60
+ Nodes
61
+
62
+ - fix(http-request): prevent uncaught exceptions in async hooks (#5392) @Dennis-SEG
63
+ - Fix flushing when in variable delay mode (#5382) @dceejay
64
+ - File node TypedInput width fix (#5425) @knolleary
65
+ - Use TextDecoder() to decode UTF-8 characters (#5416) @kazuhitoyokoi
66
+ - Support source information in complete node (#5414) @kazuhitoyokoi
67
+ - Fix status node to retrieve status from all nodes (#5412) @kazuhitoyokoi
68
+ - Decrement count of http requests after error (#5409) @kazuhitoyokoi
69
+ - Fix debug tab to copy displayed value (#5400) @kazuhitoyokoi
70
+
71
+ #### 4.1.2: Maintenance Release
21
72
 
22
73
  Editor
23
74
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-red",
3
- "version": "5.0.0-beta.0",
3
+ "version": "5.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,10 +31,10 @@
31
31
  "flow"
32
32
  ],
33
33
  "dependencies": {
34
- "@node-red/editor-api": "5.0.0-beta.0",
35
- "@node-red/runtime": "5.0.0-beta.0",
36
- "@node-red/util": "5.0.0-beta.0",
37
- "@node-red/nodes": "5.0.0-beta.0",
34
+ "@node-red/editor-api": "5.0.0-beta.2",
35
+ "@node-red/runtime": "5.0.0-beta.2",
36
+ "@node-red/util": "5.0.0-beta.2",
37
+ "@node-red/nodes": "5.0.0-beta.2",
38
38
  "basic-auth": "2.0.1",
39
39
  "bcryptjs": "3.0.2",
40
40
  "cors": "2.8.5",