Merge pull request #4990 from node-red/rel406

Update for 4.0.6
pull/4995/head 4.0.6
Nick O'Leary 2024-12-16 13:56:46 +00:00 committed by GitHub
commit 7a3741165b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
9 changed files with 50 additions and 17 deletions

View File

@ -1,3 +1,36 @@
#### 4.0.6: Maintenance Release
Editor
- Roll up various fixes on config node change history (#4975) @knolleary
- Add quotes when installing local tgz to fix spacing in the file path (#4949) @AGhorab-upland
- Validate json dropped into editor to avoid unhelpful error messages (#4964) @knolleary
- Fix junction insert position via context menu (#4974) @knolleary
- Apply zoom scale when calculating annotation positions (#4981) @knolleary
- Handle the import of an incomplete Subflow (#4811) @GogoVega
- Fix updating the Subflow name during a copy (#4809) @GogoVega
- Rename variable to avoid confusion in view.js (#4963) @knolleary
- Change groups.length to groups.size (#4959) @hungtcs
- Remove disabled node types from QuickAddDialog list (#4946) @GogoVega
- Fix `setModulePendingUpdated` with plugins (#4939) @GogoVega
- Missing getSubscriptions in the docs while its implemented (#4934) @ersinpw
- Apply `envVarExcludes` setting to `util.getSetting` into the function node (#4925) @GogoVega
- Fix `envVar` editable list should be sortable (#4932) @GogoVega
- Improve the node name auto-generated with the first available number (#4912) @GogoVega
Runtime
- Get the env config node from the parent subflow (#4960) @GogoVega
- Update dependencies (#4987) @knolleary
Nodes
- Performance : make reading single buffer / string file faster by not re-allocating and handling huge buffers (#4980) @Fadoli
- Make delay node rate limit reset consistent - not send on reset. (#4940) @dceejay
- Fix trigger node date handling for latest time type input (#4915) @dceejay
- Fix delay node not dropping when nodeMessageBufferMaxLength is set (#4973)
- Ensure node.sep is honoured when generating CSV (#4982) @knolleary
#### 4.0.5: Maintenance Release
Editor

View File

@ -1,6 +1,6 @@
{
"name": "node-red",
"version": "4.0.5",
"version": "4.0.6",
"description": "Low-code programming for event-driven applications",
"homepage": "https://nodered.org",
"license": "Apache-2.0",

View File

@ -1,6 +1,6 @@
{
"name": "@node-red/editor-api",
"version": "4.0.5",
"version": "4.0.6",
"license": "Apache-2.0",
"main": "./lib/index.js",
"repository": {
@ -16,8 +16,8 @@
}
],
"dependencies": {
"@node-red/util": "4.0.5",
"@node-red/editor-client": "4.0.5",
"@node-red/util": "4.0.6",
"@node-red/editor-client": "4.0.6",
"bcryptjs": "2.4.3",
"body-parser": "1.20.3",
"clone": "2.1.2",

View File

@ -1,6 +1,6 @@
{
"name": "@node-red/editor-client",
"version": "4.0.5",
"version": "4.0.6",
"license": "Apache-2.0",
"repository": {
"type": "git",

View File

@ -1,6 +1,6 @@
{
"name": "@node-red/nodes",
"version": "4.0.5",
"version": "4.0.6",
"license": "Apache-2.0",
"repository": {
"type": "git",

View File

@ -1,6 +1,6 @@
{
"name": "@node-red/registry",
"version": "4.0.5",
"version": "4.0.6",
"license": "Apache-2.0",
"main": "./lib/index.js",
"repository": {
@ -16,7 +16,7 @@
}
],
"dependencies": {
"@node-red/util": "4.0.5",
"@node-red/util": "4.0.6",
"clone": "2.1.2",
"fs-extra": "11.2.0",
"semver": "7.6.3",

View File

@ -1,6 +1,6 @@
{
"name": "@node-red/runtime",
"version": "4.0.5",
"version": "4.0.6",
"license": "Apache-2.0",
"main": "./lib/index.js",
"repository": {
@ -16,8 +16,8 @@
}
],
"dependencies": {
"@node-red/registry": "4.0.5",
"@node-red/util": "4.0.5",
"@node-red/registry": "4.0.6",
"@node-red/util": "4.0.6",
"async-mutex": "0.5.0",
"clone": "2.1.2",
"express": "4.21.2",

View File

@ -1,6 +1,6 @@
{
"name": "@node-red/util",
"version": "4.0.5",
"version": "4.0.6",
"license": "Apache-2.0",
"repository": {
"type": "git",

View File

@ -1,6 +1,6 @@
{
"name": "node-red",
"version": "4.0.5",
"version": "4.0.6",
"description": "Low-code programming for event-driven applications",
"homepage": "https://nodered.org",
"license": "Apache-2.0",
@ -31,10 +31,10 @@
"flow"
],
"dependencies": {
"@node-red/editor-api": "4.0.5",
"@node-red/runtime": "4.0.5",
"@node-red/util": "4.0.5",
"@node-red/nodes": "4.0.5",
"@node-red/editor-api": "4.0.6",
"@node-red/runtime": "4.0.6",
"@node-red/util": "4.0.6",
"@node-red/nodes": "4.0.6",
"basic-auth": "2.0.1",
"bcryptjs": "2.4.3",
"cors": "2.8.5",