mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Bump for 0.19.5
This commit is contained in:
parent
4f87ebdf0a
commit
c32ce3bb7b
27
CHANGELOG.md
27
CHANGELOG.md
@ -1,3 +1,30 @@
|
|||||||
|
#### 0.19.5: Maintenance Release
|
||||||
|
|
||||||
|
- Recognize pip installs of RPi.GPIO (#1934)
|
||||||
|
- Merge pull request #1941 from node-red-hitachi/master-batch
|
||||||
|
- Merge pull request #1931 from node-red-hitachi/master-typedinput
|
||||||
|
- Set min value of properties and spinners for batch
|
||||||
|
- Fix that unnecessary optionMenu remains
|
||||||
|
- Merge pull request #1894 from node-red-hitachi/fix-overlapping-file-node-execution
|
||||||
|
- Merge pull request #1924 from imZack/patch-1
|
||||||
|
- Add missing comma
|
||||||
|
- Do not disable context sidebar during node edit Fixes #1921
|
||||||
|
- Don't allow virtual links to be spliced Fixes #1920
|
||||||
|
- Merge project package changes to avoid overwritten changes
|
||||||
|
- Handle manually added project deps that are unused Fixes #1908
|
||||||
|
- update close & input handling of File node
|
||||||
|
- make close handler argument only one
|
||||||
|
- Merge pull request #1907 from amilajack/patch-2
|
||||||
|
- Change repo badge to point to master branch
|
||||||
|
- invoke callbacks if async handler is specified
|
||||||
|
- Merge pull request #1891 from camlow325/resolve-example-path-for-windows-support
|
||||||
|
- Merge pull request #1900 from kazuhitoyokoi/master-addtestcases4settings.js
|
||||||
|
- wait closing while pending messages exist
|
||||||
|
- Add test cases for red/api/editor/settings.js
|
||||||
|
- Ensure all palette categories are opened properly Closes #1893
|
||||||
|
- Resolve path when sending example file for Windows support
|
||||||
|
- fix multiple input message processing of file node
|
||||||
|
|
||||||
#### 0.19.4: Maintenance Release
|
#### 0.19.4: Maintenance Release
|
||||||
|
|
||||||
- Fix race condition in non-cache lfs context Fixes #1888
|
- Fix race condition in non-cache lfs context Fixes #1888
|
||||||
|
20
package.json
20
package.json
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "node-red",
|
"name": "node-red",
|
||||||
"version": "0.19.4",
|
"version": "0.19.5",
|
||||||
"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,8 +33,8 @@
|
|||||||
"flow"
|
"flow"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"ajv": "6.5.3",
|
"ajv": "6.5.4",
|
||||||
"basic-auth": "2.0.0",
|
"basic-auth": "2.0.1",
|
||||||
"bcryptjs": "2.4.3",
|
"bcryptjs": "2.4.3",
|
||||||
"body-parser": "1.18.3",
|
"body-parser": "1.18.3",
|
||||||
"cheerio": "0.22.0",
|
"cheerio": "0.22.0",
|
||||||
@ -42,9 +42,9 @@
|
|||||||
"cookie": "0.3.1",
|
"cookie": "0.3.1",
|
||||||
"cookie-parser": "1.4.3",
|
"cookie-parser": "1.4.3",
|
||||||
"cors": "2.8.4",
|
"cors": "2.8.4",
|
||||||
"cron": "1.4.1",
|
"cron": "1.5.0",
|
||||||
"denque": "1.3.0",
|
"denque": "1.3.0",
|
||||||
"express": "4.16.3",
|
"express": "4.16.4",
|
||||||
"express-session": "1.15.6",
|
"express-session": "1.15.6",
|
||||||
"fs-extra": "5.0.0",
|
"fs-extra": "5.0.0",
|
||||||
"fs.notify": "0.0.4",
|
"fs.notify": "0.0.4",
|
||||||
@ -58,7 +58,7 @@
|
|||||||
"media-typer": "0.3.0",
|
"media-typer": "0.3.0",
|
||||||
"memorystore": "1.6.0",
|
"memorystore": "1.6.0",
|
||||||
"mqtt": "2.18.8",
|
"mqtt": "2.18.8",
|
||||||
"multer": "1.3.1",
|
"multer": "1.4.1",
|
||||||
"mustache": "2.3.2",
|
"mustache": "2.3.2",
|
||||||
"node-red-node-email": "0.1.*",
|
"node-red-node-email": "0.1.*",
|
||||||
"node-red-node-feedparser": "^0.1.12",
|
"node-red-node-feedparser": "^0.1.12",
|
||||||
@ -72,7 +72,7 @@
|
|||||||
"passport-oauth2-client-password": "0.1.2",
|
"passport-oauth2-client-password": "0.1.2",
|
||||||
"raw-body": "2.3.3",
|
"raw-body": "2.3.3",
|
||||||
"request": "2.88.0",
|
"request": "2.88.0",
|
||||||
"semver": "5.5.1",
|
"semver": "5.6.0",
|
||||||
"sentiment": "2.1.0",
|
"sentiment": "2.1.0",
|
||||||
"uglify-js": "3.4.9",
|
"uglify-js": "3.4.9",
|
||||||
"when": "3.7.8",
|
"when": "3.7.8",
|
||||||
@ -107,12 +107,12 @@
|
|||||||
"node-red-node-test-helper": "0.1.7",
|
"node-red-node-test-helper": "0.1.7",
|
||||||
"should": "^8.4.0",
|
"should": "^8.4.0",
|
||||||
"sinon": "1.17.7",
|
"sinon": "1.17.7",
|
||||||
"stoppable": "^1.0.6",
|
"stoppable": "^1.0.7",
|
||||||
"supertest": "3.1.0",
|
"supertest": "3.3.0",
|
||||||
"wdio-chromedriver-service": "^0.1.3",
|
"wdio-chromedriver-service": "^0.1.3",
|
||||||
"wdio-mocha-framework": "^0.6.2",
|
"wdio-mocha-framework": "^0.6.2",
|
||||||
"wdio-spec-reporter": "^0.1.5",
|
"wdio-spec-reporter": "^0.1.5",
|
||||||
"webdriverio": "^4.13.1"
|
"webdriverio": "^4.14.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=4"
|
"node": ">=4"
|
||||||
|
Loading…
Reference in New Issue
Block a user