Bump for 0.20.8

This commit is contained in:
Nick O'Leary 2019-09-06 10:28:52 +01:00
parent 30c3004f27
commit f7e9c109f6
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9
9 changed files with 22 additions and 17 deletions

View File

@ -1,3 +1,8 @@
#### 0.20.8: Maintenance Release
- Sanitize tab name in edit dialog
- Pass httpServer to runtime even when httpAdmin disabled Fixes #2272
#### 0.20.7: Maintenance Release
- Update jsonata to 1.6.5 which should fix #2183

View File

@ -1,6 +1,6 @@
{
"name": "node-red",
"version": "0.20.7",
"version": "0.20.8",
"description": "A visual tool for wiring the Internet of Things",
"homepage": "http://nodered.org",
"license": "Apache-2.0",

View File

@ -1,6 +1,6 @@
{
"name": "@node-red/editor-api",
"version": "0.20.7",
"version": "0.20.8",
"license": "Apache-2.0",
"main": "./lib/index.js",
"repository": {
@ -16,8 +16,8 @@
}
],
"dependencies": {
"@node-red/util": "0.20.7",
"@node-red/editor-client": "0.20.7",
"@node-red/util": "0.20.8",
"@node-red/editor-client": "0.20.8",
"bcryptjs": "2.4.3",
"body-parser": "1.19.0",
"clone": "2.1.2",

View File

@ -1,6 +1,6 @@
{
"name": "@node-red/editor-client",
"version": "0.20.7",
"version": "0.20.8",
"license": "Apache-2.0",
"repository": {
"type": "git",

View File

@ -1,6 +1,6 @@
{
"name": "@node-red/nodes",
"version": "0.20.7",
"version": "0.20.8",
"license": "Apache-2.0",
"repository": {
"type": "git",

View File

@ -1,6 +1,6 @@
{
"name": "@node-red/registry",
"version": "0.20.7",
"version": "0.20.8",
"license": "Apache-2.0",
"main": "./lib/index.js",
"repository": {
@ -16,7 +16,7 @@
}
],
"dependencies": {
"@node-red/util": "0.20.7",
"@node-red/util": "0.20.8",
"semver": "6.2.0",
"uglify-js": "3.6.0",
"when": "3.7.8"

View File

@ -1,6 +1,6 @@
{
"name": "@node-red/runtime",
"version": "0.20.7",
"version": "0.20.8",
"license": "Apache-2.0",
"main": "./lib/index.js",
"repository": {
@ -16,8 +16,8 @@
}
],
"dependencies": {
"@node-red/registry": "0.20.7",
"@node-red/util": "0.20.7",
"@node-red/registry": "0.20.8",
"@node-red/util": "0.20.8",
"clone": "2.1.2",
"express": "4.17.1",
"fs-extra": "8.1.0",

View File

@ -1,6 +1,6 @@
{
"name": "@node-red/util",
"version": "0.20.7",
"version": "0.20.8",
"license": "Apache-2.0",
"repository": {
"type": "git",

View File

@ -1,6 +1,6 @@
{
"name": "node-red",
"version": "0.20.7",
"version": "0.20.8",
"description": "A visual tool for wiring the Internet of Things",
"homepage": "http://nodered.org",
"license": "Apache-2.0",
@ -31,10 +31,10 @@
"flow"
],
"dependencies": {
"@node-red/editor-api": "0.20.7",
"@node-red/runtime": "0.20.7",
"@node-red/util": "0.20.7",
"@node-red/nodes": "0.20.7",
"@node-red/editor-api": "0.20.8",
"@node-red/runtime": "0.20.8",
"@node-red/util": "0.20.8",
"@node-red/nodes": "0.20.8",
"basic-auth": "2.0.1",
"bcryptjs": "2.4.3",
"express": "4.17.1",