mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Update for 1.3.4
This commit is contained in:
parent
9ee8c1c791
commit
b0e349b215
25
CHANGELOG.md
25
CHANGELOG.md
@ -1,3 +1,28 @@
|
||||
### 1.3.4 Maintenance Release
|
||||
|
||||
Editor
|
||||
- Allow nodes to access resolved theme files Fixes #2968
|
||||
- Fix importing node to currently flow rather than match its old z value
|
||||
- Don't let 'escape' whilst moving nodes interrupt things Fixes #2960
|
||||
- Sort context stores in TypedInput and ensure default first Fixes #2954
|
||||
- Fix margin between nodes on palette (#2947) @kazuhitoyokoi
|
||||
- Ensure typedInput option is selected in dropdown menu Part of #2945
|
||||
- Ensure typedInput without value has focus class removed Closes #2945
|
||||
|
||||
Runtime
|
||||
- Handle subflow modules that contain subflows
|
||||
- Timeout http upgrade requests that are not otherwise handled Fixes #2956
|
||||
- Fix error on auto commit for no flow change (#2957) @HiroyasuNishiyama
|
||||
|
||||
Nodes
|
||||
|
||||
- CSV: Fix CSV handling of special chars as separators
|
||||
- Delay: Give delay node random mina nd max more space so you can see complete value
|
||||
- Exec: fix grunt fail on exec node test (#2964) @HiroyasuNishiyama
|
||||
- Function: Ensure function expand button is above vertical scrollbar Fixes #2955
|
||||
- Inject: Fix inject node output tooltip extra property count
|
||||
|
||||
|
||||
### 1.3.3: Maintenance Release
|
||||
|
||||
Editor
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "node-red",
|
||||
"version": "1.3.3",
|
||||
"version": "1.3.4",
|
||||
"description": "Low-code programming for event-driven applications",
|
||||
"homepage": "http://nodered.org",
|
||||
"license": "Apache-2.0",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@node-red/editor-api",
|
||||
"version": "1.3.3",
|
||||
"version": "1.3.4",
|
||||
"license": "Apache-2.0",
|
||||
"main": "./lib/index.js",
|
||||
"repository": {
|
||||
@ -16,8 +16,8 @@
|
||||
}
|
||||
],
|
||||
"dependencies": {
|
||||
"@node-red/util": "1.3.3",
|
||||
"@node-red/editor-client": "1.3.3",
|
||||
"@node-red/util": "1.3.4",
|
||||
"@node-red/editor-client": "1.3.4",
|
||||
"bcryptjs": "2.4.3",
|
||||
"body-parser": "1.19.0",
|
||||
"clone": "2.1.2",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@node-red/editor-client",
|
||||
"version": "1.3.3",
|
||||
"version": "1.3.4",
|
||||
"license": "Apache-2.0",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@node-red/nodes",
|
||||
"version": "1.3.3",
|
||||
"version": "1.3.4",
|
||||
"license": "Apache-2.0",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@node-red/registry",
|
||||
"version": "1.3.3",
|
||||
"version": "1.3.4",
|
||||
"license": "Apache-2.0",
|
||||
"main": "./lib/index.js",
|
||||
"repository": {
|
||||
@ -16,7 +16,7 @@
|
||||
}
|
||||
],
|
||||
"dependencies": {
|
||||
"@node-red/util": "1.3.3",
|
||||
"@node-red/util": "1.3.4",
|
||||
"semver": "6.3.0",
|
||||
"tar": "6.1.0",
|
||||
"uglify-js": "3.13.3"
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@node-red/runtime",
|
||||
"version": "1.3.3",
|
||||
"version": "1.3.4",
|
||||
"license": "Apache-2.0",
|
||||
"main": "./lib/index.js",
|
||||
"repository": {
|
||||
@ -16,8 +16,8 @@
|
||||
}
|
||||
],
|
||||
"dependencies": {
|
||||
"@node-red/registry": "1.3.3",
|
||||
"@node-red/util": "1.3.3",
|
||||
"@node-red/registry": "1.3.4",
|
||||
"@node-red/util": "1.3.4",
|
||||
"async-mutex": "0.3.1",
|
||||
"clone": "2.1.2",
|
||||
"express": "4.17.1",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@node-red/util",
|
||||
"version": "1.3.3",
|
||||
"version": "1.3.4",
|
||||
"license": "Apache-2.0",
|
||||
"repository": {
|
||||
"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",
|
||||
"version": "1.3.3",
|
||||
"version": "1.3.4",
|
||||
"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.3",
|
||||
"@node-red/runtime": "1.3.3",
|
||||
"@node-red/util": "1.3.3",
|
||||
"@node-red/nodes": "1.3.3",
|
||||
"@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",
|
||||
"basic-auth": "2.0.1",
|
||||
"bcryptjs": "2.4.3",
|
||||
"express": "4.17.1",
|
||||
|
Loading…
Reference in New Issue
Block a user