Merge pull request #5503 from node-red/rel416

Bump for 4.1.6 release
pull/5504/head 4.1.6
Nick O'Leary 2026-02-26 09:49:01 +00:00 committed by GitHub
commit f78e6b6944
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
10 changed files with 30 additions and 19 deletions

View File

@ -1,3 +1,14 @@
#### 4.1.6: Maintenance Release
- Allow palette.theme to be set via theme plugin and include icons (#5500) @knolleary
- Ensure config sidebar tooltip handles html content (#5501) @knolleary
- Allow node-red integrator access to available updates (#5499) @Steve-Mcl
- Add frontend pre and post debug message hooks (#5495) @Steve-Mcl
- Fix: allow middle-click panning over links and ports (#5496) @lklivingstone
- Support ctrl key to select configuration nodes (#5486) @kazuhitoyokoi
- Add § as shortcut meta-key (#5482) @gorenje
- Update dependencies (#5502) @knolleary
#### 4.1.5: Maintenance Release
- chore: bump tar to 7.5.7 (#5472) @bryopsida

4
package-lock.json generated
View File

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

View File

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

View File

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

View File

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

View File

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