Update for 2.1.0-beta.2

This commit is contained in:
Nick O'Leary 2021-10-14 13:07:58 +01:00
parent b8f1386ad0
commit 6cb06c146d
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9
9 changed files with 52 additions and 22 deletions

View File

@ -1,3 +1,33 @@
#### 2.1.0-beta.2: Beta Release
Editor
- Fix switching projects (#3199) @knolleary
- Use locale setting when installing/enabling node (#3198) @knolleary
- Do not show projects-wecome dialog until welcome tour completes (#3197) @knolleary
- Fix converting selection to subflow (#3196) @knolleary
- Avoid conflicts with native browser cmd-ctrl type shortcuts (#3195) @knolleary
- Ensure message tools stay attached to top-level entry in Debug/Context (#3186) @knolleary
- Ensure tab state updates properly when toggling enable state (#3175) @knolleary
- Improve handling of long labels in TreeList (#3176) @knolleary
- Shift-click tab scroll arrows to jump to start/end (#3177) @knolleary
Runtime
- Update package dependencies
- Update to latest node-red-admin
Nodes
- Dynamic MQTT connections (#3189)
- Link: Filter out Link Out Return nodes in Link In edit dialog Fixes #3187
- Link: Fix link call label (#3200) @knolleary
- Debug: Redesign debug filter options and make them persistant (#3183) @knolleary
- Inject: Widen Inject interval box for >1 digit (#3184) @knolleary
- Switch: Fix rule focus when switch 'otherwise' rule is used (#3185) @knolleary
#### 2.1.0-beta.1: Beta Release
Editor
@ -46,7 +76,7 @@ Nodes
- Switch: Copy previous rule type when adding rule to switch node (#3170) @knolleary
- Delay node: add option to send intermediate messages on separate output (#3166) @knolleary
- Typo in http request set method translation (#3173) @mailsvb
#### 2.0.6: Maintenance Release
Editor

View File

@ -1,6 +1,6 @@
{
"name": "node-red",
"version": "2.1.0-beta.1",
"version": "2.1.0-beta.2",
"description": "Low-code programming for event-driven applications",
"homepage": "http://nodered.org",
"license": "Apache-2.0",
@ -50,7 +50,7 @@
"hash-sum": "2.0.0",
"hpagent": "0.1.2",
"https-proxy-agent": "5.0.0",
"i18next": "21.2.4",
"i18next": "21.3.1",
"iconv-lite": "0.6.3",
"is-utf8": "0.2.1",
"js-yaml": "3.14.1",
@ -107,13 +107,13 @@
"i18next-http-backend": "1.3.1",
"jquery-i18next": "1.2.1",
"jsdoc-nr-template": "github:node-red/jsdoc-nr-template",
"marked": "3.0.4",
"marked": "3.0.7",
"minami": "1.2.3",
"mocha": "9.1.2",
"node-red-node-test-helper": "^0.2.7",
"nodemon": "2.0.13",
"proxy": "^1.0.2",
"sass": "1.42.1",
"sass": "1.43.2",
"should": "13.2.3",
"sinon": "11.1.2",
"stoppable": "^1.1.0",

View File

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

View File

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

View File

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

View File

@ -1,6 +1,6 @@
{
"name": "@node-red/registry",
"version": "2.1.0-beta.1",
"version": "2.1.0-beta.2",
"license": "Apache-2.0",
"main": "./lib/index.js",
"repository": {
@ -16,7 +16,7 @@
}
],
"dependencies": {
"@node-red/util": "2.1.0-beta.1",
"@node-red/util": "2.1.0-beta.2",
"clone": "2.1.2",
"fs-extra": "10.0.0",
"semver": "7.3.5",

View File

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

View File

@ -1,6 +1,6 @@
{
"name": "@node-red/util",
"version": "2.1.0-beta.1",
"version": "2.1.0-beta.2",
"license": "Apache-2.0",
"repository": {
"type": "git",
@ -16,7 +16,7 @@
],
"dependencies": {
"fs-extra": "10.0.0",
"i18next": "21.2.4",
"i18next": "21.3.1",
"json-stringify-safe": "5.0.1",
"jsonata": "1.8.5",
"lodash.clonedeep": "^4.5.0",

View File

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