Merge pull request #3764 from node-red/300

Node-RED 3.0 release
This commit is contained in:
Nick O'Leary
2022-07-14 09:49:05 +01:00
committed by GitHub
11 changed files with 77 additions and 561 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@node-red/editor-api",
"version": "3.0.0-beta.4",
"version": "3.0.0",
"license": "Apache-2.0",
"main": "./lib/index.js",
"repository": {
@@ -16,8 +16,8 @@
}
],
"dependencies": {
"@node-red/util": "3.0.0-beta.4",
"@node-red/editor-client": "3.0.0-beta.4",
"@node-red/util": "3.0.0",
"@node-red/editor-client": "3.0.0",
"bcryptjs": "2.4.3",
"body-parser": "1.20.0",
"clone": "2.1.2",
@@ -31,7 +31,7 @@
"oauth2orize": "1.11.1",
"passport-http-bearer": "1.0.1",
"passport-oauth2-client-password": "0.1.2",
"passport": "0.5.2",
"passport": "0.6.0",
"ws": "7.5.6"
},
"optionalDependencies": {

View File

@@ -1,6 +1,6 @@
{
"name": "@node-red/editor-client",
"version": "3.0.0-beta.4",
"version": "3.0.0",
"license": "Apache-2.0",
"repository": {
"type": "git",

View File

@@ -437,17 +437,17 @@ RED.tourGuide = (function() {
return [
{
id: "3_0",
label: "3.0.0-beta.4",
label: "3.0",
path: "./tours/welcome.js"
},
{
id: "2_2",
label: "2.2.0",
label: "2.2",
path: "./tours/2.2/welcome.js"
},
{
id: "2_1",
label: "2.1.0",
label: "2.1",
path: "./tours/2.1/welcome.js"
}
];

View File

@@ -1,15 +1,15 @@
export default {
version: "3.0.0-beta.4",
version: "3.0.0",
steps: [
{
titleIcon: "fa fa-map-o",
title: {
"en-US": "Welcome to Node-RED 3.0 Beta 4!",
"ja": "Node-RED 3.0 ベータ4へようこそ!"
"en-US": "Welcome to Node-RED 3.0!",
"ja": "Node-RED 3.0へようこそ!"
},
description: {
"en-US": "<p>This is another final beta release of Node-RED 3.0.</p><p>Let's take a moment to discover the new features in this release.</p>",
"ja": "<p>これはNode-RED 3.0のもう一つの最後のベータリリースです。</p><p>本リリースの新機能を見つけてみましょう。</p>"
"en-US": "<p>Let's take a moment to discover the new features in this release.</p>",
"ja": "<p>本リリースの新機能を見つけてみましょう。</p>"
}
},
{

View File

@@ -1,6 +1,6 @@
{
"name": "@node-red/nodes",
"version": "3.0.0-beta.4",
"version": "3.0.0",
"license": "Apache-2.0",
"repository": {
"type": "git",

View File

@@ -1,6 +1,6 @@
{
"name": "@node-red/registry",
"version": "3.0.0-beta.4",
"version": "3.0.0",
"license": "Apache-2.0",
"main": "./lib/index.js",
"repository": {
@@ -16,11 +16,11 @@
}
],
"dependencies": {
"@node-red/util": "3.0.0-beta.4",
"@node-red/util": "3.0.0",
"clone": "2.1.2",
"fs-extra": "10.1.0",
"semver": "7.3.7",
"tar": "6.1.11",
"uglify-js": "3.16.0"
"uglify-js": "3.16.2"
}
}

View File

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

View File

@@ -1,6 +1,6 @@
{
"name": "@node-red/util",
"version": "3.0.0-beta.4",
"version": "3.0.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
@@ -16,11 +16,11 @@
],
"dependencies": {
"fs-extra": "10.1.0",
"i18next": "21.8.10",
"i18next": "21.8.14",
"json-stringify-safe": "5.0.1",
"jsonata": "1.8.6",
"lodash.clonedeep": "^4.5.0",
"moment": "2.29.3",
"moment": "2.29.4",
"moment-timezone": "0.5.34"
}
}

View File

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