Bump for 1.0.1

This commit is contained in:
Nick O'Leary 2019-10-04 11:13:46 +01:00
parent e35f6d9e35
commit f75dd2209d
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9
9 changed files with 39 additions and 17 deletions

View File

@ -1,3 +1,25 @@
#### 1.0.1: Maintenance Release
Runtime
- #2301 Add env vars to enable safe mode and projects
- `NODE_RED_ENABLE_SAFE_MODE`
- `NODE_RED_ENABLE_PROJECTS`
Editor
- #2308 Fix grid setting
- #2306 i18n support in tooltips
- Fix error when setting typedInput to boolean true/false
- #2299 Fix SVG icons in IE11
- #2303 Fix issue where subflow color did not update when not on a flow
Nodes
- #2297 TLS: Allow TLS config node to provide just CA cert
- #2307 Inject: Fix width on inject node property
- #2305 Switch: Let switch node between rule work both ways round
- Range: Add example to range node info and make use of target consistent
- Join: node must clone group message before sending
#### 1.0.0: Milestone Release
Editor

View File

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

View File

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

View File

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

View File

@ -1,6 +1,6 @@
{
"name": "@node-red/runtime",
"version": "1.0.0",
"version": "1.0.1",
"license": "Apache-2.0",
"main": "./lib/index.js",
"repository": {
@ -16,8 +16,8 @@
}
],
"dependencies": {
"@node-red/registry": "1.0.0",
"@node-red/util": "1.0.0",
"@node-red/registry": "1.0.1",
"@node-red/util": "1.0.1",
"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.0",
"version": "1.0.1",
"license": "Apache-2.0",
"repository": {
"type": "git",

View File

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