@node-red/editor-client 4.0.0-beta.3 → 4.0.0-beta.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.
Files changed (39) hide show
  1. package/locales/en-US/editor.json +3 -0
  2. package/locales/fr/editor.json +3 -0
  3. package/locales/ja/editor.json +2 -0
  4. package/package.json +1 -1
  5. package/public/red/about +33 -657
  6. package/public/red/red.js +69 -11
  7. package/public/red/red.min.js +1 -1
  8. package/public/red/style.min.css +1 -1
  9. package/public/red/tours/welcome.js +24 -29
  10. package/public/types/node-red/util.d.ts +1 -1
  11. package/public/vendor/ace/worker-jsonata.js +1 -1
  12. package/public/vendor/mermaid/mermaid.min.js +705 -318
  13. package/public/vendor/monaco/dist/{0c718f5b7d2bce997c5f.ttf → 8f3abbcbc983396e1f13.ttf} +0 -0
  14. package/public/vendor/monaco/dist/css.worker.js +1 -1
  15. package/public/vendor/monaco/dist/css.worker.js.LICENSE.txt +1 -1
  16. package/public/vendor/monaco/dist/editor.js +1 -1
  17. package/public/vendor/monaco/dist/editor.js.LICENSE.txt +1 -1
  18. package/public/vendor/monaco/dist/editor.worker.js +1 -1
  19. package/public/vendor/monaco/dist/html.worker.js +1 -1
  20. package/public/vendor/monaco/dist/html.worker.js.LICENSE.txt +1 -1
  21. package/public/vendor/monaco/dist/json.worker.js +1 -1
  22. package/public/vendor/monaco/dist/json.worker.js.LICENSE.txt +1 -1
  23. package/public/vendor/monaco/dist/locale/cs.js +227 -139
  24. package/public/vendor/monaco/dist/locale/de.js +229 -141
  25. package/public/vendor/monaco/dist/locale/es.js +225 -137
  26. package/public/vendor/monaco/dist/locale/fr.js +226 -138
  27. package/public/vendor/monaco/dist/locale/it.js +226 -138
  28. package/public/vendor/monaco/dist/locale/ja.js +227 -139
  29. package/public/vendor/monaco/dist/locale/ko.js +226 -138
  30. package/public/vendor/monaco/dist/locale/pl.js +227 -139
  31. package/public/vendor/monaco/dist/locale/pt-br.js +243 -155
  32. package/public/vendor/monaco/dist/locale/qps-ploc.js +229 -141
  33. package/public/vendor/monaco/dist/locale/ru.js +225 -137
  34. package/public/vendor/monaco/dist/locale/tr.js +227 -139
  35. package/public/vendor/monaco/dist/locale/zh-hans.js +225 -137
  36. package/public/vendor/monaco/dist/locale/zh-hant.js +228 -140
  37. package/public/vendor/monaco/dist/ts.worker.js +2 -2
  38. package/public/vendor/vendor.js +1 -1
  39. package/templates/index.mst +2 -2
