Merge pull request #3797 from node-red/301

Update changelog and bump for 3.0.1
This commit is contained in:
Nick O'Leary 2022-07-22 10:27:46 +01:00 committed by GitHub
commit dc7fef6395
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 31 additions and 17 deletions

View File

@ -1,3 +1,17 @@
#### 3.0.1: Maintenance Release
Editor
- Allow codeEditor theme to be set even if `codeEditor` is not set in settings.js (#3794) @Steve-Mcl
- Sys info (diagnostics report) amendments (#3793) @Steve-Mcl
- Allow `mode` and `title` to be omitted in `options` argument for `createEditor` (#3791) @Steve-Mcl
- Fix focus issues (#3789) @Steve-Mcl
- Ensure all typedInput buttons have button type set (#3788) @knolleary
- Do not flag hasUsers=false nodes as unused in search (#3787) @knolleary
- Properly position quick-add dialog in all cases (#3786) @knolleary
- Ensure quick-add dialog does not obscure ghost node when shifted (#3785) @knolleary
- Remove use of Object.hasOwn (#3784) @knolleary
#### 3.0.0: Milestone Release
Editor

View File

@ -1,6 +1,6 @@
{
"name": "node-red",
"version": "3.0.0",
"version": "3.0.1",
"description": "Low-code programming for event-driven applications",
"homepage": "http://nodered.org",
"license": "Apache-2.0",

View File

@ -1,6 +1,6 @@
{
"name": "@node-red/editor-api",
"version": "3.0.0",
"version": "3.0.1",
"license": "Apache-2.0",
"main": "./lib/index.js",
"repository": {
@ -16,8 +16,8 @@
}
],
"dependencies": {
"@node-red/util": "3.0.0",
"@node-red/editor-client": "3.0.0",
"@node-red/util": "3.0.1",
"@node-red/editor-client": "3.0.1",
"bcryptjs": "2.4.3",
"body-parser": "1.20.0",
"clone": "2.1.2",

View File

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

View File

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

View File

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

View File

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

View File

@ -1,6 +1,6 @@
{
"name": "node-red",
"version": "3.0.0",
"version": "3.0.1",
"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",
"@node-red/runtime": "3.0.0",
"@node-red/util": "3.0.0",
"@node-red/nodes": "3.0.0",
"@node-red/editor-api": "3.0.1",
"@node-red/runtime": "3.0.1",
"@node-red/util": "3.0.1",
"@node-red/nodes": "3.0.1",
"basic-auth": "2.0.1",
"bcryptjs": "2.4.3",
"express": "4.18.1",