@node-red/editor-client 3.0.0-beta.4 → 3.0.0
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/locales/en-US/editor.json +4 -0
- package/locales/ja/editor.json +16 -4
- package/package.json +1 -1
- package/public/red/about +40 -522
- package/public/red/keymap.json +15 -13
- package/public/red/red.js +174 -77
- package/public/red/red.min.js +2 -2
- package/public/red/style.min.css +2 -2
- package/public/red/tours/welcome.js +5 -5
- package/public/vendor/vendor.js +3 -3
|
@@ -300,6 +300,10 @@
|
|
|
300
300
|
"modifiedFlowsDesc": "Only deploys flows that contain changed nodes",
|
|
301
301
|
"modifiedNodes": "Modified Nodes",
|
|
302
302
|
"modifiedNodesDesc": "Only deploys nodes that have changed",
|
|
303
|
+
"startFlows": "Start",
|
|
304
|
+
"startFlowsDesc": "Start Flows",
|
|
305
|
+
"stopFlows": "Stop",
|
|
306
|
+
"stopFlowsDesc": "Stop Flows",
|
|
303
307
|
"restartFlows": "Restart Flows",
|
|
304
308
|
"restartFlowsDesc": "Restarts the current deployed flows",
|
|
305
309
|
"successfulDeploy": "Successfully deployed",
|
package/locales/ja/editor.json
CHANGED
|
@@ -169,6 +169,10 @@
|
|
|
169
169
|
}
|
|
170
170
|
},
|
|
171
171
|
"notification": {
|
|
172
|
+
"state": {
|
|
173
|
+
"flowsStopped": "フローを停止しました",
|
|
174
|
+
"flowsStarted": "フローを開始しました"
|
|
175
|
+
},
|
|
172
176
|
"warning": "<strong>警告</strong>: __message__",
|
|
173
177
|
"warnings": {
|
|
174
178
|
"undeployedChanges": "ノードの変更をデプロイしていません",
|
|
@@ -296,6 +300,10 @@
|
|
|
296
300
|
"modifiedFlowsDesc": "変更したノードを含むフローのみデプロイ",
|
|
297
301
|
"modifiedNodes": "変更したノード",
|
|
298
302
|
"modifiedNodesDesc": "変更したノードのみデプロイ",
|
|
303
|
+
"startFlows": "開始",
|
|
304
|
+
"startFlowsDesc": "フローを開始",
|
|
305
|
+
"stopFlows": "停止",
|
|
306
|
+
"stopFlowsDesc": "フローを停止",
|
|
299
307
|
"restartFlows": "フローを再起動",
|
|
300
308
|
"restartFlowsDesc": "デプロイされた現在のフローを再起動",
|
|
301
309
|
"successfulDeploy": "デプロイが成功しました",
|
|
@@ -685,7 +693,8 @@
|
|
|
685
693
|
"showHelp": "ヘルプを表示",
|
|
686
694
|
"showInOutline": "アウトラインに表示",
|
|
687
695
|
"showTopics": "トピックを表示",
|
|
688
|
-
"noHelp": "ヘルプのトピックが未選択"
|
|
696
|
+
"noHelp": "ヘルプのトピックが未選択",
|
|
697
|
+
"changeLog": "更新履歴"
|
|
689
698
|
},
|
|
690
699
|
"config": {
|
|
691
700
|
"name": "設定ノードを表示",
|
|
@@ -845,7 +854,7 @@
|
|
|
845
854
|
"pushFailed": "リモートに新しいコミットがあるため、プッシュに失敗しました。プルしてマージしてから、再度プッシュしてください。",
|
|
846
855
|
"push": "プッシュ",
|
|
847
856
|
"pull": "プル",
|
|
848
|
-
"unablePull": "<p
|
|
857
|
+
"unablePull": "<p>リモートの変更のプル失敗:ステージングされていないローカルの変更が上書きされてしまいます。</p><p>変更をコミットしてから再度実行してください。</p>",
|
|
849
858
|
"showUnstagedChanges": "ステージングされていない変更を表示",
|
|
850
859
|
"connectionFailed": "リモートリポジトリに接続できません: ",
|
|
851
860
|
"pullUnrelatedHistory": "<p>リモートに関連のないコミット履歴があります。</p><p>本当に変更をプルしてローカルリポジトリに反映しますか?</p>",
|
|
@@ -1159,7 +1168,8 @@
|
|
|
1159
1168
|
"takeATour": "ツアーを開始",
|
|
1160
1169
|
"start": "開始",
|
|
1161
1170
|
"next": "次へ",
|
|
1162
|
-
|
|
1171
|
+
"welcomeTours": "ウェルカムツアー",
|
|
1172
|
+
"tours": "ツアー"
|
|
1163
1173
|
},
|
|
1164
1174
|
"diagnostics": {
|
|
1165
1175
|
"title": "システム情報"
|
|
@@ -1336,6 +1346,8 @@
|
|
|
1336
1346
|
"new-project": "新しいプロジェクト",
|
|
1337
1347
|
"open-project": "プロジェクトを開く",
|
|
1338
1348
|
"show-project-settings": "プロジェクト設定を表示",
|
|
1339
|
-
"show-version-control-tab": "バージョンコントロールタブを表示"
|
|
1349
|
+
"show-version-control-tab": "バージョンコントロールタブを表示",
|
|
1350
|
+
"start-flows": "フローを開始",
|
|
1351
|
+
"stop-flows": "フローを停止"
|
|
1340
1352
|
}
|
|
1341
1353
|
}
|
package/package.json
CHANGED
package/public/red/about
CHANGED
|
@@ -1,7 +1,46 @@
|
|
|
1
|
+
#### 3.0.0: Milestone Release
|
|
2
|
+
|
|
3
|
+
Editor
|
|
4
|
+
|
|
5
|
+
- Use theme page and header values if settings.js values are not present (#3767) @Steve-Mcl
|
|
6
|
+
- Focus editor for undo after some actions in menu (#3759) @kazuhitoyokoi
|
|
7
|
+
- Ensure node icon shade has properly rounded corners (#3763) @knolleary
|
|
8
|
+
- Fix storing subflow credential type when input has multiple types (#3762) @knolleary
|
|
9
|
+
- Ensure global-config and flow-config have info in the hierarchy popover (#3752) @Steve-Mcl
|
|
10
|
+
- Include dirty state in history event (#3748) @Steve-Mcl
|
|
11
|
+
- Fix display direction of context sub-menu (#3746) @knolleary
|
|
12
|
+
- Fix clear pinned paths of debug sidebar menu (#3745) @HiroyasuNishiyama
|
|
13
|
+
- prevent exception generating tooltip for deleted nodes (#3742) @Steve-Mcl
|
|
14
|
+
- Fix context menu issues ready for v3 beta.5 (#3741) @Steve-Mcl
|
|
15
|
+
- Do not generate new node-ids when pasting a cut flow (#3729) @knolleary
|
|
16
|
+
- Fix to prevent node from moving out of workspace (#3731) @HiroyasuNishiyama
|
|
17
|
+
- Don't let themes change disabled config node background color (#3736) @bonanitech
|
|
18
|
+
- Move colors left behind in #3692 to CSS variables (#3737) @bonanitech
|
|
19
|
+
- Fix handling of global debug message (#3733) @HiroyasuNishiyama
|
|
20
|
+
- Fix label overflow @ config-node palette (#3730) @ralphwetzel
|
|
21
|
+
- Fix defaulting to monaco if settings does not contain codeEditor (#3732) @knolleary
|
|
22
|
+
- Disable keyboard shortcut mapping when showing Edit[..]Dialog (#3700) @ralphwetzel
|
|
23
|
+
- Update add-junction menu to work in more cases (#3727) @knolleary
|
|
24
|
+
- Ensure importMap is not null when using import UI (#3723) @Steve-Mcl
|
|
25
|
+
- Add Japanese translations for v3.0-beta.4 (#3724) @kazuhitoyokoi
|
|
26
|
+
- Fix "split with" on virtual links (#3766) @Steve-Mcl
|
|
27
|
+
|
|
28
|
+
Runtime
|
|
29
|
+
|
|
30
|
+
- Do not remove unknown credentials of Subflow Modules (#3728) @knolleary
|
|
31
|
+
- Add missing entries from beta.4 changelog (#3721) @knolleary
|
|
32
|
+
|
|
33
|
+
Nodes
|
|
34
|
+
|
|
35
|
+
- Change: Fix change node, not handling from field properly when using context (#3754) @Fadoli
|
|
36
|
+
- Link Call: Fix linkcall registry bugs (#3751) @Steve-Mcl
|
|
37
|
+
- WebSocket: Fix close timeout of websocket node (#3734) @HiroyasuNishiyama
|
|
38
|
+
|
|
1
39
|
#### 3.0.0-beta.4: Beta Release
|
|
2
40
|
|
|
3
41
|
Editor
|
|
4
42
|
|
|
43
|
+
- Move all colours to CSS variables (#3692) @bonanitech
|
|
5
44
|
- Fix clicking on node in workspace to hide context menu (#3696) @knolleary
|
|
6
45
|
- Fix credential type input item of subflow template (#3703) @HiroyasuNishiyama
|
|
7
46
|
- Add option flag `reimport` to `importNodes` (#3718) @Steve-Mcl
|
|
@@ -22,6 +61,7 @@ Editor
|
|
|
22
61
|
|
|
23
62
|
Runtime
|
|
24
63
|
|
|
64
|
+
- Allow flows to be stopped and started manually (#3719) @knolleary
|
|
25
65
|
- Import default export if node is a transpiled es module (#3669) @dschmidt
|
|
26
66
|
- Leave Monaco theme commented out by default (#3704) @bonanitech
|
|
27
67
|
|
|
@@ -183,528 +223,6 @@ Nodes
|
|
|
183
223
|
- Watch: Update Watch node to use node-watch module (#3559 #3569) @knolleary
|
|
184
224
|
- WebSocket: call done after ws disconnects (#3531) @Steve-Mcl
|
|
185
225
|
|
|
186
|
-
|
|
187
|
-
#### 2.2.2: Maintenance Release
|
|
188
|
-
|
|
189
|
-
Nodes
|
|
190
|
-
|
|
191
|
-
- Fix "close timed out" error when performing full deploy or modifying broker node. (#3451) @Steve-Mcl
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
#### 2.2.1: Maintenance Release
|
|
195
|
-
|
|
196
|
-
Editor
|
|
197
|
-
|
|
198
|
-
- Handle mixed-cased filter terms in keyboard shortcut dialog (#3444) @knolleary
|
|
199
|
-
- Prevent duplicate links being added between nodes (#3442) @knolleary
|
|
200
|
-
- Fix to hide tooltip after removing subflow tab (#3391) @HiroyasuNishiyama
|
|
201
|
-
- Fix node validation to be applied to config node (#3397) @HiroyasuNishiyama
|
|
202
|
-
- Fix: Dont add wires to undo buffer twice (#3437) @Steve-Mcl
|
|
203
|
-
|
|
204
|
-
Runtime
|
|
205
|
-
|
|
206
|
-
- Improve module location parsing (of stack info) when adding hook (#3447) @Steve-Mcl
|
|
207
|
-
- Fix substitution of NR_NODE_PATH (#3445) @HiroyasuNishiyama
|
|
208
|
-
- Remove console.log when ignoring disabled module (#3439) @knolleary
|
|
209
|
-
- Improve "Unexpected Node Error" logging (#3446) @Steve-Mcl
|
|
210
|
-
|
|
211
|
-
Nodes
|
|
212
|
-
|
|
213
|
-
- Debug: Fix no-prototype-builtins bug in debug node and utils (#3394) @Alkarex
|
|
214
|
-
- Delay: Fix Japanese message of delay node (#3434)
|
|
215
|
-
- Allow nbRateUnits to be undefined when validating (#3443) @knolleary
|
|
216
|
-
- Coding help for recently added node-red Predefined Environment Variables (#3440) @Steve-Mcl
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
#### 2.2.0: Milestone Release
|
|
220
|
-
|
|
221
|
-
Editor
|
|
222
|
-
|
|
223
|
-
- Add editorTheme.tours property to default settings file (#3375) @knolleary
|
|
224
|
-
- Remember Zoom level and Sidebar tab selection between sessions (#3361) @knolleary
|
|
225
|
-
- Fix timing issue when merging background changes fixes #3364 (#3373) @Steve-Mcl
|
|
226
|
-
- Use a nodes palette label in help tree (#3372) @Steve-Mcl
|
|
227
|
-
- Subflow: Add labels to OUTPUT nodes (#3352) @ralphwetzel
|
|
228
|
-
- Fix vertical align subflow port (#3370) @knolleary
|
|
229
|
-
- Make actions list i18n ready and Japanese translation (#3359) @HiroyasuNishiyama
|
|
230
|
-
- Update tour for 2.2.0 (#3378) @knolleary
|
|
231
|
-
- Include paletteLabel when building search index (#3380) @Steve-Mcl
|
|
232
|
-
- Fix opening/closing subflow template not to make subflow changed (#3382) @HiroyasuNishiyama
|
|
233
|
-
- Add Japanese translations for v2.2.0 (#3353, #3381) @kazuhitoyokoi
|
|
234
|
-
|
|
235
|
-
Runtime
|
|
236
|
-
|
|
237
|
-
- Add support for accessing node id & name as environment variable (#3356) @HiroyasuNishiyama
|
|
238
|
-
- Clear context contents when switching projects (#3243) @knolleary
|
|
239
|
-
|
|
240
|
-
Nodes
|
|
241
|
-
|
|
242
|
-
- MQTT: reject invalid topics (#3374) @Steve-Mcl
|
|
243
|
-
- Function: Expose node.path property (#3371) @knolleary
|
|
244
|
-
- Function: Update `node` declarations in func.d.ts (#3377) @Steve-Mcl
|
|
245
|
-
|
|
246
|
-
#### 2.2.0-beta.1: Beta Release
|
|
247
|
-
|
|
248
|
-
Editor
|
|
249
|
-
|
|
250
|
-
- Add search history to main search box (#3262) @knolleary
|
|
251
|
-
- Check availability of type of config node on deploy (#3304) @k-toumura
|
|
252
|
-
- Add wire-slice mode to delete wires with Ctrl-RHClick-Drag (#3340) @knolleary
|
|
253
|
-
- Wiring keyboard shortcuts (#3288) @knolleary
|
|
254
|
-
- Snap nodes on grid using either edge as reference (#3289) @knolleary
|
|
255
|
-
- Detach node action (#3338) @knolleary
|
|
256
|
-
- Highlight links when selecting nodes (#3323) @knolleary
|
|
257
|
-
- Allow multiple links to be selected by ctrl-click (#3294) @knolleary
|
|
258
|
-
|
|
259
|
-
Nodes
|
|
260
|
-
|
|
261
|
-
- JSON: Let JSON node attempt to parse buffer if it contains a valid string (#3296) @dceejay
|
|
262
|
-
- Remove use of verbose flag in core nodes - and use node.debug level instead (#3300) @dceejay
|
|
263
|
-
- TCP: Add TLS option to tcp client nodes (#3307) @dceejay
|
|
264
|
-
- WebSocket: Implemented support for Websocket Subprotocols in WS Client Node. (#3333) @tobiasoort
|
|
265
|
-
|
|
266
|
-
#### 2.1.6: Maintenance Release
|
|
267
|
-
|
|
268
|
-
Editor
|
|
269
|
-
|
|
270
|
-
- Revert copy-text change and apply alternative fix (#3363) @knolleary
|
|
271
|
-
- Update marked to latest (#3362) @knolleary
|
|
272
|
-
- fix to make start of property error tooltip messages aligned (#3358) @HiroyasuNishiyama
|
|
273
|
-
|
|
274
|
-
Nodes
|
|
275
|
-
|
|
276
|
-
- Inject: fix JSON propety validation of inject node (#3349) @HiroyasuNishiyama
|
|
277
|
-
- Delay: fix unit value validation of delay node (#3351) @HiroyasuNishiyama
|
|
278
|
-
|
|
279
|
-
#### 2.1.5: Maintenance Release
|
|
280
|
-
|
|
281
|
-
Runtime
|
|
282
|
-
|
|
283
|
-
- Handle reporting error location when stack is truncated (#3346) @knolleary
|
|
284
|
-
- Initialize passport when only adminAuth.tokens is set (#3343) @knolleary
|
|
285
|
-
- Add log logging (#3342) @knolleary
|
|
286
|
-
|
|
287
|
-
Editor
|
|
288
|
-
|
|
289
|
-
- Fix copy buttons on the debug window (another method) (#3331) @kazuhitoyokoi
|
|
290
|
-
- Add Japanese translations for hidden flow (#3302) @kazuhitoyokoi
|
|
291
|
-
- Improve jsonata legacy mode detection regex (#3345) @knolleary
|
|
292
|
-
- Fix generating flow name with incrementing number (#3347) @knolleary
|
|
293
|
-
- resume focus after import/export dialog close (#3337) @HiroyasuNishiyama
|
|
294
|
-
- Fix findPreviousVisibleTab action (#3321) @knolleary
|
|
295
|
-
- Fix storing hidden tab state when not hidden via action (#3312) @knolleary
|
|
296
|
-
- Avoid adding empty env properties to tabs/groups (#3311) @knolleary
|
|
297
|
-
- Fix hide icon in tour guide (#3301) @kazuhitoyokoi
|
|
298
|
-
|
|
299
|
-
Nodes
|
|
300
|
-
|
|
301
|
-
- File: Update file node examples according to node name change (#3335) @HiroyasuNishiyama
|
|
302
|
-
- Filter (RBE): Fix for filter node narrrowbandEq mode start condition failure (#3339) @dceejay
|
|
303
|
-
- Function: Prevent function scrollbar from obscuring expand button (#3348) @knolleary
|
|
304
|
-
- Function: load extralibs when expanding monaco. fixes #3319 (#3334) @Steve-Mcl
|
|
305
|
-
- Function: Update Function to use correct api to access env vars (#3310) @knolleary
|
|
306
|
-
- HTTP Request: Fix basic auth with empty username or password (#3325) @hardillb
|
|
307
|
-
- Inject: Fix incorrect clearing of blank payload property in Inject node (#3322) @knolleary
|
|
308
|
-
- Link Call: add link call example (#3336) @HiroyasuNishiyama
|
|
309
|
-
- WebSocket: Only setup ws client heartbeat once it is connected (#3344) @knolleary
|
|
310
|
-
- Update Japanese translations in node help (#3332) @kazuhitoyokoi
|
|
311
|
-
|
|
312
|
-
#### 2.1.4: Maintenance Release
|
|
313
|
-
|
|
314
|
-
Runtime
|
|
315
|
-
|
|
316
|
-
- fix env var access using $parent for groups (#3278) @HiroyasuNishiyama
|
|
317
|
-
- Add proper error handling for 404 errors when serving debug files (#3277) @knolleary
|
|
318
|
-
- Add Japanese translations for Node-RED v2.1.0-beta.1 (#3179) @kazuhitoyokoi
|
|
319
|
-
- Include full user object on login audit events (#3269) @knolleary
|
|
320
|
-
- Remove styling from de locale files (#3237) @knolleary
|
|
321
|
-
|
|
322
|
-
Editor
|
|
323
|
-
|
|
324
|
-
- Change tab hide button icon to an eye and add search option (#3282) @knolleary
|
|
325
|
-
- Fix i18n handling of namespaces with spaces in (#3281) @knolleary
|
|
326
|
-
- Trigger change event when autoComplete fills in input (#3280) @knolleary
|
|
327
|
-
- Apply CN i18n fix (#3279) @knolleary
|
|
328
|
-
- fix select menu label of config node to use paletteLabel (#3273) @HiroyasuNishiyama
|
|
329
|
-
- fix removed tab not to cause node conflict (#3275) @HiroyasuNishiyama
|
|
330
|
-
- Group diff fix (#3239) @knolleary
|
|
331
|
-
- Only toggle disabled workspace flag if on activeWorkspace (#3252) @knolleary
|
|
332
|
-
- Do not show status for disabled nodes (#3253) @knolleary
|
|
333
|
-
- Set dimension value for tour guide (#3265) @kazuhitoyokoi
|
|
334
|
-
- Avoid redundant initialisation of TypedInput type (#3263) @knolleary
|
|
335
|
-
- Don't let themes change flow port label color (#3270) @bonanitech
|
|
336
|
-
- Fix treeList gutter calculation to handle floating gutters (#3238) @knolleary
|
|
337
|
-
|
|
338
|
-
Nodes
|
|
339
|
-
|
|
340
|
-
- Debug: Handle RegExp types in Debug sidebar (#3251) @knolleary
|
|
341
|
-
- Delay: fix 2nd output when in rate limit per topic modes (#3261) @dceejay
|
|
342
|
-
- Link: fix to show link target when selected (#3267) @HiroyasuNishiyama
|
|
343
|
-
- Inject: Do not modify inject node props in oneditprepare (#3242) @knolleary
|
|
344
|
-
- HTTP Request: HTTP Basic Auth should always add : between username and password even if empty (#3236) @hardillb
|
|
345
|
-
|
|
346
|
-
#### 2.1.3: Maintenance Release
|
|
347
|
-
|
|
348
|
-
Runtime
|
|
349
|
-
|
|
350
|
-
- Update gen-publish script to update 'next' tag for main releases
|
|
351
|
-
- Add environment variable to enable/disable tours (#3221) @hardillb
|
|
352
|
-
- Fix loading non-default language files leaving runtime in wrong locale (#3225) @knolleary
|
|
353
|
-
|
|
354
|
-
Editor
|
|
355
|
-
|
|
356
|
-
- Refresh editor settings whenever a node is added or enabled (#3227) @knolleary
|
|
357
|
-
- Revert spinner css change that made it shrink in some cases (#3229) @knolleary
|
|
358
|
-
- Fix import notification message when importing config nodes (#3224) @knolleary
|
|
359
|
-
- Handle changing types of TypedInput repeatedly (#3223) @knolleary
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
#### 2.1.2: Maintenance Release
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
Runtime
|
|
366
|
-
|
|
367
|
-
- node-red-pi: Remove bash dependency (#3216) @a16bitsysop
|
|
368
|
-
|
|
369
|
-
Editor
|
|
370
|
-
|
|
371
|
-
- Improved regex for markdown renderer (#3213) @GerwinvBeek
|
|
372
|
-
- Fix TypedInput initialisation (#3220) @knolleary
|
|
373
|
-
|
|
374
|
-
Nodes
|
|
375
|
-
|
|
376
|
-
- MQTT: fix datatype in node config not used. fixes #3215 (#3219) @Steve-Mcl
|
|
377
|
-
|
|
378
|
-
#### 2.1.1: Maintenance Release
|
|
379
|
-
|
|
380
|
-
Editor
|
|
381
|
-
|
|
382
|
-
- Ensure tourGuide popover doesn't fall offscreen (#3212) @knolleary
|
|
383
|
-
- Fix issue with old inject nodes that migrated topic to 'string' type (#3210) @knolleary
|
|
384
|
-
- Add cache-busting query params to index.mst (#3211) @knolleary
|
|
385
|
-
- Fix TypedInput validation of type without options (#3207) @knolleary
|
|
386
|
-
|
|
387
|
-
#### 2.1.0: Milestone Release
|
|
388
|
-
|
|
389
|
-
Editor
|
|
390
|
-
|
|
391
|
-
- Position popover properly on a scrolled page
|
|
392
|
-
- Fixes from 2.1.0-beta.2 (#3202) @knolleary
|
|
393
|
-
|
|
394
|
-
Nodes
|
|
395
|
-
|
|
396
|
-
- Link Out: Fix saving link out node links (#3201) @knolleary
|
|
397
|
-
- Switch: Refix #3170 - copy switch rule type when adding new rule
|
|
398
|
-
- TCP Request: Add string option to TCP request node output (#3204) @dceejay
|
|
399
|
-
|
|
400
|
-
#### 2.1.0-beta.2: Beta Release
|
|
401
|
-
|
|
402
|
-
Editor
|
|
403
|
-
|
|
404
|
-
- Fix switching projects (#3199) @knolleary
|
|
405
|
-
- Use locale setting when installing/enabling node (#3198) @knolleary
|
|
406
|
-
- Do not show projects-wecome dialog until welcome tour completes (#3197) @knolleary
|
|
407
|
-
- Fix converting selection to subflow (#3196) @knolleary
|
|
408
|
-
- Avoid conflicts with native browser cmd-ctrl type shortcuts (#3195) @knolleary
|
|
409
|
-
- Ensure message tools stay attached to top-level entry in Debug/Context (#3186) @knolleary
|
|
410
|
-
- Ensure tab state updates properly when toggling enable state (#3175) @knolleary
|
|
411
|
-
- Improve handling of long labels in TreeList (#3176) @knolleary
|
|
412
|
-
- Shift-click tab scroll arrows to jump to start/end (#3177) @knolleary
|
|
413
|
-
|
|
414
|
-
Runtime
|
|
415
|
-
|
|
416
|
-
- Update package dependencies
|
|
417
|
-
- Update to latest node-red-admin
|
|
418
|
-
|
|
419
|
-
Nodes
|
|
420
|
-
|
|
421
|
-
- Dynamic MQTT connections (#3189)
|
|
422
|
-
- Link: Filter out Link Out Return nodes in Link In edit dialog Fixes #3187
|
|
423
|
-
- Link: Fix link call label (#3200) @knolleary
|
|
424
|
-
- Debug: Redesign debug filter options and make them persistant (#3183) @knolleary
|
|
425
|
-
- Inject: Widen Inject interval box for >1 digit (#3184) @knolleary
|
|
426
|
-
- Switch: Fix rule focus when switch 'otherwise' rule is used (#3185) @knolleary
|
|
427
|
-
|
|
428
|
-
#### 2.1.0-beta.1: Beta Release
|
|
429
|
-
|
|
430
|
-
Editor
|
|
431
|
-
|
|
432
|
-
- Add Tour Guide component (#3136) @knolleary
|
|
433
|
-
- Allow tabs to be hidden (#3120) @knolleary
|
|
434
|
-
- Add align actions to editor (#3110) @knolleary
|
|
435
|
-
- Add support of environment variable for tab & group (#3112) @HiroyasuNishiyama
|
|
436
|
-
- Add autoComplete widget and add to TypedInput for msg. props (#3171) @knolleary
|
|
437
|
-
- Render node documentation to node-red style guide when written in markdown. (#3169) @Steve-Mcl
|
|
438
|
-
- Allow colouring of tab icon svg (#3140) @harmonic7
|
|
439
|
-
- Restore tab selection after merging conflicts (#3151) @GerwinvBeek
|
|
440
|
-
- Fix serving of theme files on Windows (#3154) @knolleary
|
|
441
|
-
- Ensure config-node select inherits width properly from input (#3155) @knolleary
|
|
442
|
-
- Do better remembering TypedInput values whilst switching types (#3159) @knolleary
|
|
443
|
-
- Update monaco to 0.28.1 (#3153) @knolleary
|
|
444
|
-
- Improve themeing of tourGuide (#3161) @knolleary
|
|
445
|
-
- Allow a node to specify a filter for the config nodes it can pick from (#3160) @knolleary
|
|
446
|
-
- Allow RED.notify.update to modify any notification setting (#3163) @knolleary
|
|
447
|
-
- Fix typo in ko editor.json Fixes #3119
|
|
448
|
-
- Improve RED.actions api to ensure actions cannot be overridden
|
|
449
|
-
- Ensure treeList row has suitable min-height when no content Fixes #3109
|
|
450
|
-
- Refactor edit dialogs to use separate edit panes
|
|
451
|
-
- Ensure type select button is not focussable when TypedInput only has one type
|
|
452
|
-
- Place close tab link in front of fade
|
|
453
|
-
|
|
454
|
-
Runtime
|
|
455
|
-
|
|
456
|
-
- Improve error reporting with oauth login strategies (#3148) @knolleary
|
|
457
|
-
- Add allowUpdate feature to externalModules.palette (#3143) @knolleary
|
|
458
|
-
- Improve node install error reporting (#3158) @knolleary
|
|
459
|
-
- Improve unit test coverage (#3168) @knolleary
|
|
460
|
-
- Allow coreNodesDir to be set to false (#3149) @hardillb
|
|
461
|
-
- Update package dependencies
|
|
462
|
-
- uncaughtException debug improvements (#3146) @renatojuniorrs
|
|
463
|
-
|
|
464
|
-
Nodes
|
|
465
|
-
|
|
466
|
-
- Change: Add option to deep-clone properties in Change node (#3156) @knolleary
|
|
467
|
-
- Delay: Add push to front of rate limit queue. (#3069) @dceejay
|
|
468
|
-
- File: Add paletteLabel to file nodes to make read/write more obvious (#3157) @knolleary
|
|
469
|
-
- HTTP Request: Extend HTTP request node to log detailed timing information (#3116) @k-toumura
|
|
470
|
-
- HTTP Response: Fix sizing of HTTP Response header fields (#3164) @knolleary
|
|
471
|
-
- Join: Support for msg.restartTimeout (#3121) @magma1447
|
|
472
|
-
- Link Call: Add Link Call node (#3152) @knolleary
|
|
473
|
-
- Switch: Copy previous rule type when adding rule to switch node (#3170) @knolleary
|
|
474
|
-
- Delay node: add option to send intermediate messages on separate output (#3166) @knolleary
|
|
475
|
-
- Typo in http request set method translation (#3173) @mailsvb
|
|
476
|
-
|
|
477
|
-
#### 2.0.6: Maintenance Release
|
|
478
|
-
|
|
479
|
-
Editor
|
|
480
|
-
|
|
481
|
-
- Fix typo in ko editor.json Fixes #3119
|
|
482
|
-
- Change fade color when hovering an inactive tab (#3106) @bonanitech
|
|
483
|
-
- Ensure treeList row has suitable min-height when no content Fixes #3109
|
|
484
|
-
|
|
485
|
-
Runtime
|
|
486
|
-
|
|
487
|
-
- Update tar to latest (#3128) @aksswami
|
|
488
|
-
- Give passport verify callback the same arity as the original callback (#3117) @dschmidt
|
|
489
|
-
- Handle HTTPS Key and certificate as string or buffer (#3115) @bartbutenaers
|
|
490
|
-
|
|
491
|
-
#### 2.0.5: Maintenance Release
|
|
492
|
-
|
|
493
|
-
Editor
|
|
494
|
-
|
|
495
|
-
- Remove default ctrl-enter keybinding from monaco editor Fixes #3093
|
|
496
|
-
|
|
497
|
-
Runtime
|
|
498
|
-
|
|
499
|
-
- Update tar dependency
|
|
500
|
-
- Add support for maintenance streams in generate-publish-script
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
Nodes
|
|
504
|
-
|
|
505
|
-
- Fix regression in Join node when manual joining array with msg.parts present Fixes #3096
|
|
506
|
-
|
|
507
|
-
#### 2.0.4: Maintenance Release
|
|
508
|
-
|
|
509
|
-
Editor
|
|
510
|
-
|
|
511
|
-
- Fix tab fade CSS for when using themes (#3085) @bonanitech
|
|
512
|
-
- Handle just-copied-but-not-deployed node with credentials in editor Fixes #3090
|
|
513
|
-
|
|
514
|
-
Nodes
|
|
515
|
-
|
|
516
|
-
- Filter: Fix RBE node handling of default topi property Fixes #3087
|
|
517
|
-
- HTTP Request: Handle partially encoded url query strings in request node
|
|
518
|
-
- HTTP Request: Fix support for supplied CA certs (#3089) @hardillb
|
|
519
|
-
- HTTP Request: Ensure TLS Cert is used (#3092) @hardillb
|
|
520
|
-
- Inject: Fix inject now button unable to send empty props
|
|
521
|
-
- Inject: Inject now button success notification should use label with updated props
|
|
522
|
-
|
|
523
|
-
#### 2.0.3: Maintenance Release
|
|
524
|
-
|
|
525
|
-
Nodes
|
|
526
|
-
|
|
527
|
-
- HTML: Fix HTML parsing when body is included in the select tag Fixes #3079
|
|
528
|
-
- HTTP Request: Preserve case of user-provided http headers in request node Fixes #3081
|
|
529
|
-
- HTTP Request: Set decompress to false for HTTP Request to keep 1.x compatibility Fixes #3083
|
|
530
|
-
- HTTP Request: Add unit tests for HTTP Request encodeURI and error response
|
|
531
|
-
- HTTP Request: Do not throw HTTP errors in request node Fixes #3082
|
|
532
|
-
- HTTP Request: Ensure uri is properly encoded before passing to got module Fixes #3080
|
|
533
|
-
|
|
534
|
-
#### 2.0.2: Maintenance Release
|
|
535
|
-
|
|
536
|
-
Runtime
|
|
537
|
-
|
|
538
|
-
- Use file:// url with dynamic import
|
|
539
|
-
- Detect if agent-base has patched https.request and undo it Fixes #3072
|
|
540
|
-
|
|
541
|
-
Editor
|
|
542
|
-
|
|
543
|
-
- Fix tab fade css because Safari Fixes #3073
|
|
544
|
-
- Fix error closing library dialog with monaco
|
|
545
|
-
- Handle other error types in Manage Palette view
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
Nodes
|
|
549
|
-
|
|
550
|
-
- HTTP Request node - ignore invalid cookies rather than fail request Fixes #3075
|
|
551
|
-
- Fix msg.reset handling in Delay node Fixes #3074
|
|
552
|
-
|
|
553
|
-
#### 2.0.1: Maintenance Release
|
|
554
|
-
|
|
555
|
-
Nodes
|
|
556
|
-
|
|
557
|
-
- Function: Ensure default module export is exposed in Function node
|
|
558
|
-
|
|
559
|
-
#### 2.0.0: Milestone Release
|
|
560
|
-
|
|
561
|
-
**Migration from 1.x**
|
|
562
|
-
|
|
563
|
-
- Node-RED now requires Node.js 12.x or later.
|
|
564
|
-
|
|
565
|
-
- The following nodes have had significant dependency updates. Unless stated,
|
|
566
|
-
they should be fully backward compatible.
|
|
567
|
-
|
|
568
|
-
- RBE: Relabelled as 'filter' to make it more discoverable and made part of
|
|
569
|
-
the core palette, rather than as a separate module.
|
|
570
|
-
- Tail: This node has been removed from the default palette. You can reinstall it
|
|
571
|
-
from node-red-node-tail
|
|
572
|
-
- HTTP Request: Reimplemented with a different underlying module. We have
|
|
573
|
-
tried to maintain 100% functional compatibility, but it is possible
|
|
574
|
-
some edge cases remain.
|
|
575
|
-
- JSON: The schema validation option no longer supports JSON-Schema draft-04
|
|
576
|
-
- HTML: Its underlying module has had a major version update. Should be fully
|
|
577
|
-
backward compatible.
|
|
578
|
-
|
|
579
|
-
- `functionExternalModules` is now enabled by default for new installs.
|
|
580
|
-
If you have an existing settings file that contains this setting, you will
|
|
581
|
-
need to set it to `true` yourself.
|
|
582
|
-
|
|
583
|
-
The external modules will now get installed in your Node-RED user directory,
|
|
584
|
-
(`~/.node-red`) rather than in a subdirectory. This means all dependencies will
|
|
585
|
-
be listed in your top-level `package.json`. If you have existing external modules,
|
|
586
|
-
they will get reinstalled to the new location when you first run Node-RED 2.0.
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
Runtime
|
|
590
|
-
|
|
591
|
-
- Fix missing dependencies (#3052, #2057) @kazuhitoyokoi
|
|
592
|
-
- Ensure node.types is defined if node html file missing
|
|
593
|
-
- Fix reporting of type_already_registered error
|
|
594
|
-
- Move install location of external modules (#3064) @knolleary
|
|
595
|
-
|
|
596
|
-
Editor
|
|
597
|
-
|
|
598
|
-
- Update translations (#3063) @kazuhitoyokoi
|
|
599
|
-
- Add a slight fade to tab labels that overflow
|
|
600
|
-
- Show config node details when selected in outliner
|
|
601
|
-
- Fix layout of info outliner for subflow entries
|
|
602
|
-
|
|
603
|
-
Nodes
|
|
604
|
-
|
|
605
|
-
- Delay: let `msg.flush` specify how many messages to flush from node (#3059) @dceejay
|
|
606
|
-
- Function: external modules is now enabled by default (#3065) @knolleary
|
|
607
|
-
- Function: external modules now supports both ES6 and CJS modules (#3065) @knolleary
|
|
608
|
-
- WebSocket: add option for client node to send automatic pings (#3056) @knolleary
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
##### 2.0.0-beta.2: Beta Release
|
|
612
|
-
|
|
613
|
-
Runtime
|
|
614
|
-
|
|
615
|
-
- Add `node-red admin init` (via `node-red-admin@2.1.0`)
|
|
616
|
-
- Move to GH Actions rather than Travis for build (#3042) @knolleary
|
|
617
|
-
|
|
618
|
-
Editor
|
|
619
|
-
|
|
620
|
-
- Include hasUser=false config nodes when exporting whole flow (#3048)
|
|
621
|
-
- Emit nodes:change for any updated config node when node deleted/added
|
|
622
|
-
- Fix padding of compact notification Closes #3045
|
|
623
|
-
- Ensure any html in changelog is escaped before displaying
|
|
624
|
-
- Add support for Map/Set property types on Debug (#3040) @knolleary
|
|
625
|
-
- Add 'theme' to default settings file
|
|
626
|
-
- Add RED.view.annotations api (#3032) @knolleary
|
|
627
|
-
- Update monaco editor to V0.25.2 (#3031) @Steve-Mcl
|
|
628
|
-
- Lower tray zIndex when overlay tray being opened Fixes #3019
|
|
629
|
-
- Reduce z-Index of Function expand buttons to prevent overlap Part of #3019
|
|
630
|
-
- Ensure RED.clipboard.import displays the right library Fixes #3021
|
|
631
|
-
- Batch messages sent over comms to prevent flooding (#3025) @knolleary
|
|
632
|
-
- Allow RED.popover.panel to specify a closeButton to ignore click events on
|
|
633
|
-
- Use browser default language for initial page load
|
|
634
|
-
- Add css var for node font color
|
|
635
|
-
- Fix label padding of toggleButton
|
|
636
|
-
- Give sidebar open tab a bit more room for its label
|
|
637
|
-
- Various Monaco updates (#3015) @Steve-Mcl
|
|
638
|
-
- Log readOnly on startup (#3024) @sammachin
|
|
639
|
-
- Translation updates (#3020 #3022) @HiroyasuNishiyama @kazuhitoyokoi
|
|
640
|
-
|
|
641
|
-
Nodes
|
|
642
|
-
|
|
643
|
-
- HTTP Request: Fix proxy handling (#3044) @hardillb
|
|
644
|
-
- HTTP Request: Handle basic auth with @ in username (#3017) @hardillb
|
|
645
|
-
- Add Japanese translation for file-in node (#3037 #3039) @kazuhitoyokoi
|
|
646
|
-
- File In: Add option for file-in node to include all properties (default off) (#3035) @dceejay
|
|
647
|
-
- Exec: add windowsHide option to hide windows under Windows (#3026) @natcl
|
|
648
|
-
- Support loading external module sub path Fixes #3023
|
|
649
|
-
|
|
650
|
-
##### 2.0.0-beta.1: Beta Release
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
Runtime
|
|
655
|
-
|
|
656
|
-
- [MAJOR] Set minimum node version to 12.
|
|
657
|
-
- [MAJOR] Fix flowfile name to flows.json in settings (#2951) @dceejay
|
|
658
|
-
- [MAJOR] Update to latest i18n in editor and runtime (#2940) @knolleary
|
|
659
|
-
- [MAJOR] Deprecate usage of httpRoot (#2953) @knolleary
|
|
660
|
-
- Add pre/postInstall hooks to npm install handling (#2936) @knolleary
|
|
661
|
-
- Add engine-strict flag to npm install args (#2965) @nileio
|
|
662
|
-
- Restructure default settings.js to be more organised (#3012) @knolleary
|
|
663
|
-
- Ensure httpServerOptions gets applied to ALL the express apps
|
|
664
|
-
- Allow RED.settings.set to replace string property with object property
|
|
665
|
-
- Update debug tests to handle compact comms format
|
|
666
|
-
- Updates to encode/decode message when passed over debug comms link
|
|
667
|
-
- Remove all input event listeners on a node once it is closed
|
|
668
|
-
- Move hooks to util package
|
|
669
|
-
- Rework hooks structure to be a linkedlist
|
|
670
|
-
- Update dependencies (#2922) @knolleary
|
|
671
|
-
|
|
672
|
-
Editor
|
|
673
|
-
|
|
674
|
-
- [MAJOR] Change node id generation to give fixed length values without '.' (#2987) @knolleary
|
|
675
|
-
- [MAJOR] Add Monaco code editor (#2971) @Steve-Mcl
|
|
676
|
-
- Update to latest Monaco (#3007) @Steve-Mcl
|
|
677
|
-
- Update Node-RED Function typings in Monaco (#3008) @Steve-Mcl
|
|
678
|
-
- Add css named variables for certain key colours (#2994) @knolleary
|
|
679
|
-
- Improve contrast of export dialog JSON font color
|
|
680
|
-
- Switch editableList buttons from <a> to <button> elements
|
|
681
|
-
- Add option to RED.nodes.createCompleteNodeSet to include node dimensions
|
|
682
|
-
- Fix css of node help table of contents elements
|
|
683
|
-
- Improve red-ui-node-icon css and add red-ui-node-icon-small modifier class
|
|
684
|
-
- Add RED.hooks to editor
|
|
685
|
-
- Add viewAddPort viewRemovePort viewAddNode viewRemoveNode hooks to view
|
|
686
|
-
- Use paletteLabel if set in help sidebar
|
|
687
|
-
- Add missing args from JSONata $now signature
|
|
688
|
-
|
|
689
|
-
Nodes
|
|
690
|
-
|
|
691
|
-
- [MAJOR] Relabel RBE node as 'filter' and move into core. Also remove tail (#2944) @dceejay
|
|
692
|
-
- [MAJOR] HTTP Request: migrate to 'got' module (#2952) @knolleary
|
|
693
|
-
- [MAJOR] Move Inject node to CronosJS module (#2959) @knolleary
|
|
694
|
-
- [MAJOR] JSON: Update ajv to 8.2.0 - drop support for JSON-Schema draft-04 (#2969) @knolleary
|
|
695
|
-
- [MAJOR] HTML node: cheerio update to 1.x (#3011) @knolleary
|
|
696
|
-
- Join: change default manual mode to object (#2931) @knolleary
|
|
697
|
-
- File node: Add fileWorkingDirectory (#2932) @knolleary
|
|
698
|
-
- Delay node enhancements (#2294) @kazuhitoyokoi (#2949) @dceejay
|
|
699
|
-
- Add Japanese translations for delay node enhancements (#2958) @kazuhitoyokoi
|
|
700
|
-
- Inject node: reorder TypedInput options (#2961) @dceejay
|
|
701
|
-
- HTTP Request: update to work with proxies (#2983) @hardillb (#3009) @hardillb
|
|
702
|
-
- HTTP Request: fix msg.responseUrl (#2986) @hardillb
|
|
703
|
-
- TLS: Add ALPN support to TLS node (#2988) @hardillb
|
|
704
|
-
- Inject: add "Inject now" button to edit dialog (#2990) @Steve-Mcl
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
226
|
#### Older Releases
|
|
709
227
|
|
|
710
228
|
Change logs for older releases are available on GitHub: https://github.com/node-red/node-red/releases
|