node-red 2.1.4 → 2.1.5
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.
- package/CHANGELOG.md +34 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,37 @@
|
|
|
1
|
+
#### 2.1.5: Maintenance Release
|
|
2
|
+
|
|
3
|
+
Runtime
|
|
4
|
+
|
|
5
|
+
- Handle reporting error location when stack is truncated (#3346) @knolleary
|
|
6
|
+
- Initialize passport when only adminAuth.tokens is set (#3343) @knolleary
|
|
7
|
+
- Add log logging (#3342) @knolleary
|
|
8
|
+
|
|
9
|
+
Editor
|
|
10
|
+
|
|
11
|
+
- Fix copy buttons on the debug window (another method) (#3331) @kazuhitoyokoi
|
|
12
|
+
- Add Japanese translations for hidden flow (#3302) @kazuhitoyokoi
|
|
13
|
+
- Improve jsonata legacy mode detection regex (#3345) @knolleary
|
|
14
|
+
- Fix generating flow name with incrementing number (#3347) @knolleary
|
|
15
|
+
- resume focus after import/export dialog close (#3337) @HiroyasuNishiyama
|
|
16
|
+
- Fix findPreviousVisibleTab action (#3321) @knolleary
|
|
17
|
+
- Fix storing hidden tab state when not hidden via action (#3312) @knolleary
|
|
18
|
+
- Avoid adding empty env properties to tabs/groups (#3311) @knolleary
|
|
19
|
+
- Fix hide icon in tour guide (#3301) @kazuhitoyokoi
|
|
20
|
+
|
|
21
|
+
Nodes
|
|
22
|
+
|
|
23
|
+
- File: Update file node examples according to node name change (#3335) @HiroyasuNishiyama
|
|
24
|
+
- Filter (RBE): Fix for filter node narrrowbandEq mode start condition failure (#3339) @dceejay
|
|
25
|
+
- Function: Prevent function scrollbar from obscuring expand button (#3348) @knolleary
|
|
26
|
+
- Function: load extralibs when expanding monaco. fixes #3319 (#3334) @Steve-Mcl
|
|
27
|
+
- Function: Update Function to use correct api to access env vars (#3310) @knolleary
|
|
28
|
+
- HTTP Request: Fix basic auth with empty username or password (#3325) @hardillb
|
|
29
|
+
- Inject: Fix incorrect clearing of blank payload property in Inject node (#3322) @knolleary
|
|
30
|
+
- Link Call: add link call example (#3336) @HiroyasuNishiyama
|
|
31
|
+
- WebSocket: Only setup ws client heartbeat once it is connected (#3344) @knolleary
|
|
32
|
+
- Update Japanese translations in node help (#3332) @kazuhitoyokoi
|
|
33
|
+
|
|
34
|
+
|
|
1
35
|
#### 2.1.4: Maintenance Release
|
|
2
36
|
|
|
3
37
|
Runtime
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-red",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.5",
|
|
4
4
|
"description": "Low-code programming for event-driven applications",
|
|
5
5
|
"homepage": "http://nodered.org",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -31,13 +31,13 @@
|
|
|
31
31
|
"flow"
|
|
32
32
|
],
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@node-red/editor-api": "2.1.
|
|
35
|
-
"@node-red/runtime": "2.1.
|
|
36
|
-
"@node-red/util": "2.1.
|
|
37
|
-
"@node-red/nodes": "2.1.
|
|
34
|
+
"@node-red/editor-api": "2.1.5",
|
|
35
|
+
"@node-red/runtime": "2.1.5",
|
|
36
|
+
"@node-red/util": "2.1.5",
|
|
37
|
+
"@node-red/nodes": "2.1.5",
|
|
38
38
|
"basic-auth": "2.0.1",
|
|
39
39
|
"bcryptjs": "2.4.3",
|
|
40
|
-
"express": "4.17.
|
|
40
|
+
"express": "4.17.2",
|
|
41
41
|
"fs-extra": "10.0.0",
|
|
42
42
|
"node-red-admin": "^2.2.1",
|
|
43
43
|
"nopt": "5.0.0",
|