Bump for 4.1.8 release

pull/5586/head
Nick O'Leary 2026-03-24 11:21:51 +00:00
parent a05cd9bc23
commit 03b0aa3e87
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9
10 changed files with 31 additions and 19 deletions

View File

@ -1,3 +1,15 @@
#### 4.1.8: Maintenance Release
- Add badges to func node tabs with code in (#5585) @knolleary
- Fix typo in French link node description (#5530) @LPe7
- Encode branch name in delete request (#5584) @knolleary
- Introduce `show-first-tab` and `show-last-tab` actions (#5583) @GogoVega
- Fix "connected to ..." log string in tcp in/out nodes using TLS (#5484) @marcows
- TreeList: Fix arrow navigation through filtered TreeList (#5431) @piotrbogun
- Update tar dependency (#5582) @knolleary
- Allow Node-RED section of help sidebar to be hidden (#5581) @knolleary
- Allow theme plugin to override settings and add menu options (#5580) @knolleary
#### 4.1.7: Maintenance Release
- Do not block touch events on ports (#5527) @knolleary

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "node-red",
"version": "4.1.7",
"version": "4.1.8",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "node-red",
"version": "4.1.7",
"version": "4.1.8",
"license": "Apache-2.0",
"dependencies": {
"acorn": "8.16.0",

View File

@ -1,6 +1,6 @@
{
"name": "node-red",
"version": "4.1.7",
"version": "4.1.8",
"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.1.7",
"version": "4.1.8",
"license": "Apache-2.0",
"main": "./lib/index.js",
"repository": {
@ -16,8 +16,8 @@
}
],
"dependencies": {
"@node-red/util": "4.1.7",
"@node-red/editor-client": "4.1.7",
"@node-red/util": "4.1.8",
"@node-red/editor-client": "4.1.8",
"bcryptjs": "3.0.3",
"body-parser": "1.20.4",
"clone": "2.1.2",

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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