node-red 3.1.0-beta.1 → 3.1.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 +50 -1
- package/lib/red.js +1 -1
- package/package.json +5 -5
- package/red.js +1 -1
- package/settings.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,54 @@
|
|
|
1
|
-
#### 3.1.0-beta.
|
|
1
|
+
#### 3.1.0-beta.2: Beta Release
|
|
2
|
+
|
|
3
|
+
Editor
|
|
4
|
+
|
|
5
|
+
- NEW: Add change icon to tabs (#4068) @knolleary
|
|
6
|
+
- NEW: Complete overhaul of Group UX (#4079) @knolleary
|
|
7
|
+
- NEW: Add link to node help in node edit dialog footer (#4065) @knolleary
|
|
8
|
+
- NEW: Added editor feature for connecting multiple nodes to single node (#4051) @sonntam
|
|
9
|
+
- NEW: Increase workspace size to 8000x8000 (#4094) @knolleary
|
|
10
|
+
- Ensure node buttons are redrawn when flow lock state is changed (#4091) @knolleary
|
|
11
|
+
- Prevent loops being created with junction nodes (#4087) @knolleary
|
|
12
|
+
- Prevent opening locked node's edit dialog (#4069) @knolleary
|
|
13
|
+
- Reverse direction of tab scroll to expected direction (#4064) @knolleary
|
|
14
|
+
- Add cancel operation to editableList (#4077) @HiroyasuNishiyama
|
|
15
|
+
- Apply Mermaid diagram for project settings UI (#4054) @kazuhitoyokoi
|
|
16
|
+
- Add tooltip for show/hide button on info sidebar (#4050) @kazuhitoyokoi
|
|
17
|
+
- Fix align nodes on locked tab (#4072) @HiroyasuNishiyama
|
|
18
|
+
- Fix importing connected link nodes into a subflow (#4082) @knolleary
|
|
19
|
+
- Fix to add empty marker to empty group (#4060) @HiroyasuNishiyama
|
|
20
|
+
- Fix image URLs for v3.0 tour (#4053) @kazuhitoyokoi
|
|
21
|
+
- Show scrollbar in notification dialog only when needed (#4048) @kazuhitoyokoi
|
|
22
|
+
- Update-monaco-and-typings (#4089) @Steve-Mcl
|
|
23
|
+
- Update jquery UI (#4088) @knolleary
|
|
24
|
+
- Support i18n of lock/unlock buttons in flow property UI (#4049) @kazuhitoyokoi
|
|
25
|
+
- Translation kr (#3895) @hae-iotplatform
|
|
26
|
+
- Translation zhcn (!!请懂中文的帮忙review) (#3952) @cliyr
|
|
27
|
+
- Add French translation of nodes (#3964) @GogoVega
|
|
28
|
+
- Add French translation (#3962) @GogoVega
|
|
29
|
+
- Portuguese Brazilian (pt-BR) translation (#3804) @FabsMuller
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
Runtime
|
|
2
33
|
|
|
34
|
+
- NEW: Generate stable ids for subflow instance internal nodes (#4093) @knolleary
|
|
35
|
+
- NEW: Change default file name to flows.json in project feature (#4073) @kazuhitoyokoi
|
|
36
|
+
- NEW: Deprecate synchronous access to jsonata (#4090) @knolleary
|
|
37
|
+
- Add Node 18 to test matrix (#4084) @knolleary
|
|
38
|
+
- Bump minimum nodejs version supported to match documented value (#4086) @knolleary
|
|
39
|
+
- Update monaco docs link in settings.js (#4075) @Steve-Mcl
|
|
40
|
+
- Remove duplicated messages in the message catalog (#4066) @kazuhitoyokoi
|
|
41
|
+
- Ensure errors in preDeliver callback are handled (#3911) @knolleary
|
|
42
|
+
- Fix "EADDRINUSE" error (#4046) @bggbr
|
|
43
|
+
|
|
44
|
+
Nodes
|
|
45
|
+
|
|
46
|
+
- Link Call: Clear link-call timeouts when node is closed (#4085) @knolleary
|
|
47
|
+
- Join: ensure inflight status is cleared when in auto mode (#4083) @knolleary
|
|
48
|
+
- File Out: Fix extra newline append for multipart file write (#3915) @dceejay
|
|
49
|
+
- Add validators for complete and link call nodes (#4056) @kazuhitoyokoi
|
|
50
|
+
|
|
51
|
+
#### 3.1.0-beta.1: Beta Release
|
|
3
52
|
|
|
4
53
|
Editor
|
|
5
54
|
|
package/lib/red.js
CHANGED
|
@@ -33,7 +33,7 @@ if (NODE_MAJOR_VERSION > 14) {
|
|
|
33
33
|
|
|
34
34
|
function checkVersion(userSettings) {
|
|
35
35
|
var semver = require('semver');
|
|
36
|
-
if (!semver.satisfies(process.version,">=
|
|
36
|
+
if (!semver.satisfies(process.version,">=14.0.0")) {
|
|
37
37
|
// TODO: in the future, make this a hard error.
|
|
38
38
|
// var e = new Error("Unsupported version of Node.js");
|
|
39
39
|
// e.code = "unsupported_version";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-red",
|
|
3
|
-
"version": "3.1.0-beta.
|
|
3
|
+
"version": "3.1.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.1.0-beta.
|
|
35
|
-
"@node-red/runtime": "3.1.0-beta.
|
|
36
|
-
"@node-red/util": "3.1.0-beta.
|
|
37
|
-
"@node-red/nodes": "3.1.0-beta.
|
|
34
|
+
"@node-red/editor-api": "3.1.0-beta.2",
|
|
35
|
+
"@node-red/runtime": "3.1.0-beta.2",
|
|
36
|
+
"@node-red/util": "3.1.0-beta.2",
|
|
37
|
+
"@node-red/nodes": "3.1.0-beta.2",
|
|
38
38
|
"basic-auth": "2.0.1",
|
|
39
39
|
"bcryptjs": "2.4.3",
|
|
40
40
|
"express": "4.18.2",
|
package/red.js
CHANGED
|
@@ -458,7 +458,7 @@ httpsPromise.then(function(startupHttps) {
|
|
|
458
458
|
RED.start().then(function() {
|
|
459
459
|
if (settings.httpAdminRoot !== false || settings.httpNodeRoot !== false || settings.httpStatic) {
|
|
460
460
|
server.on('error', function(err) {
|
|
461
|
-
if (err.
|
|
461
|
+
if (err.code === "EADDRINUSE") {
|
|
462
462
|
RED.log.error(RED.log._("server.unable-to-listen", {listenpath:getListenPath()}));
|
|
463
463
|
RED.log.error(RED.log._("server.port-in-use"));
|
|
464
464
|
} else {
|
package/settings.js
CHANGED
|
@@ -416,7 +416,7 @@ module.exports = {
|
|
|
416
416
|
*/
|
|
417
417
|
// theme: "vs",
|
|
418
418
|
/** other overrides can be set e.g. fontSize, fontFamily, fontLigatures etc.
|
|
419
|
-
* for the full list, see https://microsoft.github.io/monaco-editor/
|
|
419
|
+
* for the full list, see https://microsoft.github.io/monaco-editor/docs.html#interfaces/editor.IStandaloneEditorConstructionOptions.html
|
|
420
420
|
*/
|
|
421
421
|
//fontSize: 14,
|
|
422
422
|
//fontFamily: "Cascadia Code, Fira Code, Consolas, 'Courier New', monospace",
|