node-red 3.0.0 → 3.0.1
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 +14 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
#### 3.0.1: Maintenance Release
|
|
2
|
+
|
|
3
|
+
Editor
|
|
4
|
+
|
|
5
|
+
- Allow codeEditor theme to be set even if `codeEditor` is not set in settings.js (#3794) @Steve-Mcl
|
|
6
|
+
- Sys info (diagnostics report) amendments (#3793) @Steve-Mcl
|
|
7
|
+
- Allow `mode` and `title` to be omitted in `options` argument for `createEditor` (#3791) @Steve-Mcl
|
|
8
|
+
- Fix focus issues (#3789) @Steve-Mcl
|
|
9
|
+
- Ensure all typedInput buttons have button type set (#3788) @knolleary
|
|
10
|
+
- Do not flag hasUsers=false nodes as unused in search (#3787) @knolleary
|
|
11
|
+
- Properly position quick-add dialog in all cases (#3786) @knolleary
|
|
12
|
+
- Ensure quick-add dialog does not obscure ghost node when shifted (#3785) @knolleary
|
|
13
|
+
- Remove use of Object.hasOwn (#3784) @knolleary
|
|
14
|
+
|
|
1
15
|
#### 3.0.0: Milestone Release
|
|
2
16
|
|
|
3
17
|
Editor
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-red",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1",
|
|
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.
|
|
35
|
-
"@node-red/runtime": "3.0.
|
|
36
|
-
"@node-red/util": "3.0.
|
|
37
|
-
"@node-red/nodes": "3.0.
|
|
34
|
+
"@node-red/editor-api": "3.0.1",
|
|
35
|
+
"@node-red/runtime": "3.0.1",
|
|
36
|
+
"@node-red/util": "3.0.1",
|
|
37
|
+
"@node-red/nodes": "3.0.1",
|
|
38
38
|
"basic-auth": "2.0.1",
|
|
39
39
|
"bcryptjs": "2.4.3",
|
|
40
40
|
"express": "4.18.1",
|