mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Update for 1.3.5
This commit is contained in:
parent
be9521f659
commit
4f77bbeb2b
32
CHANGELOG.md
32
CHANGELOG.md
@ -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
|
### 1.3.4 Maintenance Release
|
||||||
|
|
||||||
Editor
|
Editor
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "node-red",
|
"name": "node-red",
|
||||||
"version": "1.3.4",
|
"version": "1.3.5",
|
||||||
"description": "Low-code programming for event-driven applications",
|
"description": "Low-code programming for event-driven applications",
|
||||||
"homepage": "http://nodered.org",
|
"homepage": "http://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": "1.3.4",
|
"version": "1.3.5",
|
||||||
"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": "1.3.4",
|
"@node-red/util": "1.3.5",
|
||||||
"@node-red/editor-client": "1.3.4",
|
"@node-red/editor-client": "1.3.5",
|
||||||
"bcryptjs": "2.4.3",
|
"bcryptjs": "2.4.3",
|
||||||
"body-parser": "1.19.0",
|
"body-parser": "1.19.0",
|
||||||
"clone": "2.1.2",
|
"clone": "2.1.2",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@node-red/editor-client",
|
"name": "@node-red/editor-client",
|
||||||
"version": "1.3.4",
|
"version": "1.3.5",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@node-red/nodes",
|
"name": "@node-red/nodes",
|
||||||
"version": "1.3.4",
|
"version": "1.3.5",
|
||||||
"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": "1.3.4",
|
"version": "1.3.5",
|
||||||
"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": "1.3.4",
|
"@node-red/util": "1.3.5",
|
||||||
"semver": "6.3.0",
|
"semver": "6.3.0",
|
||||||
"tar": "6.1.0",
|
"tar": "6.1.0",
|
||||||
"uglify-js": "3.13.3"
|
"uglify-js": "3.13.3"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@node-red/runtime",
|
"name": "@node-red/runtime",
|
||||||
"version": "1.3.4",
|
"version": "1.3.5",
|
||||||
"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": "1.3.4",
|
"@node-red/registry": "1.3.5",
|
||||||
"@node-red/util": "1.3.4",
|
"@node-red/util": "1.3.5",
|
||||||
"async-mutex": "0.3.1",
|
"async-mutex": "0.3.1",
|
||||||
"clone": "2.1.2",
|
"clone": "2.1.2",
|
||||||
"express": "4.17.1",
|
"express": "4.17.1",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@node-red/util",
|
"name": "@node-red/util",
|
||||||
"version": "1.3.4",
|
"version": "1.3.5",
|
||||||
"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": "1.3.4",
|
"version": "1.3.5",
|
||||||
"description": "Low-code programming for event-driven applications",
|
"description": "Low-code programming for event-driven applications",
|
||||||
"homepage": "http://nodered.org",
|
"homepage": "http://nodered.org",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
@ -31,10 +31,10 @@
|
|||||||
"flow"
|
"flow"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@node-red/editor-api": "1.3.4",
|
"@node-red/editor-api": "1.3.5",
|
||||||
"@node-red/runtime": "1.3.4",
|
"@node-red/runtime": "1.3.5",
|
||||||
"@node-red/util": "1.3.4",
|
"@node-red/util": "1.3.5",
|
||||||
"@node-red/nodes": "1.3.4",
|
"@node-red/nodes": "1.3.5",
|
||||||
"basic-auth": "2.0.1",
|
"basic-auth": "2.0.1",
|
||||||
"bcryptjs": "2.4.3",
|
"bcryptjs": "2.4.3",
|
||||||
"express": "4.17.1",
|
"express": "4.17.1",
|
||||||
|
Loading…
Reference in New Issue
Block a user