Bump for 4.0.4 release

This commit is contained in:
Nick O'Leary 2024-10-09 10:56:14 +01:00
parent acd500fe3d
commit 90ea3c15b3
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9
9 changed files with 34 additions and 17 deletions

View File

@ -1,3 +1,20 @@
#### 4.0.4: Maintenance Release
Editor
- Fix `link call` node can call out of a subflow (#4892) @GogoVega
- Fix wrong unlock state when event is triggered after deployment (#4889) @GogoVega
- i18n(App) update with latest language file changes (#4903) @joebordes
- fix typo: depreciated (#4895) @dxdc
Runtime
- Update dev dependencies (#4893) @knolleary
Nodes
- MQTT: Allow msg.userProperties to have number values (#4900) @hardillb
#### 4.0.3: Maintenance Release
Editor

View File

@ -1,6 +1,6 @@
{
"name": "node-red",
"version": "4.0.3",
"version": "4.0.4",
"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.3",
"version": "4.0.4",
"license": "Apache-2.0",
"main": "./lib/index.js",
"repository": {
@ -16,8 +16,8 @@
}
],
"dependencies": {
"@node-red/util": "4.0.3",
"@node-red/editor-client": "4.0.3",
"@node-red/util": "4.0.4",
"@node-red/editor-client": "4.0.4",
"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.3",
"version": "4.0.4",
"license": "Apache-2.0",
"repository": {
"type": "git",

View File

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

View File

@ -1,6 +1,6 @@
{
"name": "@node-red/registry",
"version": "4.0.3",
"version": "4.0.4",
"license": "Apache-2.0",
"main": "./lib/index.js",
"repository": {
@ -16,7 +16,7 @@
}
],
"dependencies": {
"@node-red/util": "4.0.3",
"@node-red/util": "4.0.4",
"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.3",
"version": "4.0.4",
"license": "Apache-2.0",
"main": "./lib/index.js",
"repository": {
@ -16,8 +16,8 @@
}
],
"dependencies": {
"@node-red/registry": "4.0.3",
"@node-red/util": "4.0.3",
"@node-red/registry": "4.0.4",
"@node-red/util": "4.0.4",
"async-mutex": "0.5.0",
"clone": "2.1.2",
"express": "4.21.1",

View File

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

View File

@ -1,6 +1,6 @@
{
"name": "node-red",
"version": "4.0.3",
"version": "4.0.4",
"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.3",
"@node-red/runtime": "4.0.3",
"@node-red/util": "4.0.3",
"@node-red/nodes": "4.0.3",
"@node-red/editor-api": "4.0.4",
"@node-red/runtime": "4.0.4",
"@node-red/util": "4.0.4",
"@node-red/nodes": "4.0.4",
"basic-auth": "2.0.1",
"bcryptjs": "2.4.3",
"cors": "2.8.5",