node-red 2.1.2 → 2.1.6

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 (3) hide show
  1. package/CHANGELOG.md +97 -0
  2. package/package.json +6 -6
  3. package/red.js +5 -0
package/CHANGELOG.md CHANGED
@@ -1,3 +1,100 @@
1
+ #### 2.1.6: Maintenance Release
2
+
3
+ Editor
4
+
5
+ - Revert copy-text change and apply alternative fix (#3363) @knolleary
6
+ - Update marked to latest (#3362) @knolleary
7
+ - fix to make start of property error tooltip messages aligned (#3358) @HiroyasuNishiyama
8
+
9
+ Nodes
10
+
11
+ - Inject: fix JSON propety validation of inject node (#3349) @HiroyasuNishiyama
12
+ - Delay: fix unit value validation of delay node (#3351) @HiroyasuNishiyama
13
+
14
+ #### 2.1.5: Maintenance Release
15
+
16
+ Runtime
17
+
18
+ - Handle reporting error location when stack is truncated (#3346) @knolleary
19
+ - Initialize passport when only adminAuth.tokens is set (#3343) @knolleary
20
+ - Add log logging (#3342) @knolleary
21
+
22
+ Editor
23
+
24
+ - Fix copy buttons on the debug window (another method) (#3331) @kazuhitoyokoi
25
+ - Add Japanese translations for hidden flow (#3302) @kazuhitoyokoi
26
+ - Improve jsonata legacy mode detection regex (#3345) @knolleary
27
+ - Fix generating flow name with incrementing number (#3347) @knolleary
28
+ - resume focus after import/export dialog close (#3337) @HiroyasuNishiyama
29
+ - Fix findPreviousVisibleTab action (#3321) @knolleary
30
+ - Fix storing hidden tab state when not hidden via action (#3312) @knolleary
31
+ - Avoid adding empty env properties to tabs/groups (#3311) @knolleary
32
+ - Fix hide icon in tour guide (#3301) @kazuhitoyokoi
33
+
34
+ Nodes
35
+
36
+ - File: Update file node examples according to node name change (#3335) @HiroyasuNishiyama
37
+ - Filter (RBE): Fix for filter node narrrowbandEq mode start condition failure (#3339) @dceejay
38
+ - Function: Prevent function scrollbar from obscuring expand button (#3348) @knolleary
39
+ - Function: load extralibs when expanding monaco. fixes #3319 (#3334) @Steve-Mcl
40
+ - Function: Update Function to use correct api to access env vars (#3310) @knolleary
41
+ - HTTP Request: Fix basic auth with empty username or password (#3325) @hardillb
42
+ - Inject: Fix incorrect clearing of blank payload property in Inject node (#3322) @knolleary
43
+ - Link Call: add link call example (#3336) @HiroyasuNishiyama
44
+ - WebSocket: Only setup ws client heartbeat once it is connected (#3344) @knolleary
45
+ - Update Japanese translations in node help (#3332) @kazuhitoyokoi
46
+
47
+
48
+ #### 2.1.4: Maintenance Release
49
+
50
+ Runtime
51
+
52
+ - fix env var access using $parent for groups (#3278) @HiroyasuNishiyama
53
+ - Add proper error handling for 404 errors when serving debug files (#3277) @knolleary
54
+ - Add Japanese translations for Node-RED v2.1.0-beta.1 (#3179) @kazuhitoyokoi
55
+ - Include full user object on login audit events (#3269) @knolleary
56
+ - Remove styling from de locale files (#3237) @knolleary
57
+
58
+ Editor
59
+
60
+ - Change tab hide button icon to an eye and add search option (#3282) @knolleary
61
+ - Fix i18n handling of namespaces with spaces in (#3281) @knolleary
62
+ - Trigger change event when autoComplete fills in input (#3280) @knolleary
63
+ - Apply CN i18n fix (#3279) @knolleary
64
+ - fix select menu label of config node to use paletteLabel (#3273) @HiroyasuNishiyama
65
+ - fix removed tab not to cause node conflict (#3275) @HiroyasuNishiyama
66
+ - Group diff fix (#3239) @knolleary
67
+ - Only toggle disabled workspace flag if on activeWorkspace (#3252) @knolleary
68
+ - Do not show status for disabled nodes (#3253) @knolleary
69
+ - Set dimension value for tour guide (#3265) @kazuhitoyokoi
70
+ - Avoid redundant initialisation of TypedInput type (#3263) @knolleary
71
+ - Don't let themes change flow port label color (#3270) @bonanitech
72
+ - Fix treeList gutter calculation to handle floating gutters (#3238) @knolleary
73
+
74
+ Nodes
75
+
76
+ - Debug: Handle RegExp types in Debug sidebar (#3251) @knolleary
77
+ - Delay: fix 2nd output when in rate limit per topic modes (#3261) @dceejay
78
+ - Link: fix to show link target when selected (#3267) @HiroyasuNishiyama
79
+ - Inject: Do not modify inject node props in oneditprepare (#3242) @knolleary
80
+ - HTTP Request: HTTP Basic Auth should always add : between username and password even if empty (#3236) @hardillb
81
+
82
+ #### 2.1.3: Maintenance Release
83
+
84
+ Runtime
85
+
86
+ - Update gen-publish script to update 'next' tag for main releases
87
+ - Add environment variable to enable/disable tours (#3221) @hardillb
88
+ - Fix loading non-default language files leaving runtime in wrong locale (#3225) @knolleary
89
+
90
+ Editor
91
+
92
+ - Refresh editor settings whenever a node is added or enabled (#3227) @knolleary
93
+ - Revert spinner css change that made it shrink in some cases (#3229) @knolleary
94
+ - Fix import notification message when importing config nodes (#3224) @knolleary
95
+ - Handle changing types of TypedInput repeatedly (#3223) @knolleary
96
+
97
+
1
98
  #### 2.1.2: Maintenance Release
2
99
 
3
100
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-red",
3
- "version": "2.1.2",
3
+ "version": "2.1.6",
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.2",
35
- "@node-red/runtime": "2.1.2",
36
- "@node-red/util": "2.1.2",
37
- "@node-red/nodes": "2.1.2",
34
+ "@node-red/editor-api": "2.1.6",
35
+ "@node-red/runtime": "2.1.6",
36
+ "@node-red/util": "2.1.6",
37
+ "@node-red/nodes": "2.1.6",
38
38
  "basic-auth": "2.0.1",
39
39
  "bcryptjs": "2.4.3",
40
- "express": "4.17.1",
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",
package/red.js CHANGED
@@ -194,6 +194,11 @@ if (process.env.NODE_RED_ENABLE_PROJECTS) {
194
194
  settings.editorTheme.projects.enabled = !/^false$/i.test(process.env.NODE_RED_ENABLE_PROJECTS);
195
195
  }
196
196
 
197
+ if (process.env.NODE_RED_ENABLE_TOURS) {
198
+ settings.editorTheme = settings.editorTheme || {};
199
+ settings.editorTheme.tours = !/^false$/i.test(process.env.NODE_RED_ENABLE_TOURS);
200
+ }
201
+
197
202
 
198
203
  var defaultServerSettings = {
199
204
  "x-powered-by": false