node-red 4.1.0-beta.1 → 4.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/package.json +5 -5
  3. package/red.js +1 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,33 @@
1
+ #### 4.1.0-beta.2: Beta Release
2
+
3
+ Editor
4
+
5
+ - feat: tray's primary button function will no longer run when clicking anywhere in #red-ui-editor-shade (#5122) @AllanOricil
6
+ - Truncate topic of debug message and add tooltip (#5168) @GogoVega
7
+ - Add event-log widget to status bar (#5181) @knolleary
8
+ - Add `splice` property to nodes:add event context (#5195) @knolleary
9
+ - Add support for plugin sources of autoComplete fields (#5194) @knolleary
10
+ - setSuggestedFlow api improvements (#5180) @knolleary
11
+ - Do not update suggestion whilst typeSearch hiding (#5193) @knolleary
12
+ - Update jquery (#5192) @knolleary
13
+ - Hide event log status widget by default (#5191) @knolleary
14
+ - Swap manage/install-all buttons in dependency notification (#5189) @knolleary
15
+ - Follow-up tweaks to HTTP In skip body parser (#5188) @knolleary
16
+ - Fixes infotip handling of cursor keys and updates english tip (#5187) @knolleary
17
+ - Add Japanese translations for 4.1.0-beta.1 (#5173) @kazuhitoyokoi
18
+ - Do not use css display when counting filtered palette nodes (#5178) @knolleary
19
+ - Fix `pending_version` not set after module update (#5169) @GogoVega
20
+
21
+ Runtime
22
+
23
+ - Prevent library leaking full local paths (#5186) @hardillb
24
+
25
+ Nodes
26
+
27
+ - HTTP In: feat: Add an option to the HTTP In to include the raw body. (#5037) @debadutta98
28
+ - HTTP Request: Allow limited Strings for msg.rejectUnauthorized (#5172) @hardillb
29
+
30
+
1
31
  #### 4.1.0-beta.1: Beta Release
2
32
 
3
33
  Editor
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-red",
3
- "version": "4.1.0-beta.1",
3
+ "version": "4.1.0-beta.2",
4
4
  "description": "Low-code programming for event-driven applications",
5
5
  "homepage": "https://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": "4.1.0-beta.1",
35
- "@node-red/runtime": "4.1.0-beta.1",
36
- "@node-red/util": "4.1.0-beta.1",
37
- "@node-red/nodes": "4.1.0-beta.1",
34
+ "@node-red/editor-api": "4.1.0-beta.2",
35
+ "@node-red/runtime": "4.1.0-beta.2",
36
+ "@node-red/util": "4.1.0-beta.2",
37
+ "@node-red/nodes": "4.1.0-beta.2",
38
38
  "basic-auth": "2.0.1",
39
39
  "bcryptjs": "3.0.2",
40
40
  "cors": "2.8.5",
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;