1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Bump for 0.20

This commit is contained in:
Nick O'Leary 2019-03-12 10:59:20 +00:00
parent 3f1b0b986f
commit 9c474cc089
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9
4 changed files with 16 additions and 9 deletions

View File

@ -11,8 +11,13 @@ Runtime
- Clear subflow status on close - Clear subflow status on close
- Add exportGlobalContextKeys to prevent exposing functionGlobalContext keys - Add exportGlobalContextKeys to prevent exposing functionGlobalContext keys
- Add --no-audit and --no-update-notifier flags to npm commands to reduce workload - Add --no-audit and --no-update-notifier flags to npm commands to reduce workload
- Add envVarExcludes setting to block named env vars
- Update settings.js docs on userDir to match reality Fixes #2082
- Add Korean Language
Editor Editor
- Automatic placing of node icon according to input/output counts
- Transfer placeholder and type to generated TypedInput field - Transfer placeholder and type to generated TypedInput field
- Hitting enter in Comment node name field clicks markdown button - Hitting enter in Comment node name field clicks markdown button
- Shift status text left if no shape specified - Shift status text left if no shape specified
@ -21,16 +26,18 @@ Editor
- Change subflow edit dialog titles - Change subflow edit dialog titles
- Resize subflow edit dialog properly - Resize subflow edit dialog properly
- Add flow list button to tab bar - Add flow list button to tab bar
- Handle node name as unsanitized text in debug sidebar
Nodes Nodes
- HTTP Request: Add Digest and Bearer Auth modes to http request node (#2061) - HTTP Request: Add Digest and Bearer Auth modes to http request node (#2061)
- HTTP Request: Add multipart/form-data support to http request node (#2076)
- TCP: include session/event info in status events - TCP: include session/event info in status events
- WebSocket: include session/event info in status events - WebSocket: include session/event info in status events
- Add i18n support for port label of inject/exec/httprequest/file nodes - Add i18n support for port label of inject/exec/httprequest/file nodes
- Join node: handle merged objects with repeated properties and honour parts - Join node: handle merged objects with repeated properties and honour parts
- JSON node: handle single booleans and numbers - JSON node: handle single booleans and numbers
- File node: add encoding support to file in/out node (#2066)
#### 0.20.0-beta.5: Beta Release #### 0.20.0-beta.5: Beta Release

View File

@ -1,6 +1,6 @@
{ {
"name": "node-red", "name": "node-red",
"version": "0.20.0-beta.5", "version": "0.20.0",
"description": "A visual tool for wiring the Internet of Things", "description": "A visual tool for wiring the Internet of Things",
"homepage": "http://nodered.org", "homepage": "http://nodered.org",
"license": "Apache-2.0", "license": "Apache-2.0",
@ -33,7 +33,7 @@
"cookie": "0.3.1", "cookie": "0.3.1",
"cookie-parser": "1.4.4", "cookie-parser": "1.4.4",
"cors": "2.8.5", "cors": "2.8.5",
"cron": "1.6.0", "cron": "1.7.0",
"denque": "1.4.0", "denque": "1.4.0",
"express": "4.16.4", "express": "4.16.4",
"express-session": "1.15.6", "express-session": "1.15.6",
@ -47,7 +47,7 @@
"json-stringify-safe": "5.0.1", "json-stringify-safe": "5.0.1",
"jsonata": "1.6.4", "jsonata": "1.6.4",
"media-typer": "1.0.1", "media-typer": "1.0.1",
"memorystore": "1.6.0", "memorystore": "1.6.1",
"mime": "2.4.0", "mime": "2.4.0",
"mqtt": "2.18.8", "mqtt": "2.18.8",
"multer": "1.4.1", "multer": "1.4.1",
@ -69,7 +69,7 @@
"semver": "5.6.0", "semver": "5.6.0",
"uglify-js": "3.4.9", "uglify-js": "3.4.9",
"when": "3.7.8", "when": "3.7.8",
"ws": "6.1.4", "ws": "6.2.0",
"xml2js": "0.4.19", "xml2js": "0.4.19",
"iconv-lite": "0.4.24" "iconv-lite": "0.4.24"
}, },

View File

@ -24,7 +24,7 @@
"cors": "2.8.5", "cors": "2.8.5",
"express-session": "1.15.6", "express-session": "1.15.6",
"express": "4.16.4", "express": "4.16.4",
"memorystore": "1.6.0", "memorystore": "1.6.1",
"mime": "2.4.0", "mime": "2.4.0",
"mustache": "3.0.1", "mustache": "3.0.1",
"oauth2orize": "1.11.0", "oauth2orize": "1.11.0",
@ -32,6 +32,6 @@
"passport-oauth2-client-password": "0.1.2", "passport-oauth2-client-password": "0.1.2",
"passport": "0.4.0", "passport": "0.4.0",
"when": "3.7.8", "when": "3.7.8",
"ws": "6.1.4" "ws": "6.2.0"
} }
} }

View File

@ -21,7 +21,7 @@
"cookie-parser": "1.4.4", "cookie-parser": "1.4.4",
"cookie": "0.3.1", "cookie": "0.3.1",
"cors": "2.8.5", "cors": "2.8.5",
"cron": "1.6.0", "cron": "1.7.0",
"denque": "1.4.0", "denque": "1.4.0",
"fs-extra": "7.0.1", "fs-extra": "7.0.1",
"fs.notify": "0.0.4", "fs.notify": "0.0.4",
@ -36,7 +36,7 @@
"on-headers": "1.0.2", "on-headers": "1.0.2",
"raw-body": "2.3.3", "raw-body": "2.3.3",
"request": "2.88.0", "request": "2.88.0",
"ws": "6.1.4", "ws": "6.2.0",
"xml2js": "0.4.19", "xml2js": "0.4.19",
"iconv-lite": "0.4.24" "iconv-lite": "0.4.24"
} }