node-red 3.1.0 → 3.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 (2) hide show
  1. package/CHANGELOG.md +54 -0
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -1,3 +1,57 @@
1
+ #### 3.1.1: Maintenance Release
2
+
3
+ Editor
4
+
5
+ - Fix debug filter (#4461) @knolleary
6
+ - Fix various issues with debug pop-out window (#4459) @knolleary
7
+ - Ensure subflow instances keep track of their groups (#4457) @knolleary
8
+ - Fix `validateNodeProperty` without validator provided (#4455) @GogoVega
9
+ - Debounce node-removed notifications (#4453) @knolleary
10
+ - Don't try to load the parents of the first commit (#4448) @bonanitech
11
+ - Allow a theme to specifiy which theme mermaid should use (#4441) @knolleary
12
+ - Update browser title with flow name if set (#4427) @knolleary
13
+ - Ensure typeSearch handles undefined node definitions (#4423) @knolleary
14
+ - Ensure group w/h are imported if present (#4426) @knolleary
15
+ - Hide node status background when there is no status to show (#4425) @knolleary
16
+ - Add a close button to the restart-required notification (#4407) @knolleary
17
+ - Extend typedInput "num" type validity check to NaN, binary, octal & hex (#4371) @ralphwetzel
18
+ - Fix unintended new line in node name (#4399) @kazuhitoyokoi
19
+ - Ctrl-Enter does not close tray (Monaco) #4377 (#4382) @hazymat
20
+ - fix buffer viewer to handle 0b style binary (#4393) @dceejay
21
+ - Rework mermaid integration to support off-DOM rendering (#4364) @knolleary
22
+ - Add missing nls labels to context menu (#4365) @knolleary
23
+
24
+ Runtime
25
+
26
+ - Bump the github-actions group with 2 updates (#4404) @app/dependabot
27
+ - Handle unknown node reference inside subflow module (#4460) @knolleary
28
+ - Add modules.install audit event when external module installed (#4452) @knolleary
29
+ - Allow import of modules with subpath in specifier (#4451) @knolleary
30
+ - Update node-red-admin version (#4438) @knolleary
31
+ - Handle false-like env vars properly (#4411) @knolleary
32
+ - Only save settings once during node load process (#4409) @knolleary
33
+ - Ensure global-config nodes lookup cred values properly (#4405) @knolleary
34
+ - Handle credential env var evaluation when no value set (#4362) @knolleary
35
+ - Don't commit package-lock.json (#4354) @bonanitech
36
+ - Fix env evaluation when one env references another in the same object (#4361) @knolleary
37
+ - Add dependabot for Github Actions (#4312) @Rotzbua
38
+ - Update outdated Github Actions (#4311) @Rotzbua
39
+ - github: Request `npm run test` in PR template (#4348) @ZJvandeWeg
40
+ - Add French translation of v3.1.0-beta.4 changes + slight improvements (#4329) @GogoVega
41
+ - Handle nodes with multiple input handlers properly (#4332) @knolleary
42
+ - Soften the language around unrequited PRs (#4351) @knolleary
43
+
44
+ Nodes
45
+
46
+ - CSV: make CSV export way faster by not re-allocating and handling huge string (#4349) @Fadoli
47
+ - Delay: Fix regression in delay node to not pass on msg.reset (#4350) @dceejay
48
+ - Link Call: Handle undefined linkType value for existing link-call nodes (#4331) @knolleary
49
+ - MQTT: Guard against node.broker being undefined (#4454) @knolleary
50
+ - MQTT: check topic length > 0 before publish (#4416) @dceejay
51
+ - Switch/Change: Improve validation of switch/change node rules (#4368) @knolleary
52
+ - Template: Fix height of description editor in template node (#4346) @kazuhitoyokoi
53
+ - Various: Add validators to any fields using msg-typed Input (#4440) @knolleary
54
+
1
55
  #### 3.1.0: Milestone Release
2
56
 
3
57
  Editor
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-red",
3
- "version": "3.1.0",
3
+ "version": "3.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,15 +31,15 @@
31
31
  "flow"
32
32
  ],
33
33
  "dependencies": {
34
- "@node-red/editor-api": "3.1.0",
35
- "@node-red/runtime": "3.1.0",
36
- "@node-red/util": "3.1.0",
37
- "@node-red/nodes": "3.1.0",
34
+ "@node-red/editor-api": "3.1.1",
35
+ "@node-red/runtime": "3.1.1",
36
+ "@node-red/util": "3.1.1",
37
+ "@node-red/nodes": "3.1.1",
38
38
  "basic-auth": "2.0.1",
39
39
  "bcryptjs": "2.4.3",
40
40
  "express": "4.18.2",
41
41
  "fs-extra": "11.1.1",
42
- "node-red-admin": "^3.1.0",
42
+ "node-red-admin": "^3.1.1",
43
43
  "nopt": "5.0.0",
44
44
  "semver": "7.5.4"
45
45
  },