node-red 4.1.0-beta.2 → 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.
Files changed (3) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/package.json +6 -6
  3. package/red.js +3 -3
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
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
+
1
8
  #### 4.1.0-beta.2: Beta Release
2
9
 
3
10
  Editor
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-red",
3
- "version": "4.1.0-beta.2",
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-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",
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.0",
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
@@ -529,18 +529,18 @@ httpsPromise.then(function(startupHttps) {
529
529
  });
530
530
 
531
531
  process.on('uncaughtException',function(err) {
532
- util.log('[red] Uncaught Exception:');
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
- util.log(err.stack);
537
+ console.log(err.stack);
538
538
  }
539
539
  } else {
540
540
  try {
541
541
  RED.log.error(err);
542
542
  } catch(err2) {
543
- util.log(err);
543
+ console.log(err);
544
544
  }
545
545
  }
546
546
  process.exit(1);