node-red 4.1.1 → 4.1.3

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
+ #### 4.1.3: Maintenance Release
2
+
3
+ Editor
4
+
5
+ - 5343/Editor/Bug: Node help tab resets focus when arrow keys are used to switch between nodes (#5406) @piotrbogun
6
+ - Ensure quick-add filter is applied properly when retriggering add (#5427) @knolleary
7
+ - TreeList: Fix widget treeList keyboard navigation scroll behavior (#5421) @piotrbogun
8
+ - Editor: Flow & subflow names are changed to all lowercase in search dialog #5348 (#5401) @n-lark
9
+ - Allow actions show-next-tab and previous to loop (#5355) @GogoVega
10
+ - 5404/Editor/Bug: Junction error in Quick Add dialog (#5407) @piotrbogun
11
+ - Add tooltip to delete button in node property UI (#5410) @kazuhitoyokoi
12
+ - Fix invalid node size in quick add dialog (#5403) @kazuhitoyokoi
13
+ - Expand folder to avoid error in library (#5399) @kazuhitoyokoi
14
+ - Stricter validator for flow file name in project feature (#5398) @kazuhitoyokoi
15
+ - Fix size and scrolling in Git config UI (#5396) @kazuhitoyokoi
16
+ - Reveal node in search results via mouseover (#5368) @gorenje
17
+
18
+ Runtime
19
+
20
+ - Add package-lock.json for reproducible dependency chains (#5426) @dimitrieh
21
+ - Readme markdown refactor for legibility in IDE's (#5423) @dimitrieh
22
+ - Update body-parser (#5418) @knolleary
23
+
24
+ Nodes
25
+
26
+ - fix(http-request): prevent uncaught exceptions in async hooks (#5392) @Dennis-SEG
27
+ - Fix flushing when in variable delay mode (#5382) @dceejay
28
+ - File node TypedInput width fix (#5425) @knolleary
29
+ - Use TextDecoder() to decode UTF-8 characters (#5416) @kazuhitoyokoi
30
+ - Support source information in complete node (#5414) @kazuhitoyokoi
31
+ - Fix status node to retrieve status from all nodes (#5412) @kazuhitoyokoi
32
+ - Decrement count of http requests after error (#5409) @kazuhitoyokoi
33
+ - Fix debug tab to copy displayed value (#5400) @kazuhitoyokoi
34
+
35
+ #### 4.1.2: Maintenance Release
36
+
37
+ Editor
38
+
39
+ - Fix invalid `dirty` state during redo after deployment (#5352) @GogoVega
40
+ - Fix up port event cancelling on node-select (#5338) @knolleary
41
+ - Add selection-to-subflow context menu item (#5337) @knolleary
42
+ - Show subflow input label on virtual port (#5325) @knolleary
43
+ - Clear suggestions on node/port mouse down (#5323) @knolleary
44
+ - Fix lock icon for read-only user (#5336) @knolleary
45
+ - Fix `RED.comms.subscribe` callback on error (#5313) @GogoVega
46
+
47
+ Runtime
48
+
49
+ - ci: add files generated by npm test to .gitignore (#5230) @bryopsida
50
+ - Handle plugin name in `plugins.getConfig` (#5276) @GogoVega
51
+ - Update express version to 4.22.1 (#5365) @hardillb
52
+ - Improved readme (#5340) @dimitrieh
53
+ - Fix race condition in projects initialization by returning gitTools.init() promise (#5315) @stoprocent
54
+
1
55
  #### 4.1.1: Maintenance Release
2
56
 
3
57
  Editor
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-red",
3
- "version": "4.1.1",
3
+ "version": "4.1.3",
4
4
  "description": "Low-code programming for event-driven applications",
5
5
  "homepage": "https://nodered.org",
6
6
  "license": "Apache-2.0",
@@ -31,14 +31,14 @@
31
31
  "flow"
32
32
  ],
33
33
  "dependencies": {
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",
34
+ "@node-red/editor-api": "4.1.3",
35
+ "@node-red/runtime": "4.1.3",
36
+ "@node-red/util": "4.1.3",
37
+ "@node-red/nodes": "4.1.3",
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
43
  "node-red-admin": "^4.1.2",
44
44
  "nopt": "5.0.0",