Bump for 1.0.6

This commit is contained in:
Nick O'Leary 2020-04-24 13:55:34 +01:00
parent a3b0448f53
commit feb5d13e1c
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9
9 changed files with 34 additions and 17 deletions

View File

@ -1,3 +1,20 @@
#### 1.0.6: Maintenance Release
Runtime
- Update to JSONata 1.8.3
- #2536 Handle clone of null in utils
Editor
- Prevent button label wrapping in typedInput
- Handle error objects when reporting in palette manager
Nodes
- Inject: Revert to cron 1.7.2
- UDP: when reusing input socket honour the broadcast mode.
#### 1.0.5: Maintenance Release
Runtime

View File

@ -1,6 +1,6 @@
{
"name": "node-red",
"version": "1.0.5",
"version": "1.0.6",
"description": "Low-code programming for event-driven applications",
"homepage": "http://nodered.org",
"license": "Apache-2.0",

View File

@ -1,6 +1,6 @@
{
"name": "@node-red/editor-api",
"version": "1.0.5",
"version": "1.0.6",
"license": "Apache-2.0",
"main": "./lib/index.js",
"repository": {
@ -16,8 +16,8 @@
}
],
"dependencies": {
"@node-red/util": "1.0.5",
"@node-red/editor-client": "1.0.5",
"@node-red/util": "1.0.6",
"@node-red/editor-client": "1.0.6",
"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": "1.0.5",
"version": "1.0.6",
"license": "Apache-2.0",
"repository": {
"type": "git",

View File

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

View File

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

View File

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

View File

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

View File

@ -1,6 +1,6 @@
{
"name": "node-red",
"version": "1.0.5",
"version": "1.0.6",
"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.0.5",
"@node-red/runtime": "1.0.5",
"@node-red/util": "1.0.5",
"@node-red/nodes": "1.0.5",
"@node-red/editor-api": "1.0.6",
"@node-red/runtime": "1.0.6",
"@node-red/util": "1.0.6",
"@node-red/nodes": "1.0.6",
"basic-auth": "2.0.1",
"bcryptjs": "2.4.3",
"express": "4.17.1",