node-red 4.1.0 → 4.1.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 +61 -0
  2. package/package.json +7 -7
  3. package/red.js +1 -7
package/CHANGELOG.md CHANGED
@@ -1,3 +1,64 @@
1
+ #### 4.1.2: Maintenance Release
2
+
3
+
4
+ Editor
5
+
6
+ - Fix invalid `dirty` state during redo after deployment (#5352) @GogoVega
7
+ - Fix up port event cancelling on node-select (#5338) @knolleary
8
+ - Add selection-to-subflow context menu item (#5337) @knolleary
9
+ - Show subflow input label on virtual port (#5325) @knolleary
10
+ - Clear suggestions on node/port mouse down (#5323) @knolleary
11
+ - Fix lock icon for read-only user (#5336) @knolleary
12
+ - Fix `RED.comms.subscribe` callback on error (#5313) @GogoVega
13
+
14
+ Runtime
15
+
16
+ - ci: add files generated by npm test to .gitignore (#5230) @bryopsida
17
+ - Handle plugin name in `plugins.getConfig` (#5276) @GogoVega
18
+ - Update express version to 4.22.1 (#5365) @hardillb
19
+ - Improved readme (#5340) @dimitrieh
20
+ - Fix race condition in projects initialization by returning gitTools.init() promise (#5315) @stoprocent
21
+
22
+ #### 4.1.1: Maintenance Release
23
+
24
+ Editor
25
+
26
+ - Filter suggestions to ensure only enabled set are shown (#5307) @GogoVega
27
+ - Show all catalog items if small enough and no search time provided (#5309) @knolleary
28
+ - Force a redraw after clearing suggested flow on mouse down (#5306) @knolleary
29
+ - i18n(NodeRed) update ES translation files to latest code base (#5299) @joebordes
30
+ - Filter suggestions to ensure only known types are shown (#5301) @knolleary
31
+ - Use the action label if provided (#5302) @GogoVega
32
+ - Handle subflow virtual port nodes when generating quick-add context (#5296) @knolleary
33
+ - Prevents label from taking up all the space for env autocomplete (#5293) @GogoVega
34
+ - Fix env autocomplete result if searchKey starts with `${` (#5292) @GogoVega
35
+ - Fix UI lock-up when typed arrays are expanded in debug window (#5290) @Steve-Mcl
36
+ - Notify installed plugins from the Palette Manager (#5277) @GogoVega
37
+ - Fix uncaught Monaco error (#5266) @Steve-Mcl
38
+ - Add 'url' module to default server-side types in Monaco editor (#5265) @Steve-Mcl
39
+ - Catch errors from RED.comms.subscribe callback (#5263) @hardillb
40
+ - Fix node documentation icon for long catalog loading (#5237) @GogoVega
41
+ - Add tooltip for event log view (#5239) @kazuhitoyokoi
42
+ - Fix undo node output changes inside a Subflow (#5278) @GogoVega
43
+
44
+ Runtime
45
+
46
+ - Ensure flow property is set on sf instance nodes so NR_SUBFLOW_PATH c… (#5297) @knolleary
47
+ - Ignore disabled nodes when checking for dependency modules (#5295) @knolleary
48
+ - Update node-red-admin version (#5294) @knolleary
49
+ - Fix config node resolution in packaged subflow within subflow (#5281) @olivierpelet
50
+ - Remove empty if block (#5273) @bonanitech
51
+ - docs: add security escalation policy (#5269) @UlisesGascon
52
+ - Simplify error logging when issue in settings file (#5310) @knolleary
53
+
54
+ Nodes
55
+
56
+ - Inject: Fix jsonata error reporting in Inject node (#5298) @knolleary
57
+ - Range: Fix rounding errors for range node when using float inputs and intege… (#5257) @dceejay
58
+ - HTTP Request: Show requesting status correctly in http request node when multiple processes are working (#5241) @kazuhitoyokoi
59
+ - Split: Speed up split node (#5252) @hardillb
60
+ - HTTP: Do not assume rawBody middleware is last in stack when moving it (#5300) @knolleary
61
+
1
62
  #### 4.1.0: Milestone Release
2
63
 
3
64
  - 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.2",
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.2",
35
+ "@node-red/runtime": "4.1.2",
36
+ "@node-red/util": "4.1.2",
37
+ "@node-red/nodes": "4.1.2",
38
38
  "basic-auth": "2.0.1",
39
39
  "bcryptjs": "3.0.2",
40
40
  "cors": "2.8.5",
41
- "express": "4.21.2",
41
+ "express": "4.22.1",
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