Update for 1.3.5

This commit is contained in:
Nick O'Leary 2021-05-18 11:52:49 +01:00
parent be9521f659
commit 4f77bbeb2b
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9
9 changed files with 49 additions and 17 deletions

View File

@ -1,3 +1,35 @@
### 1.3.5 Maintenance Release
Editor
- Open subflow tab next to active tab rather than at the end
- Shrink default notification box
- Support mousewheel scroll in tab bar
- Revert some of #2967 to fix treeList gutter width calculation
- Prevent unknown node from breaking editor
- Stop module with missing types from preventing editor load
- Handle sidebar tab that no longer exists when setting first active
- Fix plugin loading when browser sends unrecognised lang
- Prevent error whilst drag/drop importing from leaving dropTarget visible Fixes #2982
- Fix scaling issues when dragging nodes into scaled workspace
- Fix incorrect shortcut keys in info tips (#2980) @kazuhitoyokoi
- Reduce code duplication around node/label generation
- Fix theme handling when no editorTheme.page setting
- Fix jshint error in treeList
Runtime
- Fix error handling in runtime/lib/api/nodes
- Add Node 16 with sass fixed
- Migrate from node-sass to sass (#2984)
- Fix "installRetry" was declared a constant and changed (#2974) @aheissenberger
Nodes
- Function: Fix 'SyntaxError' in Function node when last line of on-stop is a comment
- Function: Fix Function tab label names in the node help text Closes #2978
- Function: Update Japanese info text of function node (#2985) @HiroyasuNishiyama
### 1.3.4 Maintenance Release
Editor

View File

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

View File

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

View File

@ -1,6 +1,6 @@
{
"name": "@node-red/registry",
"version": "1.3.4",
"version": "1.3.5",
"license": "Apache-2.0",
"main": "./lib/index.js",
"repository": {
@ -16,7 +16,7 @@
}
],
"dependencies": {
"@node-red/util": "1.3.4",
"@node-red/util": "1.3.5",
"semver": "6.3.0",
"tar": "6.1.0",
"uglify-js": "3.13.3"

View File

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

View File

@ -1,6 +1,6 @@
{
"name": "@node-red/util",
"version": "1.3.4",
"version": "1.3.5",
"license": "Apache-2.0",
"repository": {
"type": "git",

View File

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