node-red 3.0.0-beta.2 → 3.0.0-beta.3
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 +39 -0
- package/package.json +5 -5
- package/settings.js +74 -74
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,42 @@
|
|
|
1
|
+
#### 3.0.0-beta.3: Beta Release
|
|
2
|
+
|
|
3
|
+
Editor
|
|
4
|
+
|
|
5
|
+
- Add Right-Click content menu (#3678) @knolleary
|
|
6
|
+
- Fix disable junction (#3671) @HiroyasuNishiyama
|
|
7
|
+
- Add Japanese translations for v2.2.3 (#3672) @kazuhitoyokoi
|
|
8
|
+
- Reset mouse state when switching tabs (#3643) @knolleary
|
|
9
|
+
- Fix uncorrect fix of junction to subflow conversion (#3666) @HiroyasuNishiyama
|
|
10
|
+
- Fix undoing junction to subflow (#3653) @HiroyasuNishiyama
|
|
11
|
+
- Fix conversion of junction to subflow (#3652) @HiroyasuNishiyama
|
|
12
|
+
- Fix to include junction to exported nodes (#3650) @HiroyasuNishiyama
|
|
13
|
+
- Fix z-index value for shade to cover nodes in palette (#3649) @kazuhitoyokoi
|
|
14
|
+
- Fix to extend escaped subflow category characters (#3647) @HiroyasuNishiyama
|
|
15
|
+
- Fix to sanitize tab name (#3646) @HiroyasuNishiyama
|
|
16
|
+
- Fix selector placement (#3644) @bonanitech
|
|
17
|
+
- Add Japanese translations for v3.0-beta.2 (#3622) @kazuhitoyokoi
|
|
18
|
+
- Fix new folder menu of save to library dialog (#3633) @HiroyasuNishiyama
|
|
19
|
+
- Fix layer of palette node (#3638) @HiroyasuNishiyama
|
|
20
|
+
- Fix to place a node dragged from palette within the workspace (#3637) @HiroyasuNishiyama
|
|
21
|
+
- Fix typo in CSS (#3628) @bonanitech
|
|
22
|
+
- Use the correct variable for the gutter text color (#3615) @bonanitech
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
Runtime
|
|
26
|
+
|
|
27
|
+
- Support loading node modules from `nodesdir` (#3676) @Steve-Mcl
|
|
28
|
+
- fix buffer parse error message of evaluateNodeProperty (#3624) @HiroyasuNishiyama
|
|
29
|
+
|
|
30
|
+
Nodes
|
|
31
|
+
|
|
32
|
+
- File: Further simplify file node filename entry UX (v3) (#3677) @Steve-Mcl
|
|
33
|
+
- Function: Fix initial cursor position of init/finalize tab of function node (#3674) @HiroyasuNishiyama
|
|
34
|
+
- Function: Fix ESM module loading in Function node (#3645) @knolleary
|
|
35
|
+
- Inject: Fix JSONata evaluation of inject button (#3632) @HiroyasuNishiyama
|
|
36
|
+
- TCP: Dont delete TCP socket twice (#3630) @Steve-Mcl
|
|
37
|
+
- MQTT Node: define noproxy variable (#3626) @Steve-Mcl
|
|
38
|
+
- Debug: i18n debug sidebar node label (#3623) @HiroyasuNishiyama
|
|
39
|
+
|
|
1
40
|
#### 3.0.0-beta.2: Beta Release
|
|
2
41
|
|
|
3
42
|
**Migration from 2.x**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-red",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.3",
|
|
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": "3.0.0-beta.
|
|
35
|
-
"@node-red/runtime": "3.0.0-beta.
|
|
36
|
-
"@node-red/util": "3.0.0-beta.
|
|
37
|
-
"@node-red/nodes": "3.0.0-beta.
|
|
34
|
+
"@node-red/editor-api": "3.0.0-beta.3",
|
|
35
|
+
"@node-red/runtime": "3.0.0-beta.3",
|
|
36
|
+
"@node-red/util": "3.0.0-beta.3",
|
|
37
|
+
"@node-red/nodes": "3.0.0-beta.3",
|
|
38
38
|
"basic-auth": "2.0.1",
|
|
39
39
|
"bcryptjs": "2.4.3",
|
|
40
40
|
"express": "4.18.1",
|
package/settings.js
CHANGED
|
@@ -249,18 +249,18 @@ module.exports = {
|
|
|
249
249
|
* - externalModules
|
|
250
250
|
******************************************************************************/
|
|
251
251
|
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
252
|
+
/** Uncomment the following to run node-red in your preferred language.
|
|
253
|
+
* Available languages include: en-US (default), ja, de, zh-CN, zh-TW, ru, ko
|
|
254
|
+
* Some languages are more complete than others.
|
|
255
|
+
*/
|
|
256
|
+
// lang: "de",
|
|
257
257
|
|
|
258
258
|
/** Configure diagnostics options
|
|
259
259
|
* - enabled: When `enabled` is `true` (or unset), diagnostics data will
|
|
260
260
|
* be available at http://localhost:1880/diagnostics
|
|
261
261
|
* - ui: When `ui` is `true` (or unset), the action `show-system-info` will
|
|
262
262
|
* be available to logged in users of node-red editor
|
|
263
|
-
|
|
263
|
+
*/
|
|
264
264
|
diagnostics: {
|
|
265
265
|
/** enable or disable diagnostics endpoint. Must be set to `false` to disable */
|
|
266
266
|
enabled: true,
|
|
@@ -268,74 +268,74 @@ module.exports = {
|
|
|
268
268
|
ui: true,
|
|
269
269
|
},
|
|
270
270
|
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
271
|
+
/** Configure the logging output */
|
|
272
|
+
logging: {
|
|
273
|
+
/** Only console logging is currently supported */
|
|
274
|
+
console: {
|
|
275
|
+
/** Level of logging to be recorded. Options are:
|
|
276
|
+
* fatal - only those errors which make the application unusable should be recorded
|
|
277
|
+
* error - record errors which are deemed fatal for a particular request + fatal errors
|
|
278
|
+
* warn - record problems which are non fatal + errors + fatal errors
|
|
279
|
+
* info - record information about the general running of the application + warn + error + fatal errors
|
|
280
|
+
* debug - record information which is more verbose than info + info + warn + error + fatal errors
|
|
281
|
+
* trace - record very detailed logging + debug + info + warn + error + fatal errors
|
|
282
|
+
* off - turn off all logging (doesn't affect metrics or audit)
|
|
283
|
+
*/
|
|
284
|
+
level: "info",
|
|
285
|
+
/** Whether or not to include metric events in the log output */
|
|
286
|
+
metrics: false,
|
|
287
|
+
/** Whether or not to include audit events in the log output */
|
|
288
|
+
audit: false
|
|
289
|
+
}
|
|
290
|
+
},
|
|
291
|
+
|
|
292
|
+
/** Context Storage
|
|
293
|
+
* The following property can be used to enable context storage. The configuration
|
|
294
|
+
* provided here will enable file-based context that flushes to disk every 30 seconds.
|
|
295
|
+
* Refer to the documentation for further options: https://nodered.org/docs/api/context/
|
|
296
|
+
*/
|
|
297
|
+
//contextStorage: {
|
|
298
|
+
// default: {
|
|
299
|
+
// module:"localfilesystem"
|
|
300
|
+
// },
|
|
301
|
+
//},
|
|
302
|
+
|
|
303
|
+
/** `global.keys()` returns a list of all properties set in global context.
|
|
304
|
+
* This allows them to be displayed in the Context Sidebar within the editor.
|
|
305
|
+
* In some circumstances it is not desirable to expose them to the editor. The
|
|
306
|
+
* following property can be used to hide any property set in `functionGlobalContext`
|
|
307
|
+
* from being list by `global.keys()`.
|
|
308
|
+
* By default, the property is set to false to avoid accidental exposure of
|
|
309
|
+
* their values. Setting this to true will cause the keys to be listed.
|
|
310
|
+
*/
|
|
311
|
+
exportGlobalContextKeys: false,
|
|
312
|
+
|
|
313
|
+
/** Configure how the runtime will handle external npm modules.
|
|
314
|
+
* This covers:
|
|
315
|
+
* - whether the editor will allow new node modules to be installed
|
|
316
|
+
* - whether nodes, such as the Function node are allowed to have their
|
|
317
|
+
* own dynamically configured dependencies.
|
|
318
|
+
* The allow/denyList options can be used to limit what modules the runtime
|
|
319
|
+
* will install/load. It can use '*' as a wildcard that matches anything.
|
|
320
|
+
*/
|
|
321
|
+
externalModules: {
|
|
322
|
+
// autoInstall: false, /** Whether the runtime will attempt to automatically install missing modules */
|
|
323
|
+
// autoInstallRetry: 30, /** Interval, in seconds, between reinstall attempts */
|
|
324
|
+
// palette: { /** Configuration for the Palette Manager */
|
|
325
|
+
// allowInstall: true, /** Enable the Palette Manager in the editor */
|
|
326
|
+
// allowUpdate: true, /** Allow modules to be updated in the Palette Manager */
|
|
327
|
+
// allowUpload: true, /** Allow module tgz files to be uploaded and installed */
|
|
328
|
+
// allowList: ['*'],
|
|
329
|
+
// denyList: [],
|
|
330
|
+
// allowUpdateList: ['*'],
|
|
331
|
+
// denyUpdateList: []
|
|
332
|
+
// },
|
|
333
|
+
// modules: { /** Configuration for node-specified modules */
|
|
334
|
+
// allowInstall: true,
|
|
335
|
+
// allowList: [],
|
|
336
|
+
// denyList: []
|
|
337
|
+
// }
|
|
338
|
+
},
|
|
339
339
|
|
|
340
340
|
|
|
341
341
|
/*******************************************************************************
|