mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Bump dependencies
This commit is contained in:
parent
9ee6655bfa
commit
201d1926bc
41
CHANGELOG.md
41
CHANGELOG.md
@ -1,3 +1,44 @@
|
|||||||
|
#### 0.20.0-beta.3: Beta Release
|
||||||
|
|
||||||
|
Editor
|
||||||
|
|
||||||
|
- Update palette manager view properly when module updated
|
||||||
|
- Add TreeList common widget
|
||||||
|
- Fix visual jump when opening Comment editor on Safari Part of #2008
|
||||||
|
- Fix vertical align of markdown editor in Safari Fixes #2008
|
||||||
|
- Avoid marking node as changed if label state is default Fixes #2009
|
||||||
|
- Highlight port on node hover while joining
|
||||||
|
- Support drag-wiring of link nodes
|
||||||
|
- Allow TypeSearch to include a filter option
|
||||||
|
- Improve diff colouring
|
||||||
|
- Allow sections to toggle in 2-element stack
|
||||||
|
- Add support for ${} env var syntax when skipping validation Closes #1980
|
||||||
|
- i18 support for markdown editor tooltip
|
||||||
|
- Add RED.editor.registerTypeEditor for custom type editors
|
||||||
|
- Tidy up markdown toolbar handling across all editors
|
||||||
|
- Added validation while export into library
|
||||||
|
|
||||||
|
Runtime
|
||||||
|
|
||||||
|
- Bump JSONata to 1.6.4 Fixes #2023
|
||||||
|
- Add audit logging to admin api
|
||||||
|
- Fix failure of RED.require #2010
|
||||||
|
- Allow oauth strategy callback method to be customised Closes #1998
|
||||||
|
- Ensure fs context cache is flushed on close Fixes #2001
|
||||||
|
- Fix library Buffer( to Buffer.alloc( for node 10
|
||||||
|
- Catch file-not-found on startup when non-existant flow file specified
|
||||||
|
- Actively expire login sesssions and notify user
|
||||||
|
- Add quotation marks for basic auth challenge #1976
|
||||||
|
|
||||||
|
Nodes
|
||||||
|
|
||||||
|
- Change: remove promises to improve performance
|
||||||
|
- Debug: add ability to apply JSONata expression to message
|
||||||
|
- Join: remove promises to improve performance
|
||||||
|
- JSON: delete msg.schema before sending msg to avoid conflicts
|
||||||
|
- Link: update UI to use common TreeList widget
|
||||||
|
- Switch: remove promises to improve performance
|
||||||
|
|
||||||
#### 0.20.0-beta.2: Beta Release
|
#### 0.20.0-beta.2: Beta Release
|
||||||
|
|
||||||
- Split Node-RED internals into multiple sub-modules
|
- Split Node-RED internals into multiple sub-modules
|
||||||
|
10
package.json
10
package.json
@ -24,7 +24,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"ajv": "6.6.1",
|
"ajv": "6.6.2",
|
||||||
"basic-auth": "2.0.1",
|
"basic-auth": "2.0.1",
|
||||||
"bcryptjs": "2.4.3",
|
"bcryptjs": "2.4.3",
|
||||||
"body-parser": "1.18.3",
|
"body-parser": "1.18.3",
|
||||||
@ -33,7 +33,7 @@
|
|||||||
"cookie": "0.3.1",
|
"cookie": "0.3.1",
|
||||||
"cookie-parser": "1.4.3",
|
"cookie-parser": "1.4.3",
|
||||||
"cors": "2.8.5",
|
"cors": "2.8.5",
|
||||||
"cron": "1.5.1",
|
"cron": "1.6.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",
|
||||||
@ -41,9 +41,9 @@
|
|||||||
"fs.notify": "0.0.4",
|
"fs.notify": "0.0.4",
|
||||||
"hash-sum": "1.0.2",
|
"hash-sum": "1.0.2",
|
||||||
"https-proxy-agent": "2.2.1",
|
"https-proxy-agent": "2.2.1",
|
||||||
"i18next": "12.1.0",
|
"i18next": "13.1.0",
|
||||||
"is-utf8": "0.2.1",
|
"is-utf8": "0.2.1",
|
||||||
"js-yaml": "3.12.0",
|
"js-yaml": "3.12.1",
|
||||||
"json-stringify-safe": "5.0.1",
|
"json-stringify-safe": "5.0.1",
|
||||||
"jsonata": "1.6.3",
|
"jsonata": "1.6.3",
|
||||||
"media-typer": "1.0.1",
|
"media-typer": "1.0.1",
|
||||||
@ -77,7 +77,7 @@
|
|||||||
"bcrypt": "~2.0.0"
|
"bcrypt": "~2.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"chromedriver": "2.43.1",
|
"chromedriver": "2.45.0",
|
||||||
"grunt": "~1.0.3",
|
"grunt": "~1.0.3",
|
||||||
"grunt-chmod": "~1.1.1",
|
"grunt-chmod": "~1.1.1",
|
||||||
"grunt-cli": "~1.3.2",
|
"grunt-cli": "~1.3.2",
|
||||||
|
@ -15,20 +15,20 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"ajv": "6.6.1",
|
"ajv": "6.6.2",
|
||||||
"body-parser": "1.18.3",
|
"body-parser": "1.18.3",
|
||||||
"cheerio": "0.22.0",
|
"cheerio": "0.22.0",
|
||||||
"cookie-parser": "1.4.3",
|
"cookie-parser": "1.4.3",
|
||||||
"cookie": "0.3.1",
|
"cookie": "0.3.1",
|
||||||
"cors": "2.8.5",
|
"cors": "2.8.5",
|
||||||
"cron": "1.5.1",
|
"cron": "1.6.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",
|
||||||
"hash-sum": "1.0.2",
|
"hash-sum": "1.0.2",
|
||||||
"https-proxy-agent": "2.2.1",
|
"https-proxy-agent": "2.2.1",
|
||||||
"is-utf8": "0.2.1",
|
"is-utf8": "0.2.1",
|
||||||
"js-yaml": "3.12.0",
|
"js-yaml": "3.12.1",
|
||||||
"media-typer": "1.0.1",
|
"media-typer": "1.0.1",
|
||||||
"mqtt": "2.18.8",
|
"mqtt": "2.18.8",
|
||||||
"multer": "1.4.1",
|
"multer": "1.4.1",
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"clone": "2.1.2",
|
"clone": "2.1.2",
|
||||||
"i18next": "12.1.0",
|
"i18next": "13.1.0",
|
||||||
"json-stringify-safe": "5.0.1",
|
"json-stringify-safe": "5.0.1",
|
||||||
"jsonata": "1.6.3",
|
"jsonata": "1.6.3",
|
||||||
"when": "3.7.8"
|
"when": "3.7.8"
|
||||||
|
Loading…
Reference in New Issue
Block a user