node-red 4.1.2 → 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 +34 -1
  2. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,38 @@
1
- #### 4.1.2: Maintenance Release
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
2
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
3
36
 
4
37
  Editor
5
38
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-red",
3
- "version": "4.1.2",
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,10 +31,10 @@
31
31
  "flow"
32
32
  ],
33
33
  "dependencies": {
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",
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",