node-red 5.0.0-beta.2 → 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.
- package/CHANGELOG.md +31 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
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
|
+
|
|
1
7
|
#### 5.0.0-beta.2: Beta Release
|
|
2
8
|
|
|
3
9
|
Editor
|
|
@@ -33,6 +39,31 @@ Nodes
|
|
|
33
39
|
|
|
34
40
|
- Add ability to use pfx or p12 file for TLS connection settings option (#4907) @dceejay
|
|
35
41
|
|
|
42
|
+
#### 4.1.6: Maintenance Release
|
|
43
|
+
|
|
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
|
|
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
|
|
36
67
|
|
|
37
68
|
#### 4.1.3: Maintenance Release
|
|
38
69
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-red",
|
|
3
|
-
"version": "5.0.0-beta.
|
|
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.
|
|
35
|
-
"@node-red/runtime": "5.0.0-beta.
|
|
36
|
-
"@node-red/util": "5.0.0-beta.
|
|
37
|
-
"@node-red/nodes": "5.0.0-beta.
|
|
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.
|
|
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.
|
|
43
|
+
"node-red-admin": "^4.1.3",
|
|
44
44
|
"nopt": "5.0.0",
|
|
45
|
-
"semver": "7.7.
|
|
45
|
+
"semver": "7.7.4"
|
|
46
46
|
},
|
|
47
47
|
"optionalDependencies": {
|
|
48
48
|
"@node-rs/bcrypt": "1.10.7"
|