diff --git a/README.md b/README.md index 175d34af3a..70364ce8e4 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ received or lost a star. ## Available integrations -n8n has 50+ different nodes to automate workflows. The list can be found on: [https://n8n.io/nodes](https://n8n.io/nodes) +n8n has 80+ different nodes to automate workflows. The list can be found on: [https://n8n.io/nodes](https://n8n.io/nodes) ## Documentation diff --git a/docker/images/n8n/Dockerfile b/docker/images/n8n/Dockerfile index c6343aedd4..c2a1d2551d 100644 --- a/docker/images/n8n/Dockerfile +++ b/docker/images/n8n/Dockerfile @@ -5,7 +5,7 @@ ARG N8N_VERSION RUN if [ -z "$N8N_VERSION" ] ; then echo "The N8N_VERSION argument is missing!" ; exit 1; fi # Update everything and install needed dependencies -RUN apk add --update graphicsmagick tzdata +RUN apk add --update graphicsmagick tzdata git # # Set a custom user to not have n8n run as root USER root diff --git a/packages/cli/README.md b/packages/cli/README.md index 3322f56a52..7495cecc23 100644 --- a/packages/cli/README.md +++ b/packages/cli/README.md @@ -2,9 +2,8 @@ ![n8n.io - Workflow Automation](https://raw.githubusercontent.com/n8n-io/n8n/master/docs/images/n8n-logo.png) -n8n is a free node-based "Open Source" (with Commons Clause) -Workflow Automation Tool. It can be self-hosted, easily extended, and -so also used with internal tools. +n8n is a free and open node based Workflow Automation Tool. It can be +self-hosted, easily extended, and so also used with internal tools. n8n.io - Screenshot @@ -33,7 +32,7 @@ Slack notification every time a Github repository received or lost a star. ## Available integrations -n8n has 50+ different nodes to automate workflows. The list can be found on: [https://n8n.io/nodes](https://n8n.io/nodes) +n8n has 80+ different nodes to automate workflows. The list can be found on: [https://n8n.io/nodes](https://n8n.io/nodes) ## Documentation diff --git a/packages/cli/package.json b/packages/cli/package.json index d4da0bd3e8..96a84fa449 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "n8n", - "version": "0.43.0", + "version": "0.44.0", "description": "n8n Workflow Automation Tool", "license": "SEE LICENSE IN LICENSE.md", "homepage": "https://n8n.io", @@ -92,10 +92,10 @@ "localtunnel": "^2.0.0", "lodash.get": "^4.4.2", "mongodb": "^3.2.3", - "n8n-core": "~0.19.0", - "n8n-editor-ui": "~0.30.0", - "n8n-nodes-base": "~0.38.0", - "n8n-workflow": "~0.19.0", + "n8n-core": "~0.20.0", + "n8n-editor-ui": "~0.31.0", + "n8n-nodes-base": "~0.39.0", + "n8n-workflow": "~0.20.0", "open": "^7.0.0", "pg": "^7.11.0", "request-promise-native": "^1.0.7", diff --git a/packages/core/package.json b/packages/core/package.json index 31eed262ca..2e20ad20e9 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "n8n-core", - "version": "0.19.0", + "version": "0.20.0", "description": "Core functionality of n8n", "license": "SEE LICENSE IN LICENSE.md", "homepage": "https://n8n.io", @@ -43,7 +43,7 @@ "crypto-js": "^3.1.9-1", "lodash.get": "^4.4.2", "mmmagic": "^0.5.2", - "n8n-workflow": "~0.19.0", + "n8n-workflow": "~0.20.0", "request-promise-native": "^1.0.7" }, "jest": { diff --git a/packages/editor-ui/package.json b/packages/editor-ui/package.json index 13c6ccc41f..abbdab8353 100644 --- a/packages/editor-ui/package.json +++ b/packages/editor-ui/package.json @@ -1,6 +1,6 @@ { "name": "n8n-editor-ui", - "version": "0.30.2", + "version": "0.31.0", "description": "Workflow Editor UI for n8n", "license": "SEE LICENSE IN LICENSE.md", "homepage": "https://n8n.io", @@ -63,7 +63,7 @@ "lodash.debounce": "^4.0.8", "lodash.get": "^4.4.2", "lodash.set": "^4.3.2", - "n8n-workflow": "~0.19.0", + "n8n-workflow": "~0.20.0", "node-sass": "^4.12.0", "prismjs": "^1.17.1", "quill": "^2.0.0-dev.3", diff --git a/packages/editor-ui/src/components/NodeSettings.vue b/packages/editor-ui/src/components/NodeSettings.vue index 5a4d9c0c99..4189d78c35 100644 --- a/packages/editor-ui/src/components/NodeSettings.vue +++ b/packages/editor-ui/src/components/NodeSettings.vue @@ -3,7 +3,7 @@
- +
@@ -89,8 +89,8 @@ export default mixins( return null; }, nodeTypeDescription (): string { - if (this.nodeType!.description) { - return this.nodeType!.description; + if (this.nodeType && this.nodeType.description) { + return this.nodeType.description; } else { return 'No description found'; } diff --git a/packages/editor-ui/src/components/ParameterInput.vue b/packages/editor-ui/src/components/ParameterInput.vue index 945be0165f..74c123b521 100644 --- a/packages/editor-ui/src/components/ParameterInput.vue +++ b/packages/editor-ui/src/components/ParameterInput.vue @@ -116,6 +116,7 @@