node-red 4.1.0-beta.1 → 4.1.0
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 +37 -0
- package/package.json +6 -6
- package/red.js +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,40 @@
|
|
|
1
|
+
#### 4.1.0: Milestone Release
|
|
2
|
+
|
|
3
|
+
- Fix: multipart form data upload issue (#5228) @debadutta98
|
|
4
|
+
- Update help document of filter node (#5210) @kazuhitoyokoi
|
|
5
|
+
- Fix inject node validation to support binary and hexadecimal numbers (#5212) @ZJvandeWeg
|
|
6
|
+
- Do not select a nearest node if move is active (#5199) @GogoVega
|
|
7
|
+
|
|
8
|
+
#### 4.1.0-beta.2: Beta Release
|
|
9
|
+
|
|
10
|
+
Editor
|
|
11
|
+
|
|
12
|
+
- feat: tray's primary button function will no longer run when clicking anywhere in #red-ui-editor-shade (#5122) @AllanOricil
|
|
13
|
+
- Truncate topic of debug message and add tooltip (#5168) @GogoVega
|
|
14
|
+
- Add event-log widget to status bar (#5181) @knolleary
|
|
15
|
+
- Add `splice` property to nodes:add event context (#5195) @knolleary
|
|
16
|
+
- Add support for plugin sources of autoComplete fields (#5194) @knolleary
|
|
17
|
+
- setSuggestedFlow api improvements (#5180) @knolleary
|
|
18
|
+
- Do not update suggestion whilst typeSearch hiding (#5193) @knolleary
|
|
19
|
+
- Update jquery (#5192) @knolleary
|
|
20
|
+
- Hide event log status widget by default (#5191) @knolleary
|
|
21
|
+
- Swap manage/install-all buttons in dependency notification (#5189) @knolleary
|
|
22
|
+
- Follow-up tweaks to HTTP In skip body parser (#5188) @knolleary
|
|
23
|
+
- Fixes infotip handling of cursor keys and updates english tip (#5187) @knolleary
|
|
24
|
+
- Add Japanese translations for 4.1.0-beta.1 (#5173) @kazuhitoyokoi
|
|
25
|
+
- Do not use css display when counting filtered palette nodes (#5178) @knolleary
|
|
26
|
+
- Fix `pending_version` not set after module update (#5169) @GogoVega
|
|
27
|
+
|
|
28
|
+
Runtime
|
|
29
|
+
|
|
30
|
+
- Prevent library leaking full local paths (#5186) @hardillb
|
|
31
|
+
|
|
32
|
+
Nodes
|
|
33
|
+
|
|
34
|
+
- HTTP In: feat: Add an option to the HTTP In to include the raw body. (#5037) @debadutta98
|
|
35
|
+
- HTTP Request: Allow limited Strings for msg.rejectUnauthorized (#5172) @hardillb
|
|
36
|
+
|
|
37
|
+
|
|
1
38
|
#### 4.1.0-beta.1: Beta Release
|
|
2
39
|
|
|
3
40
|
Editor
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-red",
|
|
3
|
-
"version": "4.1.0
|
|
3
|
+
"version": "4.1.0",
|
|
4
4
|
"description": "Low-code programming for event-driven applications",
|
|
5
5
|
"homepage": "https://nodered.org",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -31,16 +31,16 @@
|
|
|
31
31
|
"flow"
|
|
32
32
|
],
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@node-red/editor-api": "4.1.0
|
|
35
|
-
"@node-red/runtime": "4.1.0
|
|
36
|
-
"@node-red/util": "4.1.0
|
|
37
|
-
"@node-red/nodes": "4.1.0
|
|
34
|
+
"@node-red/editor-api": "4.1.0",
|
|
35
|
+
"@node-red/runtime": "4.1.0",
|
|
36
|
+
"@node-red/util": "4.1.0",
|
|
37
|
+
"@node-red/nodes": "4.1.0",
|
|
38
38
|
"basic-auth": "2.0.1",
|
|
39
39
|
"bcryptjs": "3.0.2",
|
|
40
40
|
"cors": "2.8.5",
|
|
41
41
|
"express": "4.21.2",
|
|
42
42
|
"fs-extra": "11.3.0",
|
|
43
|
-
"node-red-admin": "^4.1.
|
|
43
|
+
"node-red-admin": "^4.1.1",
|
|
44
44
|
"nopt": "5.0.0",
|
|
45
45
|
"semver": "7.7.1"
|
|
46
46
|
},
|
package/red.js
CHANGED
|
@@ -66,6 +66,7 @@ var knownOpts = {
|
|
|
66
66
|
"define": [String, Array],
|
|
67
67
|
"no-telemetry": Boolean
|
|
68
68
|
};
|
|
69
|
+
|
|
69
70
|
var shortHands = {
|
|
70
71
|
"?":["--help"],
|
|
71
72
|
"p":["--port"],
|
|
@@ -292,7 +293,6 @@ httpsPromise.then(function(startupHttps) {
|
|
|
292
293
|
server = http.createServer(function(req,res) {app(req,res);});
|
|
293
294
|
}
|
|
294
295
|
server.setMaxListeners(0);
|
|
295
|
-
|
|
296
296
|
function formatRoot(root) {
|
|
297
297
|
if (root[0] != "/") {
|
|
298
298
|
root = "/" + root;
|
|
@@ -529,18 +529,18 @@ httpsPromise.then(function(startupHttps) {
|
|
|
529
529
|
});
|
|
530
530
|
|
|
531
531
|
process.on('uncaughtException',function(err) {
|
|
532
|
-
|
|
532
|
+
console.log('[red] Uncaught Exception:');
|
|
533
533
|
if (err.stack) {
|
|
534
534
|
try {
|
|
535
535
|
RED.log.error(err.stack);
|
|
536
536
|
} catch(err2) {
|
|
537
|
-
|
|
537
|
+
console.log(err.stack);
|
|
538
538
|
}
|
|
539
539
|
} else {
|
|
540
540
|
try {
|
|
541
541
|
RED.log.error(err);
|
|
542
542
|
} catch(err2) {
|
|
543
|
-
|
|
543
|
+
console.log(err);
|
|
544
544
|
}
|
|
545
545
|
}
|
|
546
546
|
process.exit(1);
|