mirror of
https://github.com/node-red/node-red
synced 2024-11-21 15:43:16 +00:00
Bump for beta.2
This commit is contained in:
parent
d396f50a9a
commit
ea95552285
21
CHANGELOG.md
21
CHANGELOG.md
@ -1,3 +1,24 @@
|
|||||||
|
#### 4.0.0-beta.2: Beta Release
|
||||||
|
|
||||||
|
Editor
|
||||||
|
|
||||||
|
- Introduce multiplayer feature (#4629) @knolleary
|
||||||
|
- Separate the "add new config-node" option into a new (+) button (#4627) @GogoVega
|
||||||
|
- Retain Palette categories collapsed and filter to localStorage (#4634) @knolleary
|
||||||
|
- Ensure palette filter reapplies and clear up unknown categories (#4637) @knolleary
|
||||||
|
- Add support for plugin (only) modules to the palette manager (#4620) @knolleary
|
||||||
|
- Update monaco to latest and node types to 18 LTS (#4615) @Steve-Mcl
|
||||||
|
|
||||||
|
Runtime
|
||||||
|
|
||||||
|
- Fix handling of subflow config-node select type in sf module (#4643) @knolleary
|
||||||
|
- Comms API updates (#4628) @knolleary
|
||||||
|
- Add French translations for 4.0.0-beta.1 (#4621) @GogoVega
|
||||||
|
- Add Japanese translations for 4.0.0-beta.1 (#4612) @kazuhitoyokoi
|
||||||
|
|
||||||
|
Nodes
|
||||||
|
- Fix change node handling of replacing with boolean (#4639) @knolleary
|
||||||
|
|
||||||
#### 4.0.0-beta.1: Beta Release
|
#### 4.0.0-beta.1: Beta Release
|
||||||
|
|
||||||
Editor
|
Editor
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "node-red",
|
"name": "node-red",
|
||||||
"version": "4.0.0-beta.1",
|
"version": "4.0.0-beta.2",
|
||||||
"description": "Low-code programming for event-driven applications",
|
"description": "Low-code programming for event-driven applications",
|
||||||
"homepage": "https://nodered.org",
|
"homepage": "https://nodered.org",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@node-red/editor-api",
|
"name": "@node-red/editor-api",
|
||||||
"version": "4.0.0-beta.1",
|
"version": "4.0.0-beta.2",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"main": "./lib/index.js",
|
"main": "./lib/index.js",
|
||||||
"repository": {
|
"repository": {
|
||||||
@ -16,8 +16,8 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@node-red/util": "4.0.0-beta.1",
|
"@node-red/util": "4.0.0-beta.2",
|
||||||
"@node-red/editor-client": "4.0.0-beta.1",
|
"@node-red/editor-client": "4.0.0-beta.2",
|
||||||
"bcryptjs": "2.4.3",
|
"bcryptjs": "2.4.3",
|
||||||
"body-parser": "1.20.2",
|
"body-parser": "1.20.2",
|
||||||
"clone": "2.1.2",
|
"clone": "2.1.2",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@node-red/editor-client",
|
"name": "@node-red/editor-client",
|
||||||
"version": "4.0.0-beta.1",
|
"version": "4.0.0-beta.2",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
BIN
packages/node_modules/@node-red/editor-client/src/tours/images/nr4-config-select.png
vendored
Normal file
BIN
packages/node_modules/@node-red/editor-client/src/tours/images/nr4-config-select.png
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.4 KiB |
BIN
packages/node_modules/@node-red/editor-client/src/tours/images/nr4-multiplayer.png
vendored
Normal file
BIN
packages/node_modules/@node-red/editor-client/src/tours/images/nr4-multiplayer.png
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 36 KiB |
@ -1,12 +1,12 @@
|
|||||||
export default {
|
export default {
|
||||||
version: "4.0.0-beta.1",
|
version: "4.0.0-beta.2",
|
||||||
steps: [
|
steps: [
|
||||||
{
|
{
|
||||||
titleIcon: "fa fa-map-o",
|
titleIcon: "fa fa-map-o",
|
||||||
title: {
|
title: {
|
||||||
"en-US": "Welcome to Node-RED 4.0 Beta 1!",
|
"en-US": "Welcome to Node-RED 4.0 Beta 2!",
|
||||||
"ja": "Node-RED 4.0 Beta 1へようこそ!",
|
"ja": "Node-RED 4.0 Beta 2へようこそ!",
|
||||||
"fr": "Bienvenue dans Node-RED 4.0 Beta 1!"
|
"fr": "Bienvenue dans Node-RED 4.0 Beta 2!"
|
||||||
},
|
},
|
||||||
description: {
|
description: {
|
||||||
"en-US": "<p>Let's take a moment to discover the new features in this release.</p>",
|
"en-US": "<p>Let's take a moment to discover the new features in this release.</p>",
|
||||||
@ -14,6 +14,57 @@ export default {
|
|||||||
"fr": "<p>Prenons un moment pour découvrir les nouvelles fonctionnalités de cette version.</p>"
|
"fr": "<p>Prenons un moment pour découvrir les nouvelles fonctionnalités de cette version.</p>"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: {
|
||||||
|
"en-US": "Multiplayer Mode"
|
||||||
|
},
|
||||||
|
image: 'images/nr4-multiplayer.png',
|
||||||
|
description: {
|
||||||
|
"en-US": `<p>This release includes the first small steps towards making Node-RED easier
|
||||||
|
to work with when you have multiple people editing flows at the same time.</p>
|
||||||
|
<p>When this feature is enabled, you will now see who else has the editor open and some
|
||||||
|
basic information on where they are in the editor.</p>
|
||||||
|
<p>Check the release post for details on how to enable this feature in your settings file.</p>`
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: {
|
||||||
|
"en-US": "Better Configuration Node UX"
|
||||||
|
},
|
||||||
|
image: 'images/nr4-config-select.png',
|
||||||
|
description: {
|
||||||
|
"en-US": `<p>The Configuration node selection UI has had a small update to have a dedicated 'add' button
|
||||||
|
next to the select box.</p>
|
||||||
|
<p>It's a small change, but should make it easier to work with your config nodes.</p>`
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: {
|
||||||
|
"en-US": "Remembering palette state"
|
||||||
|
},
|
||||||
|
description: {
|
||||||
|
"en-US": `<p>The palette now remembers what categories you have hidden between reloads - as well as any
|
||||||
|
filter you have applied.</p>`
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: {
|
||||||
|
"en-US": "Plugins shown in the Palette Manager"
|
||||||
|
},
|
||||||
|
description: {
|
||||||
|
"en-US": `<p>The palette manager now shows any plugin modules you have installed, such as
|
||||||
|
<code>node-red-debugger</code>. Previously they would only be shown if they plugin include
|
||||||
|
nodes for the palette.</p>`
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: {
|
||||||
|
"en-US": "Thats if for Beta 2!"
|
||||||
|
},
|
||||||
|
description: {
|
||||||
|
"en-US": `<p>Keep clicking through to see what was added in Beta 1</p>`
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: {
|
title: {
|
||||||
"en-US": "Timestamp formatting options",
|
"en-US": "Timestamp formatting options",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@node-red/nodes",
|
"name": "@node-red/nodes",
|
||||||
"version": "4.0.0-beta.1",
|
"version": "4.0.0-beta.2",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@node-red/registry",
|
"name": "@node-red/registry",
|
||||||
"version": "4.0.0-beta.1",
|
"version": "4.0.0-beta.2",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"main": "./lib/index.js",
|
"main": "./lib/index.js",
|
||||||
"repository": {
|
"repository": {
|
||||||
@ -16,7 +16,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@node-red/util": "4.0.0-beta.1",
|
"@node-red/util": "4.0.0-beta.2",
|
||||||
"clone": "2.1.2",
|
"clone": "2.1.2",
|
||||||
"fs-extra": "11.1.1",
|
"fs-extra": "11.1.1",
|
||||||
"semver": "7.5.4",
|
"semver": "7.5.4",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@node-red/runtime",
|
"name": "@node-red/runtime",
|
||||||
"version": "4.0.0-beta.1",
|
"version": "4.0.0-beta.2",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"main": "./lib/index.js",
|
"main": "./lib/index.js",
|
||||||
"repository": {
|
"repository": {
|
||||||
@ -16,8 +16,8 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@node-red/registry": "4.0.0-beta.1",
|
"@node-red/registry": "4.0.0-beta.2",
|
||||||
"@node-red/util": "4.0.0-beta.1",
|
"@node-red/util": "4.0.0-beta.2",
|
||||||
"async-mutex": "0.4.0",
|
"async-mutex": "0.4.0",
|
||||||
"clone": "2.1.2",
|
"clone": "2.1.2",
|
||||||
"express": "4.19.2",
|
"express": "4.19.2",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@node-red/util",
|
"name": "@node-red/util",
|
||||||
"version": "4.0.0-beta.1",
|
"version": "4.0.0-beta.2",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
10
packages/node_modules/node-red/package.json
vendored
10
packages/node_modules/node-red/package.json
vendored
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "node-red",
|
"name": "node-red",
|
||||||
"version": "4.0.0-beta.1",
|
"version": "4.0.0-beta.2",
|
||||||
"description": "Low-code programming for event-driven applications",
|
"description": "Low-code programming for event-driven applications",
|
||||||
"homepage": "https://nodered.org",
|
"homepage": "https://nodered.org",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
@ -31,10 +31,10 @@
|
|||||||
"flow"
|
"flow"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@node-red/editor-api": "4.0.0-beta.1",
|
"@node-red/editor-api": "4.0.0-beta.2",
|
||||||
"@node-red/runtime": "4.0.0-beta.1",
|
"@node-red/runtime": "4.0.0-beta.2",
|
||||||
"@node-red/util": "4.0.0-beta.1",
|
"@node-red/util": "4.0.0-beta.2",
|
||||||
"@node-red/nodes": "4.0.0-beta.1",
|
"@node-red/nodes": "4.0.0-beta.2",
|
||||||
"basic-auth": "2.0.1",
|
"basic-auth": "2.0.1",
|
||||||
"bcryptjs": "2.4.3",
|
"bcryptjs": "2.4.3",
|
||||||
"express": "4.19.2",
|
"express": "4.19.2",
|
||||||
|
Loading…
Reference in New Issue
Block a user