node-red 5.0.0-beta.1 → 5.0.0-beta.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 +77 -1
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
1
+ #### 5.0.0-beta.3: Beta Release
2
+
3
+ - UX updates for beta 3 (#5498) @knolleary
4
+ - Update Monaco to latest (0.55.1) (#5508) @Steve-Mcl
5
+ - Move location of new creds files to be next to flows (if they don't exist already in userdir) (#4951) @dceejay
6
+
7
+ #### 5.0.0-beta.2: Beta Release
8
+
9
+ Editor
10
+
11
+ - UX updates for next beta (#5444) @knolleary
12
+
13
+ Nodes
14
+
15
+ - Add pause button to debug sidebar (#5390) @dceejay
16
+ - Add burst mode to delay node (#5391) @dceejay
17
+ - Add TLS certs/keys from Env Vars (#5376) @hardillb
18
+
1
19
  #### 5.0.0-beta.1: Beta Release
2
20
 
3
21
  Editor
@@ -21,9 +39,67 @@ Nodes
21
39
 
22
40
  - Add ability to use pfx or p12 file for TLS connection settings option (#4907) @dceejay
23
41
 
42
+ #### 4.1.6: Maintenance Release
24
43
 
25
- #### 4.1.2: Maintenance Release
44
+ - Allow palette.theme to be set via theme plugin and include icons (#5500) @knolleary
45
+ - Ensure config sidebar tooltip handles html content (#5501) @knolleary
46
+ - Allow node-red integrator access to available updates (#5499) @Steve-Mcl
47
+ - Add frontend pre and post debug message hooks (#5495) @Steve-Mcl
48
+ - Fix: allow middle-click panning over links and ports (#5496) @lklivingstone
49
+ - Support ctrl key to select configuration nodes (#5486) @kazuhitoyokoi
50
+ - Add § as shortcut meta-key (#5482) @gorenje
51
+ - Update dependencies (#5502) @knolleary
52
+
53
+ #### 4.1.5: Maintenance Release
54
+
55
+ - chore: bump tar to 7.5.7 (#5472) @bryopsida
56
+ - Update node-red-admin dependency @knolleary
57
+
58
+ #### 4.1.4: Maintenance Release
26
59
 
60
+ - Update tar dependency @knolleary
61
+ - Revert overflow fix in editableList (#5467) @knolleary
62
+ - registry: fix importModule base dir for exports subpaths (#5465) @yuan-cloud
63
+ - fix: prevent race condition in localfilesystem context store during shutdown (#5462) @Dennis-SEG
64
+ - fix: prevent double resolve in node close callback (#5461) @Dennis-SEG
65
+ - fix: prevent incorrect array modification in delay node (#5457) @Dennis-SEG
66
+ - fix: prevent uncaught exceptions in core node event handlers (#5438) @Dennis-SEG
67
+
68
+ #### 4.1.3: Maintenance Release
69
+
70
+ Editor
71
+
72
+ - 5343/Editor/Bug: Node help tab resets focus when arrow keys are used to switch between nodes (#5406) @piotrbogun
73
+ - Ensure quick-add filter is applied properly when retriggering add (#5427) @knolleary
74
+ - TreeList: Fix widget treeList keyboard navigation scroll behavior (#5421) @piotrbogun
75
+ - Editor: Flow & subflow names are changed to all lowercase in search dialog #5348 (#5401) @n-lark
76
+ - Allow actions show-next-tab and previous to loop (#5355) @GogoVega
77
+ - 5404/Editor/Bug: Junction error in Quick Add dialog (#5407) @piotrbogun
78
+ - Add tooltip to delete button in node property UI (#5410) @kazuhitoyokoi
79
+ - Fix invalid node size in quick add dialog (#5403) @kazuhitoyokoi
80
+ - Expand folder to avoid error in library (#5399) @kazuhitoyokoi
81
+ - Stricter validator for flow file name in project feature (#5398) @kazuhitoyokoi
82
+ - Fix size and scrolling in Git config UI (#5396) @kazuhitoyokoi
83
+ - Reveal node in search results via mouseover (#5368) @gorenje
84
+
85
+ Runtime
86
+
87
+ - Add package-lock.json for reproducible dependency chains (#5426) @dimitrieh
88
+ - Readme markdown refactor for legibility in IDE's (#5423) @dimitrieh
89
+ - Update body-parser (#5418) @knolleary
90
+
91
+ Nodes
92
+
93
+ - fix(http-request): prevent uncaught exceptions in async hooks (#5392) @Dennis-SEG
94
+ - Fix flushing when in variable delay mode (#5382) @dceejay
95
+ - File node TypedInput width fix (#5425) @knolleary
96
+ - Use TextDecoder() to decode UTF-8 characters (#5416) @kazuhitoyokoi
97
+ - Support source information in complete node (#5414) @kazuhitoyokoi
98
+ - Fix status node to retrieve status from all nodes (#5412) @kazuhitoyokoi
99
+ - Decrement count of http requests after error (#5409) @kazuhitoyokoi
100
+ - Fix debug tab to copy displayed value (#5400) @kazuhitoyokoi
101
+
102
+ #### 4.1.2: Maintenance Release
27
103
 
28
104
  Editor
29
105
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-red",
3
- "version": "5.0.0-beta.1",
3
+ "version": "5.0.0-beta.3",
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": "5.0.0-beta.1",
35
- "@node-red/runtime": "5.0.0-beta.1",
36
- "@node-red/util": "5.0.0-beta.1",
37
- "@node-red/nodes": "5.0.0-beta.1",
34
+ "@node-red/editor-api": "5.0.0-beta.3",
35
+ "@node-red/runtime": "5.0.0-beta.3",
36
+ "@node-red/util": "5.0.0-beta.3",
37
+ "@node-red/nodes": "5.0.0-beta.3",
38
38
  "basic-auth": "2.0.1",
39
- "bcryptjs": "3.0.2",
39
+ "bcryptjs": "3.0.3",
40
40
  "cors": "2.8.5",
41
41
  "express": "4.22.1",
42
42
  "fs-extra": "11.3.0",
43
- "node-red-admin": "^4.1.2",
43
+ "node-red-admin": "^4.1.3",
44
44
  "nopt": "5.0.0",
45
- "semver": "7.7.1"
45
+ "semver": "7.7.4"
46
46
  },
47
47
  "optionalDependencies": {
48
48
  "@node-rs/bcrypt": "1.10.7"