node-red 2.1.3 → 2.1.4
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 +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,37 @@
|
|
|
1
|
+
#### 2.1.4: Maintenance Release
|
|
2
|
+
|
|
3
|
+
Runtime
|
|
4
|
+
|
|
5
|
+
- fix env var access using $parent for groups (#3278) @HiroyasuNishiyama
|
|
6
|
+
- Add proper error handling for 404 errors when serving debug files (#3277) @knolleary
|
|
7
|
+
- Add Japanese translations for Node-RED v2.1.0-beta.1 (#3179) @kazuhitoyokoi
|
|
8
|
+
- Include full user object on login audit events (#3269) @knolleary
|
|
9
|
+
- Remove styling from de locale files (#3237) @knolleary
|
|
10
|
+
|
|
11
|
+
Editor
|
|
12
|
+
|
|
13
|
+
- Change tab hide button icon to an eye and add search option (#3282) @knolleary
|
|
14
|
+
- Fix i18n handling of namespaces with spaces in (#3281) @knolleary
|
|
15
|
+
- Trigger change event when autoComplete fills in input (#3280) @knolleary
|
|
16
|
+
- Apply CN i18n fix (#3279) @knolleary
|
|
17
|
+
- fix select menu label of config node to use paletteLabel (#3273) @HiroyasuNishiyama
|
|
18
|
+
- fix removed tab not to cause node conflict (#3275) @HiroyasuNishiyama
|
|
19
|
+
- Group diff fix (#3239) @knolleary
|
|
20
|
+
- Only toggle disabled workspace flag if on activeWorkspace (#3252) @knolleary
|
|
21
|
+
- Do not show status for disabled nodes (#3253) @knolleary
|
|
22
|
+
- Set dimension value for tour guide (#3265) @kazuhitoyokoi
|
|
23
|
+
- Avoid redundant initialisation of TypedInput type (#3263) @knolleary
|
|
24
|
+
- Don't let themes change flow port label color (#3270) @bonanitech
|
|
25
|
+
- Fix treeList gutter calculation to handle floating gutters (#3238) @knolleary
|
|
26
|
+
|
|
27
|
+
Nodes
|
|
28
|
+
|
|
29
|
+
- Debug: Handle RegExp types in Debug sidebar (#3251) @knolleary
|
|
30
|
+
- Delay: fix 2nd output when in rate limit per topic modes (#3261) @dceejay
|
|
31
|
+
- Link: fix to show link target when selected (#3267) @HiroyasuNishiyama
|
|
32
|
+
- Inject: Do not modify inject node props in oneditprepare (#3242) @knolleary
|
|
33
|
+
- HTTP Request: HTTP Basic Auth should always add : between username and password even if empty (#3236) @hardillb
|
|
34
|
+
|
|
1
35
|
#### 2.1.3: 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.4",
|
|
4
4
|
"description": "Low-code programming for event-driven applications",
|
|
5
5
|
"homepage": "http://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": "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.4",
|
|
35
|
+
"@node-red/runtime": "2.1.4",
|
|
36
|
+
"@node-red/util": "2.1.4",
|
|
37
|
+
"@node-red/nodes": "2.1.4",
|
|
38
38
|
"basic-auth": "2.0.1",
|
|
39
39
|
"bcryptjs": "2.4.3",
|
|
40
40
|
"express": "4.17.1",
|