From 602f0f6db1c3e8930779dfaf5c1b633f48c5c8e1 Mon Sep 17 00:00:00 2001 From: Jan Oberhauser Date: Thu, 29 Aug 2019 07:41:52 +0200 Subject: [PATCH] :books: Add information about another breaking change --- packages/cli/BREAKING-CHANGES.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/packages/cli/BREAKING-CHANGES.md b/packages/cli/BREAKING-CHANGES.md index f876993e0..503917fe6 100644 --- a/packages/cli/BREAKING-CHANGES.md +++ b/packages/cli/BREAKING-CHANGES.md @@ -15,3 +15,26 @@ When Webhook-Nodes get used which have "Response Mode" set to "Last Node". ### How to upgrade: After upgrading open all workflows which contain the concerning Webhook-Nodes and set "Response Mode" again manually to "Last Node". + + +---------------------------- + +### What changed? + +Because the CLI library n8n used was not maintained anymore and included +packages with security vulnerabilities we had to switch to a different one. + +### When is action necessary? + +When you currently start n8n in your setup directly via its JavaScript file. +For example like this: +``` +/usr/local/bin/node ./dist/index.js start +``` + +### How to upgrade: + +Change the path to its new location: +``` +/usr/local/bin/node bin/n8n start +```