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