package/public/red/about CHANGED
@@ -1,3 +1,36 @@
1
+ #### 4.0.0-beta.4: Beta Release
2
+
3
+ Editor
4
+
5
+ - Fix the Sidebar Config is not refreshed after a deploy (#4734) @GogoVega
6
+ - Fix checkboxes are not updated when calling `typedInput("value", "")` (#4729) @GogoVega
7
+ - Fix panning with middle mouse button on windows 10/11 (#4716) @corentin-sodebo-voile
8
+ - Add Japanese translation for sidebar tooltip (#4727) @kazuhitoyokoi
9
+ - Translate the number of items selected in the options list (#4730) @GogoVega
10
+ - Fix a checkbox should return a Boolean value and not the string `on` (#4715) @GogoVega
11
+ - Deleting a grouped node should update the group (#4714) @GogoVega
12
+ - Change the Config Node cursor to `pointer` (#4711) @GogoVega
13
+ - Add missing tooltips to Sidebar (#4713) @GogoVega
14
+ - Allow nodes to return additional history entries in onEditSave (#4710) @knolleary
15
+ - Update to Monaco 0.49.0 (#4725) @Steve-Mcl
16
+ - Add Japanese translations for 4.0.0-beta.3 (#4726) @kazuhitoyokoi
17
+ - Show lock on deploy if user is read-only (#4706) @knolleary
18
+
19
+ Runtime
20
+
21
+ - Ensure all CSS variables are in the output file (#3743) @bonanitech
22
+ - Add httpAdminCookieOptions (#4718) @knolleary
23
+ - chore: migrate deprecated `util.isArray` (#4724) @Rotzbua
24
+ - Add --version cli args (#4707) @knolleary
25
+ - feat(grunt): fail if files are missing (#4739) @Rotzbua
26
+ - fix(node-red-pi): node-red not started by path (#4736) @Rotzbua
27
+ - fix(editor): remove trailing slash (#4735) @Rotzbua
28
+ - fix: remove deprecated mqtt.js (#4733) @Rotzbua
29
+
30
+ Nodes
31
+
32
+ - Perform Proxy logic more like cURL (#4616) @Steve-Mcl
33
+
1
34
  #### 4.0.0-beta.3: Beta Release
2
35
 
3
36
  Editor
@@ -83,663 +116,6 @@ Nodes
83
116
  - Let debug node status msg length be settable via settings (#4402) @dceejay
84
117
  - Feat: Add ability to set headers for WebSocket client (#4436) @marcus-j-davies
85
118
 
86
- #### 3.1.9: Maintenance Release
87
-
88
- - Prevent subflow being added to itself (#4654) @knolleary
89
- - Fix use of spawn on windows with cmd files (#4652) @knolleary
90
- - Guard refresh of unknown subflow (#4640) @knolleary
91
- - Fix subflow module sending messages to debug sidebar (#4642) @knolleary
92
-
93
- #### 3.1.8: Maintenance Release
94
-
95
- - Add validation and error handling on subflow instance properties (#4632) @knolleary
96
- - Hide import/export context menu if disabled in theme (#4633) @knolleary
97
- - Show change indicator on subflow tabs (#4631) @knolleary
98
- - Bump dependencies (#4630) @knolleary
99
- - Reset workspace index when clearing nodes (#4619) @knolleary
100
- - Remove typo in global config (#4613) @kazuhitoyokoi
101
-
102
- #### 3.1.7: Maintenance Release
103
-
104
- - Add Japanese translation for v3.1.6 (#4603) @kazuhitoyokoi
105
- - Update jsonata version (#4593) @hardillb
106
-
107
- #### 3.1.6: Maintenance Release
108
-
109
- Editor
110
-
111
- - Do not flag env var in num typedInput as error (#4582) @knolleary
112
- - Fix example flow name in import dialog (#4578) @kazuhitoyokoi
113
- - Fix missing node icons in workspace (#4570) @knolleary
114
-
115
- Runtime
116
-
117
- - Handle undefined env vars (#4581) @knolleary
118
- - fix: Removed offending MD5 crypto hash and replaced with SHA1 and SHA256 … (#4568) @JaysonHurst
119
- - chore: remove never use import code (#4580) @giscafer
120
-
121
- Nodes
122
-
123
- - fix: template node zh-CN translation (#4575) @giscafer
124
-
125
- #### 3.1.5: Maintenance Release
126
-
127
- Runtime
128
-
129
- - Fix require of dns module (#4562) @knolleary
130
- - Ensure global creds object is initialised when adding first cred (#4561) @knolleary
131
-
132
- #### 3.1.4: Maintenance Release
133
-
134
- Editor
135
-
136
- - Highlight errors in config node sidebar (#4529) @knolleary
137
- - Improve feedback in import dialog to show conflicted nodes (#4550) @knolleary
138
- - Modify node users info in config editor footer (#4528) @knolleary
139
- - Handle modified-nodes deploy after replacing unknown config node (#4556) @knolleary
140
- - Handle undefined default export when importing module (#4539) @knolleary
141
- - Fix icon scaling for non .svg icons (#4491) @ralphwetzel
142
- - (convertNode) Do not create the credentials object if there is nothing to export (#4544) @GogoVega
143
- - Ensure subflow instance node has g property set (#4538) @knolleary
144
- - Handle importing flow with existing subflow and instance node (#4546) @knolleary
145
- - Update index.mst (#4483) @gorenje
146
- - Include top level property name when copying path from context (#4527) @knolleary
147
- - Add handling to disable items on context menu (#4500) @kazuhitoyokoi
148
- - Focus Quick Add dialog from context menu (#4516) @kazuhitoyokoi
149
- - Fix subflow ports in Quick Add dialog (#4518) @kazuhitoyokoi
150
- - Fix location of subflow ports in palette (#4502) @kazuhitoyokoi
151
- - Client/Editor Events: fix off-in-on pattern emulating once (#4484) @gorenje
152
- - Restore caching busting functionality without using explict version number (#4512) @knolleary
153
- - Do not translate the list of available languages (#4531) @GogoVega
154
- - Add French translation of v3.1.3 changes (#4477) @GogoVega
155
- - i18n(es-ES) Spanish Spain translation (#4495) @joebordes
156
- - Add missing validation messages (#4487) @GogoVega
157
- - Add Japanese translations for v3.1.3 (#4498) @kazuhitoyokoi
158
- - Replace `rename` by `edit` for the menu flow label (#4506) @GogoVega
159
- - Update editor.json fix typo in German translation (#4552) @guidoffm
160
-
161
- Runtime
162
-
163
- - Bump the github-actions group with 1 update (#4554) @app/dependabot
164
- - Clone objects types when getting env values (#4519) @knolleary
165
- - Ensure global-config credential env vars are merged on deploy (#4526) @knolleary
166
-
167
- Nodes
168
-
169
- - 21-httprequest.js remove unused code, because of broken use of toLowercase (#4522) @gorenje
170
-
171
- #### 3.1.3: Maintenance Release
172
-
173
- Editor
174
-
175
- - Add missing en-us messages (#4475) @knolleary
176
-
177
- #### 3.1.2: Maintenance Release
178
-
179
- Editor
180
-
181
- - Relax some node validators to allow undefined value (#4471) @knolleary
182
- - Fix switch validation of typeof field (#4465) @knolleary
183
- - Use move cursor when hovering on group border (#4467) @knolleary
184
- - Added action list Chinese (Simplified and Traditional) translation + v3.1.1 changes (#4470) @wangyiyi2056
185
- - Add French translation of `action-list` + v3.1.1 changes (#4466) @GogoVega
186
-
187
- Runtime
188
-
189
- - Ensure nested groups inside subflows have their g props remapped (#4472) @knolleary
190
-
191
- #### 3.1.1: Maintenance Release
192
-
193
- Editor
194
-
195
- - Fix debug filter (#4461) @knolleary
196
- - Fix various issues with debug pop-out window (#4459) @knolleary
197
- - Ensure subflow instances keep track of their groups (#4457) @knolleary
198
- - Fix `validateNodeProperty` without validator provided (#4455) @GogoVega
199
- - Debounce node-removed notifications (#4453) @knolleary
200
- - Don't try to load the parents of the first commit (#4448) @bonanitech
201
- - Allow a theme to specifiy which theme mermaid should use (#4441) @knolleary
202
- - Update browser title with flow name if set (#4427) @knolleary
203
- - Ensure typeSearch handles undefined node definitions (#4423) @knolleary
204
- - Ensure group w/h are imported if present (#4426) @knolleary
205
- - Hide node status background when there is no status to show (#4425) @knolleary
206
- - Add a close button to the restart-required notification (#4407) @knolleary
207
- - Extend typedInput "num" type validity check to NaN, binary, octal & hex (#4371) @ralphwetzel
208
- - Fix unintended new line in node name (#4399) @kazuhitoyokoi
209
- - Ctrl-Enter does not close tray (Monaco) #4377 (#4382) @hazymat
210
- - fix buffer viewer to handle 0b style binary (#4393) @dceejay
211
- - Rework mermaid integration to support off-DOM rendering (#4364) @knolleary
212
- - Add missing nls labels to context menu (#4365) @knolleary
213
-
214
- Runtime
215
-
216
- - Bump the github-actions group with 2 updates (#4404) @app/dependabot
217
- - Handle unknown node reference inside subflow module (#4460) @knolleary
218
- - Add modules.install audit event when external module installed (#4452) @knolleary
219
- - Allow import of modules with subpath in specifier (#4451) @knolleary
220
- - Update node-red-admin version (#4438) @knolleary
221
- - Handle false-like env vars properly (#4411) @knolleary
222
- - Only save settings once during node load process (#4409) @knolleary
223
- - Ensure global-config nodes lookup cred values properly (#4405) @knolleary
224
- - Handle credential env var evaluation when no value set (#4362) @knolleary
225
- - Don't commit package-lock.json (#4354) @bonanitech
226
- - Fix env evaluation when one env references another in the same object (#4361) @knolleary
227
- - Add dependabot for Github Actions (#4312) @Rotzbua
228
- - Update outdated Github Actions (#4311) @Rotzbua
229
- - github: Request `npm run test` in PR template (#4348) @ZJvandeWeg
230
- - Add French translation of v3.1.0-beta.4 changes + slight improvements (#4329) @GogoVega
231
- - Handle nodes with multiple input handlers properly (#4332) @knolleary
232
- - Soften the language around unrequited PRs (#4351) @knolleary
233
-
234
- Nodes
235
-
236
- - CSV: make CSV export way faster by not re-allocating and handling huge string (#4349) @Fadoli
237
- - Delay: Fix regression in delay node to not pass on msg.reset (#4350) @dceejay
238
- - Link Call: Handle undefined linkType value for existing link-call nodes (#4331) @knolleary
239
- - MQTT: Guard against node.broker being undefined (#4454) @knolleary
240
- - MQTT: check topic length > 0 before publish (#4416) @dceejay
241
- - Switch/Change: Improve validation of switch/change node rules (#4368) @knolleary
242
- - Template: Fix height of description editor in template node (#4346) @kazuhitoyokoi
243
- - Various: Add validators to any fields using msg-typed Input (#4440) @knolleary
244
-
245
- #### 3.1.0: Milestone Release
246
-
247
- Editor
248
-
249
- - Default filter to All Catalogues and show nodes for small lists (#4318) @knolleary
250
- - Better distinguish between ctrl and meta keys on mac (#4310) @knolleary
251
- - Ensure junction appears when filtering quick-add list (#4297) @knolleary
252
- - Update message catalogs for JSONata Expression editor (#4287) @kazuhitoyokoi
253
- - Add tooltip to relevance sort button in user settings UI (#4288) @kazuhitoyokoi
254
- - Capture workspace dirty state when quick-adding junction (#4283) @knolleary
255
- - Add docs for $clone function (#4284) @knolleary
256
-
257
- Runtime
258
-
259
- - Dependency updates (#4317) @knolleary
260
- - Ensure storage/util.writeFile handles concurrent write attempts (#4316) @knolleary
261
- - Migrate http -> https for nodered.org (#4313) @Rotzbua
262
- - Add Node 20 to GH Action test matrix (#4305) @Rotzbua
263
- - Handle group-scoped nodes inside subflow (#4301) @knolleary
264
- - Handle non-url-safe chars in context api (#4298) @knolleary
265
- - Fix git pull operation in project feature (#4290) @kazuhitoyokoi
266
- - Change linefeed codes in Korean message catalogs (#4286) @kazuhitoyokoi
267
- - Fix file permissions of message catalogs (#4285) @kazuhitoyokoi
268
- - Update tour (#4278) @knolleary
269
-
270
- Nodes
271
-
272
- - File: Fix handling in file nodes when number is specified as file name (#4267) @kazuhitoyokoi
273
- - Function: Adding function timeout to settings file (#4265) (#4309) @knolleary
274
- - Function: Fix function setup tab layout (#4299) @knolleary
275
- - HTTP Request: Handle 204 in httprequest JSON (#4262) @sammachin
276
- - JSON: Fix test cases of JSON node (#4275) @kazuhitoyokoi
277
- - MQTT: Remove unnecessary check for clientid if autoUnsub set (#4302) @knolleary
278
-
279
- ##### 3.1.0-beta.4: Beta Release
280
-
281
- Editor
282
-
283
- - Add Japanese translation for 3.1.0 (#4252) @kazuhitoyokoi
284
- - Improve Catalogue visibility (#4248) @Steve-Mcl
285
- - Add support for wiring and moving junctions on touch device (#4244) @Steve-Mcl
286
- - Show errors and statuses of config nodes in the sidebar when no catch node is available (#4231) @bvmensvoort
287
- - Improve wiring for horizontally aligned nodes (#4232) @knolleary
288
- - French translation of Welcome Tours (#4200) @GogoVega
289
- - French translation of v3.1.0-beta.3 changes (#4199) @GogoVega
290
- - add Japanese message for 3.1.0 beta 3 (#4209) @HiroyasuNishiyama
291
- - Dont clone the group nodes `node` array when saving edits (#4208) @Steve-Mcl
292
-
293
- Runtime
294
-
295
- - Add NR_SUBFLOW_NAME/ID/PATH env vars (#4250) @knolleary
296
- - Evaluate all env vars as part of async flow start (#4230) @knolleary
297
- - Add support for httpStatic middleware (#4229) @knolleary
298
-
299
- Nodes
300
-
301
- - Fix JSONata in file nodes (#4246) @kazuhitoyokoi
302
- - Fix timeout icon in function and link call nodes (#4253) @kazuhitoyokoi
303
- - Fix connection keep-alive in http request node (#4228) @knolleary
304
- - adding timeout attribute to function node (#4177) @k1ln
305
- - Fix manual mode join when multiple sequences being handled (#4143) @BitCaesar
306
- - Fix delay node flush issue (#4203) @dceejay
307
- - Update status and catch node labels in group mode (#4207) @Steve-Mcl
308
-
309
- ##### 3.1.0-beta.3: Beta Release
310
-
311
- Editor
312
-
313
- - Select the item that is specified in a deep link URL (#4113) @Steve-Mcl
314
- - Update to Monaco 0.38.0 (#4189) @Steve-Mcl
315
- - Place subflow outputs/inputs relative to current view (#4183) @knolleary
316
- - Enable RED.view.select to select group by id (#4184) @knolleary
317
- - Combine existing env vars when merging groups (#4182) @knolleary
318
- - Avoid creating empty global-config node if not needed (#4153) @knolleary
319
- - Fix group selection when using lasso (#4108) @knolleary
320
- - Use editor path in generating localStorage keys (#4151) @mw75
321
- - Ensure no node credentials are included when exporting to clipboard (#4112) @knolleary
322
- - Fix jsonata expression test ui (#4097) @knolleary
323
- - Fix search button in palette popover (#4096) @knolleary
324
-
325
- Runtime
326
-
327
- - Allow options object on each httpStatic configuration (#4109) @kevinGodell
328
- - Ensure non-zero exit codes for errors (#4181) @knolleary
329
- - Ensure external modules are installed synchronously (#4180) @knolleary
330
- - Update dependecies include got (#4155) @knolleary
331
- - Add Japanese translations for v3.1 beta.2 (#4158) @kazuhitoyokoi
332
- - Ensure express server options are applied consistently (#4178) @knolleary
333
- - Remove version info from theme endpoint (#4179) @knolleary
334
- - Add Japanese translations for welcome tour of 3.1.0 beta.2 (#4145) @kazuhitoyokoi
335
- - Added SHA-256 and SHA-512-256 digest authentication (#4100) @sroebert
336
- - Add "timers" types to known types (#4103) @Steve-Mcl
337
-
338
- Nodes
339
-
340
- - Allow Catch/Status nodes to be scoped to their group (#4185) @NetHans
341
- - MQTT: Option to disable MQTT topic unsubscribe on disconnect (#4078) @flying7eleven
342
-
343
-
344
- ##### 3.1.0-beta.2: Beta Release
345
-
346
- Editor
347
-
348
- - NEW: Add change icon to tabs (#4068) @knolleary
349
- - NEW: Complete overhaul of Group UX (#4079) @knolleary
350
- - NEW: Add link to node help in node edit dialog footer (#4065) @knolleary
351
- - NEW: Added editor feature for connecting multiple nodes to single node (#4051) @sonntam
352
- - NEW: Increase workspace size to 8000x8000 (#4094) @knolleary
353
- - Ensure node buttons are redrawn when flow lock state is changed (#4091) @knolleary
354
- - Prevent loops being created with junction nodes (#4087) @knolleary
355
- - Prevent opening locked node's edit dialog (#4069) @knolleary
356
- - Reverse direction of tab scroll to expected direction (#4064) @knolleary
357
- - Add cancel operation to editableList (#4077) @HiroyasuNishiyama
358
- - Apply Mermaid diagram for project settings UI (#4054) @kazuhitoyokoi
359
- - Add tooltip for show/hide button on info sidebar (#4050) @kazuhitoyokoi
360
- - Fix align nodes on locked tab (#4072) @HiroyasuNishiyama
361
- - Fix importing connected link nodes into a subflow (#4082) @knolleary
362
- - Fix to add empty marker to empty group (#4060) @HiroyasuNishiyama
363
- - Fix image URLs for v3.0 tour (#4053) @kazuhitoyokoi
364
- - Show scrollbar in notification dialog only when needed (#4048) @kazuhitoyokoi
365
- - Update-monaco-and-typings (#4089) @Steve-Mcl
366
- - Update jquery UI (#4088) @knolleary
367
- - Support i18n of lock/unlock buttons in flow property UI (#4049) @kazuhitoyokoi
368
- - Translation kr (#3895) @hae-iotplatform
369
- - Translation zhcn (!!请懂中文的帮忙review) (#3952) @cliyr
370
- - Add French translation of nodes (#3964) @GogoVega
371
- - Add French translation (#3962) @GogoVega
372
- - Portuguese Brazilian (pt-BR) translation (#3804) @FabsMuller
373
-
374
-
375
- Runtime
376
-
377
- - NEW: Generate stable ids for subflow instance internal nodes (#4093) @knolleary
378
- - NEW: Change default file name to flows.json in project feature (#4073) @kazuhitoyokoi
379
- - NEW: Deprecate synchronous access to jsonata (#4090) @knolleary
380
- - Add Node 18 to test matrix (#4084) @knolleary
381
- - Bump minimum nodejs version supported to match documented value (#4086) @knolleary
382
- - Update monaco docs link in settings.js (#4075) @Steve-Mcl
383
- - Remove duplicated messages in the message catalog (#4066) @kazuhitoyokoi
384
- - Ensure errors in preDeliver callback are handled (#3911) @knolleary
385
- - Fix "EADDRINUSE" error (#4046) @bggbr
386
-
387
- Nodes
388
-
389
- - Link Call: Clear link-call timeouts when node is closed (#4085) @knolleary
390
- - Join: ensure inflight status is cleared when in auto mode (#4083) @knolleary
391
- - File Out: Fix extra newline append for multipart file write (#3915) @dceejay
392
- - Add validators for complete and link call nodes (#4056) @kazuhitoyokoi
393
-
394
- ##### 3.1.0-beta.1: Beta Release
395
-
396
- Editor
397
-
398
- - NEW: Locking Flows (#3938) @knolleary
399
- - NEW: Improve UX around hiding flows via context menu (#3930) @knolleary
400
- - NEW: Add support for inline image in markdown editor by drag and drop of an image file (#4006) @HiroyasuNishiyama
401
- - NEW: Add support for mermaid diagram to markdown editor (#4007) @HiroyasuNishiyama
402
- - NEW: Support uri fragments for nodes and groups including edit support (#3870) @knolleary
403
- - NEW: Add global environment variable feature (#3941) @HiroyasuNishiyama
404
-
405
- - Remember compact/pretty flow export user choice (#3974) @Steve-Mcl
406
- - fix .red-ui-notification class (#4035) @xiaobinqt
407
- - Fix border radius on Modules list header (#4038) @bonanitech
408
- - fix workspace reference error in case of empty tabs (#4029) @HiroyasuNishiyama
409
- - Disable delete tab menu when single tab exists (#4030) @HiroyasuNishiyama
410
- - Disable hide all menu if all tabs hidden (#4031) @HiroyasuNishiyama
411
- - fix hide subflow tooltip (#4033) @HiroyasuNishiyama
412
- - Fix disabled menu items in project feature (#4027) @kazuhitoyokoi
413
- - Let themes change radialMenu text colors (#3995) @bonanitech
414
- - Add Japanese translations for v3.0.3 (#4012) @kazuhitoyokoi
415
- - Add Japanese translation for v3.1.0-beta.0 (#3997) @kazuhitoyokoi
416
- - Add Japanese translation for v3.1.0-beta.0 (#3916) @kazuhitoyokoi
417
- - Hide subflow category after deleting subflow (#3980) @kazuhitoyokoi
418
- - Prevent dbl-click opening node edit dialog with text selected (#3970) @knolleary
419
- - Handle replacing unknown node inside group or subflow (#3921) @knolleary
420
- - Fix #3939, red border red-ui-typedInput-container (#3949) @Steveorevo
421
- - i18n item URL copy notification & add Japanese message (#3946) @HiroyasuNishiyama
422
- - add Japanese message for item url copy actions (#3947) @HiroyasuNishiyama
423
- - Fix autocomplete entry for responseUrl (#3884) @knolleary
424
- - Fix Japanese translation for JSONata editor (#3872) @HiroyasuNishiyama
425
- - Fix search type with spaces (#3841) @Steve-Mcl
426
- - Fix error hanndling of JSONata expression editor for extended functions (#3871) @HiroyasuNishiyama
427
- - Add button type to the adding SSH key button (#3866) @kazuhitoyokoi
428
- - Check radio button as default in project dialog (#3879) @kazuhitoyokoi
429
- - Add $clone as supported function (#3874) @HiroyasuNishiyama
430
- - Env var jsonata (#3807) @HiroyasuNishiyama
431
- - Add Japanese translation for v3.0.2 (#3852) @kazuhitoyokoi
432
-
433
- Runtime
434
-
435
- - Force IPv4 name resolution to have priority (#4019) @dceejay
436
- - Fix async loading of modules containing both nodes and plugins (#3999) @knolleary
437
- - Use main branch as default in project feature (#4036) @kazuhitoyokoi
438
- - Rename package var to avoid strict mode error (#4020) @knolleary
439
- - Fix typos in settings.js (#4013) @ypid
440
- - Ensure credentials object is removed before returning node in getFlow request (#3971) @knolleary
441
- - Ignore commit error in project feature (#3987) @kazuhitoyokoi
442
- - Update dependencies (#3969) @knolleary
443
- - Add check that node sends object rather than primitive type (#3909) @knolleary
444
- - Ensure key_path is quoted in GIT_SSH_COMMAND in case of spaces in pathname (#3912) @knolleary
445
- - Fix nodesDir scan when node package has js/html in sub dir to package.json (#3867) @Steve-Mcl
446
- - Fix file permissions (#3917) @kazuhitoyokoi
447
- - ci: add minimum GitHub token permissions for workflows (#3907) @boahc077
448
-
449
- Nodes
450
-
451
- - Catch: fix typo in catch.html (#3965) @we11adam
452
- - Change: Fix change node overwriting msg with itself (#3899) @dceejay
453
- - Comment node: Clarify where the text will appear (#4004) @dirkjanfaber
454
- - CSV: change replace to replaceAll (#3990) @dceejay
455
- - CSV node: check header properties for ' and " (#3920) @dceejay
456
- - CSV: Fix for CSV undefined property (#3906) @dceejay
457
- - Delay: let delay node handle both flush then reset (#3898) @dceejay
458
- - Function: Limit number of ports in function node (#3886) @kazuhitoyokoi
459
- - Function: Remove dot from variable name for external module in function node (#3880) @kazuhitoyokoi
460
- - Function: add function node monaco types util and promisify (#3868) @Steve-Mcl
461
- - HTTP In: Ensure msg.req.headers is enumerable (#3908) @knolleary
462
- - HTTP Request: Support form-data arrays (#3991) @hardillb
463
- - HTTP Request: Fix httprequest tests to be more lenient on error message (#3922) @knolleary
464
- - HTTP Request: Add missing property to node object HTTPRequest (#3842) @hardillb
465
- - HTTP Request/Response: Support sortable list on property UI of http request and http response nodes (#3857) @kazuhitoyokoi
466
- - HTTP Response: Ensure statusCode is a number (#3894) @hardillb
467
- - Inject: Allow Inject node to work with async context stores (#4021) @knolleary
468
- - Join/Batch: Add count to join and batch node labels (#4028) @dceejay
469
- - MQTT: Fix birth topic handling in MQTT node (#3905) @Steve-Mcl
470
- - MQTT: Fix pull-down menus of MQTT configuration node (#3890) @kazuhitoyokoi
471
- - MQTT: Prevent invalid mqtt birth topic crashing node-red (#3869) @Steve-Mcl
472
- - MQTT: ensure sessionExpiry(Interval) is applied (#3840) @Steve-Mcl
473
- - MQTT: Fix mqtt nodes not reconnecting on modified-flows deploy (#3992) @knolleary
474
- - MQTT: fix single subscription mqtt node status (#3966) @Steve-Mcl
475
- - Range: Add drop mode to range node (#3935) @dceejay
476
- - Remove done from describe (#3873) @HiroyasuNishiyama
477
- - Split node: avoid duplicate done call for buffer split (#4000) @knolleary
478
- - Status: Fix typo in 25-status.html (#3981) @kazuhitoyokoi
479
- - TCP Node: ensure newline substitution applies to whole message (#4009) @dceejay
480
- - Template: Add information about environment variable to template node (#3882) @kazuhitoyokoi
481
- - Trigger: Hide trigger node repeat send option if sending nothing (#4023) @dceejay
482
- - Watch: fix watch node test on MacOS/ARM (#3942) @HiroyasuNishiyama
483
-
484
- #### 3.0.2: Maintenance Release
485
-
486
- Editor
487
-
488
- - Fix workspace chart bottom property (#3812) @bonanitech
489
- - Update german translation (#3802) @Dennis14e
490
- - Support color reset to the default in subflow and group (#3801) @kazuhitoyokoi
491
- - Allow generateNodeNames to handle names containing regex control chars (#3817) @knolleary
492
- - Hide scrollbars until they're needed (#3808) @bonanitech
493
- - Include junctions/groups when exporting subflows plus related fixes (#3816) @knolleary
494
- - remove console.log (#3820) @Steve-Mcl
495
-
496
- Runtime
497
-
498
- - Register subflow module instance node with parent flow (#3818) @knolleary
499
-
500
- Nodes
501
-
502
- - HTTP Request: Allow HTTP Headers not in spec (#3776) @hardillb
503
-
504
- #### 3.0.1: Maintenance Release
505
-
506
- Editor
507
-
508
- - Allow codeEditor theme to be set even if `codeEditor` is not set in settings.js (#3794) @Steve-Mcl
509
- - Sys info (diagnostics report) amendments (#3793) @Steve-Mcl
510
- - Allow `mode` and `title` to be omitted in `options` argument for `createEditor` (#3791) @Steve-Mcl
511
- - Fix focus issues (#3789) @Steve-Mcl
512
- - Ensure all typedInput buttons have button type set (#3788) @knolleary
513
- - Do not flag hasUsers=false nodes as unused in search (#3787) @knolleary
514
- - Properly position quick-add dialog in all cases (#3786) @knolleary
515
- - Ensure quick-add dialog does not obscure ghost node when shifted (#3785) @knolleary
516
- - Remove use of Object.hasOwn (#3784) @knolleary
517
-
518
- #### 3.0.0: Milestone Release
519
-
520
- Editor
521
-
522
- - Use theme page and header values if settings.js values are not present (#3767) @Steve-Mcl
523
- - Focus editor for undo after some actions in menu (#3759) @kazuhitoyokoi
524
- - Ensure node icon shade has properly rounded corners (#3763) @knolleary
525
- - Fix storing subflow credential type when input has multiple types (#3762) @knolleary
526
- - Ensure global-config and flow-config have info in the hierarchy popover (#3752) @Steve-Mcl
527
- - Include dirty state in history event (#3748) @Steve-Mcl
528
- - Fix display direction of context sub-menu (#3746) @knolleary
529
- - Fix clear pinned paths of debug sidebar menu (#3745) @HiroyasuNishiyama
530
- - prevent exception generating tooltip for deleted nodes (#3742) @Steve-Mcl
531
- - Fix context menu issues ready for v3 beta.5 (#3741) @Steve-Mcl
532
- - Do not generate new node-ids when pasting a cut flow (#3729) @knolleary
533
- - Fix to prevent node from moving out of workspace (#3731) @HiroyasuNishiyama
534
- - Don't let themes change disabled config node background color (#3736) @bonanitech
535
- - Move colors left behind in #3692 to CSS variables (#3737) @bonanitech
536
- - Fix handling of global debug message (#3733) @HiroyasuNishiyama
537
- - Fix label overflow @ config-node palette (#3730) @ralphwetzel
538
- - Fix defaulting to monaco if settings does not contain codeEditor (#3732) @knolleary
539
- - Disable keyboard shortcut mapping when showing Edit[..]Dialog (#3700) @ralphwetzel
540
- - Update add-junction menu to work in more cases (#3727) @knolleary
541
- - Ensure importMap is not null when using import UI (#3723) @Steve-Mcl
542
- - Add Japanese translations for v3.0-beta.4 (#3724) @kazuhitoyokoi
543
- - Fix "split with" on virtual links (#3766) @Steve-Mcl
544
-
545
- Runtime
546
-
547
- - Do not remove unknown credentials of Subflow Modules (#3728) @knolleary
548
- - Add missing entries from beta.4 changelog (#3721) @knolleary
549
-
550
- Nodes
551
-
552
- - Change: Fix change node, not handling from field properly when using context (#3754) @Fadoli
553
- - Link Call: Fix linkcall registry bugs (#3751) @Steve-Mcl
554
- - WebSocket: Fix close timeout of websocket node (#3734) @HiroyasuNishiyama
555
-
556
- #### 3.0.0-beta.4: Beta Release
557
-
558
- Editor
559
-
560
- - Move all colours to CSS variables (#3692) @bonanitech
561
- - Fix clicking on node in workspace to hide context menu (#3696) @knolleary
562
- - Fix credential type input item of subflow template (#3703) @HiroyasuNishiyama
563
- - Add option flag `reimport` to `importNodes` (#3718) @Steve-Mcl
564
- - Update german translation (#3691) @Dennis14e
565
- - List welcome tours in help sidebar (#3717) @knolleary
566
- - Ensure 'hidden flow' count doesn't include subflows (#3715) @knolleary
567
- - Fix Chinese translate (#3706) @hotlong
568
- - Fix use default button for node icon (#3714) @kazuhitoyokoi
569
- - Fix select boxes vertical alignment (#3698) @bonanitech
570
- - Ensure workspace clean after undoing dropped node (#3708) @Steve-Mcl
571
- - Use solid colour as config node icon background to hide text overflow (#3710) @Steve-Mcl
572
- - Increase quick-add height to reveal 2 most recent entries (#3711) @Steve-Mcl
573
- - Set default editor to monaco in absence of user preference (#3702) @knolleary
574
- - Add Japanese translations for v3.0-beta.3 (#3688) @kazuhitoyokoi
575
- - Fix handling of spacebar inside JSON visual editor (#3687) @knolleary
576
- - Fix menu padding to handle both icons and submenus (#3686) @knolleary
577
- - Include scroll offset when positioning quick-add dialog (#3685) @knolleary
578
-
579
- Runtime
580
-
581
- - Allow flows to be stopped and started manually (#3719) @knolleary
582
- - Import default export if node is a transpiled es module (#3669) @dschmidt
583
- - Leave Monaco theme commented out by default (#3704) @bonanitech
584
-
585
- Nodes
586
-
587
- - CSV: Fix CSV node to handle when outputting text fields (#3716) @dceejay
588
- - Delay: Fix delay rate limit last timing when empty (#3709) @dceejay
589
- - Link: Ensure link-call cache is updated when link-in is modified (#3695) @Steve-Mcl
590
- - Join: Join node in reduce mode doesn't keep existing msg properties (#3670) @dceejay
591
- - Template: Add support for evalulating {{env.<var>}} within a template node (#3690) @cow0w
592
-
593
- #### 3.0.0-beta.3: Beta Release
594
-
595
- Editor
596
-
597
- - Add Right-Click content menu (#3678) @knolleary
598
- - Fix disable junction (#3671) @HiroyasuNishiyama
599
- - Add Japanese translations for v2.2.3 (#3672) @kazuhitoyokoi
600
- - Reset mouse state when switching tabs (#3643) @knolleary
601
- - Fix uncorrect fix of junction to subflow conversion (#3666) @HiroyasuNishiyama
602
- - Fix undoing junction to subflow (#3653) @HiroyasuNishiyama
603
- - Fix conversion of junction to subflow (#3652) @HiroyasuNishiyama
604
- - Fix to include junction to exported nodes (#3650) @HiroyasuNishiyama
605
- - Fix z-index value for shade to cover nodes in palette (#3649) @kazuhitoyokoi
606
- - Fix to extend escaped subflow category characters (#3647) @HiroyasuNishiyama
607
- - Fix to sanitize tab name (#3646) @HiroyasuNishiyama
608
- - Fix selector placement (#3644) @bonanitech
609
- - Add Japanese translations for v3.0-beta.2 (#3622) @kazuhitoyokoi
610
- - Fix new folder menu of save to library dialog (#3633) @HiroyasuNishiyama
611
- - Fix layer of palette node (#3638) @HiroyasuNishiyama
612
- - Fix to place a node dragged from palette within the workspace (#3637) @HiroyasuNishiyama
613
- - Fix typo in CSS (#3628) @bonanitech
614
- - Use the correct variable for the gutter text color (#3615) @bonanitech
615
-
616
-
617
- Runtime
618
-
619
- - Support loading node modules from `nodesdir` (#3676) @Steve-Mcl
620
- - fix buffer parse error message of evaluateNodeProperty (#3624) @HiroyasuNishiyama
621
-
622
- Nodes
623
-
624
- - File: Further simplify file node filename entry UX (v3) (#3677) @Steve-Mcl
625
- - Function: Fix initial cursor position of init/finalize tab of function node (#3674) @HiroyasuNishiyama
626
- - Function: Fix ESM module loading in Function node (#3645) @knolleary
627
- - Inject: Fix JSONata evaluation of inject button (#3632) @HiroyasuNishiyama
628
- - TCP: Dont delete TCP socket twice (#3630) @Steve-Mcl
629
- - MQTT Node: define noproxy variable (#3626) @Steve-Mcl
630
- - Debug: i18n debug sidebar node label (#3623) @HiroyasuNishiyama
631
-
632
- #### 3.0.0-beta.2: Beta Release
633
-
634
- **Migration from 2.x**
635
-
636
- - The 'slice wires' action has changed from Ctrl-RightMouseButton to Alt-LeftMouseButton
637
-
638
- Editor
639
-
640
- - Rework Junctions to be more node like in their event handling (#3607) @knolleary
641
- - Change slicing / slice-junction operations over to mouse button 0 (Left Mouse Button) (#3609) @Steve-Mcl
642
- - Do not slice-junction link node wires (#3608) @knolleary
643
- - Handle many-to-one slicing of wires (#3604) @knolleary
644
- - Ensure ACE worker options are set (#3611) @Steve-Mcl
645
- - Remove duplicate history add of ungroup event (#3605) @knolleary
646
- - use text width instead of number of characters for deciding select fi… (#3603) @HiroyasuNishiyama
647
- - Update Japanese info of link call node reflecting update of English info (#3600) @HiroyasuNishiyama
648
- - Fix typedInput label not visible on themes (#3580) @bonanitech
649
- - Fix project switching when junctions are present (#3595) @Steve-Mcl
650
- - Fix junction: when wiring from a regular nodes INPUT, backwards to a junction (#3591) @Steve-Mcl
651
- - Fix error initialising flow tab editor (#3585) @Steve-Mcl
652
- - Add Japanese translations for v3.0-beta.1 (#3576) @kazuhitoyokoi
653
- - Fix image paths where `red/image/typedInput/XXXX.png` should be `red/image/typedInput/XXXX.svg` (#3592) @kazuhitoyokoi
654
- - Fix browser console error Uncaught TypeError when searching certain terms (#3584) @Steve-Mcl
655
-
656
- Runtime
657
-
658
- - fix error on system-info action (#3589) @HiroyasuNishiyama
659
-
660
- Nodes
661
-
662
- - I18n switch rule selector (#3602) @HiroyasuNishiyama
663
- - Handle removal of event handlers to allow mqtt client.end() to work (#3594) @PhilDay-CT
664
- - update link-call node info according to current behavior (#3597) @HiroyasuNishiyama
665
-
666
-
667
- #### 3.0.0-beta.1: Beta Release
668
-
669
- **Migration from 2.x**
670
-
671
- - Node-RED now requires Node.js 14.x or later.
672
- - New installs of Node-RED will default to the monaco editor.
673
-
674
-
675
- Editor
676
-
677
- - Add Junctions (#3462) @knolleary
678
- - Allow node name to be auto-generated when added (#3478, #3538) @knolleary
679
- - Set monaco as default code editor as of v3.x (#3543) @Steve-Mcl
680
- - Update Monaco to V0.33.0 (#3522) @Steve-Mcl
681
- - Auto-complete Improvements (#3521) @Steve-Mcl
682
- - Add a tooltip to debug sidebar messages to reveal full path to node (#3503) @knolleary
683
- - Fix down arrow triggering menu in search box (#3507) @Steve-Mcl
684
- - Add Japanese translations for v3.0 (#3512) @kazuhitoyokoi
685
- - Add feature: Continuous search tools (search previous, search next) (#3405) @Steve-Mcl
686
- - Add feature: split-wire-to-links (#3399, #3476) @Steve-Mcl
687
- - Add copy button to node properties tables (#3390) @knolleary
688
- - Add info-tab search options dropdown to the regular search (#3395) @Steve-Mcl
689
- - New Feature: Add ability to find modified nodes/flows. (#3392) @Steve-Mcl
690
- - Code editor ux improvements around remembering state of each code editor in a flow (#3553) @Steve-Mcl
691
- - Make it easier to apply themes on SVG icons (#3515) @bonanitech
692
- - Add support of property validation message (#3438) @HiroyasuNishiyama
693
- - Ensure node validation tooltip is closed when field becomes valid (#3570) @knolleary
694
- - Add "search for" buttons to notifications (#3567) @Steve-Mcl
695
- - Don't let themes change node config colors (#3564) @bonanitech
696
- - Fix gap between typedInput containers borders (#3560) @bonanitech
697
- - Fix recording removed links in edit history (#3547) @knolleary
698
- - Remove unused SASS vars (#3536) @bonanitech
699
- - Add custom style for jQuery widgets borders (#3537) @bonanitech
700
- - fix out of scope reference of hasUnusedConfig variable (#3535) @HiroyasuNishiyama
701
- - correct "non string" check parenthesis (#3524) @Steve-Mcl
702
- - Ensure i18n of scoped package name (#3516) @Steve-Mcl
703
- - Prevent shortcut deploy when deploy button shaded (#3517) @Steve-Mcl
704
- - Fix: Sidebar "Configuration" filter button tooltip (#3500) @ralphwetzel
705
- - Add the ability to customize diff colors even more (#3499) @bonanitech
706
- - Do JSON comparison of old value/new value in editor (#3481) @Steve-Mcl
707
- - Fix nodes losing their wires when in an iframe (#3484) @zettca
708
- - Improve scroll into view (#3468) @Steve-Mcl
709
- - Do not show 1st tab if hidden when loading (#3464) @Steve-Mcl
710
-
711
- Runtime
712
-
713
- - Fix importing external module from node-red module (#3541) @knolleary
714
- - Add support for multiple static paths with optional static root (#3542) @Steve-Mcl
715
- - Store external token when authenticating if provided (#3460) @ArFe
716
- - Support OAuth/OpenID logout (#3388) @mw75
717
- - Allow adminAuth to auto-login users when using passport strategy (#3519) @knolleary
718
- - Add runtime diagnostics admin endpoint (#3511) @Steve-Mcl
719
- - Don't start if user has no home directory (#3540) @hardillb
720
- - Error on invalid encrypted credentials (#3498) @sammachin
721
-
722
- Nodes
723
-
724
- - Debug: Add message count option to Debug status (#3544 #3551) @rafaelmuynarsk @knolleary
725
- - File: Change basic Filename field to a typedInput (#3533) @Steve-Mcl
726
- - HTTP Request: Add UI for Http Request node headers (#3488) @Steve-Mcl
727
- - Inject: let inject optionally fire at start in only at time mode. (#3385) @dceejay
728
- - Link Call: Dynamic link call (#3463) @Steve-Mcl
729
- - Link Call: Display link targets of nodes in a regular flow, for Link Call nodes inside a subflow (#3528) @Steve-Mcl
730
- - MQTT: MQTT payload auto parsing improvements (#3530) @Steve-Mcl
731
- - MQTT: Add client and Runtime MQTT topic validation (#3563) @Steve-Mcl [dev]
732
- - MQTT: save and restore v5 config user props (#3562) @Steve-Mcl
733
- - MQTT: Fix incorrect MQTT status (#3552) @Steve-Mcl
734
- - MQTT: fix reference error of msg.status in debug node (#3526) @HiroyasuNishiyama
735
- - MQTT: Add unit tests for MQTT nodes (#3497) @Steve-Mcl
736
- - MQTT: fix typo of will properties (#3502) @Steve-Mcl
737
- - MQTT: ensure mqtt v5 props can be set false (#3472) @Steve-Mcl
738
- - Switch: add check for NaN in is of type number to be false (#3409) @dceejay
739
- - TCP: TCP node better split (#3465) @dceejay
740
- - Watch: Update Watch node to use node-watch module (#3559 #3569) @knolleary
741
- - WebSocket: call done after ws disconnects (#3531) @Steve-Mcl
742
-
743
119
  #### Older Releases
744
120
 
745
121
  Change logs for older releases are available on GitHub: https://github.com/node-red/node-red/releases