node-red 4.1.0 → 4.1.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +40 -0
  2. package/package.json +6 -6
  3. package/red.js +1 -7
package/CHANGELOG.md CHANGED
@@ -1,3 +1,43 @@
1
+ #### 4.1.1: Maintenance Release
2
+
3
+ Editor
4
+
5
+ - Filter suggestions to ensure only enabled set are shown (#5307) @GogoVega
6
+ - Show all catalog items if small enough and no search time provided (#5309) @knolleary
7
+ - Force a redraw after clearing suggested flow on mouse down (#5306) @knolleary
8
+ - i18n(NodeRed) update ES translation files to latest code base (#5299) @joebordes
9
+ - Filter suggestions to ensure only known types are shown (#5301) @knolleary
10
+ - Use the action label if provided (#5302) @GogoVega
11
+ - Handle subflow virtual port nodes when generating quick-add context (#5296) @knolleary
12
+ - Prevents label from taking up all the space for env autocomplete (#5293) @GogoVega
13
+ - Fix env autocomplete result if searchKey starts with `${` (#5292) @GogoVega
14
+ - Fix UI lock-up when typed arrays are expanded in debug window (#5290) @Steve-Mcl
15
+ - Notify installed plugins from the Palette Manager (#5277) @GogoVega
16
+ - Fix uncaught Monaco error (#5266) @Steve-Mcl
17
+ - Add 'url' module to default server-side types in Monaco editor (#5265) @Steve-Mcl
18
+ - Catch errors from RED.comms.subscribe callback (#5263) @hardillb
19
+ - Fix node documentation icon for long catalog loading (#5237) @GogoVega
20
+ - Add tooltip for event log view (#5239) @kazuhitoyokoi
21
+ - Fix undo node output changes inside a Subflow (#5278) @GogoVega
22
+
23
+ Runtime
24
+
25
+ - Ensure flow property is set on sf instance nodes so NR_SUBFLOW_PATH c… (#5297) @knolleary
26
+ - Ignore disabled nodes when checking for dependency modules (#5295) @knolleary
27
+ - Update node-red-admin version (#5294) @knolleary
28
+ - Fix config node resolution in packaged subflow within subflow (#5281) @olivierpelet
29
+ - Remove empty if block (#5273) @bonanitech
30
+ - docs: add security escalation policy (#5269) @UlisesGascon
31
+ - Simplify error logging when issue in settings file (#5310) @knolleary
32
+
33
+ Nodes
34
+
35
+ - Inject: Fix jsonata error reporting in Inject node (#5298) @knolleary
36
+ - Range: Fix rounding errors for range node when using float inputs and intege… (#5257) @dceejay
37
+ - HTTP Request: Show requesting status correctly in http request node when multiple processes are working (#5241) @kazuhitoyokoi
38
+ - Split: Speed up split node (#5252) @hardillb
39
+ - HTTP: Do not assume rawBody middleware is last in stack when moving it (#5300) @knolleary
40
+
1
41
  #### 4.1.0: Milestone Release
2
42
 
3
43
  - Fix: multipart form data upload issue (#5228) @debadutta98
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-red",
3
- "version": "4.1.0",
3
+ "version": "4.1.1",
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.1",
35
+ "@node-red/runtime": "4.1.1",
36
+ "@node-red/util": "4.1.1",
37
+ "@node-red/nodes": "4.1.1",
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.1",
43
+ "node-red-admin": "^4.1.2",
44
44
  "nopt": "5.0.0",
45
45
  "semver": "7.7.1"
46
46
  },
package/red.js CHANGED
@@ -163,13 +163,7 @@ try {
163
163
  settings.settingsFile = settingsFile;
164
164
  } catch(err) {
165
165
  console.log("Error loading settings file: "+settingsFile)
166
- if (err.code == 'MODULE_NOT_FOUND') {
167
- if (err.toString().indexOf(settingsFile) === -1) {
168
- console.log(err.toString());
169
- }
170
- } else {
171
- console.log(err);
172
- }
166
+ console.log(err);
173
167
  process.exit(1);
174
168
  }
175
169