From 31c5d6e1c1fce3c83278c64a0c06e5bdd55ec02f Mon Sep 17 00:00:00 2001 From: Nick O'Leary Date: Thu, 15 Jul 2021 10:24:33 +0100 Subject: [PATCH] Update changelog --- CHANGELOG.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b6aa8fc9..9ada81402 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,12 +18,22 @@ - HTML: Its underlying module has had a major version update. Should be fully backward compatible. + - `functionExternalModules` is now enabled by default for new installs. + If you have an existing settings file that contains this setting, you will + need to set it to `true` yourself. + + The external modules will now get installed in your Node-RED user directory, + (`~/.node-red`) rather than in a subdirectory. This means all dependencies will + be listed in your top-level `package.json`. If you have existing external modules, + they will get reinstalled to the new location when you first run Node-RED 2.0. + Runtime - Fix missing dependencies (#3052, #2057) @kazuhitoyokoi - Ensure node.types is defined if node html file missing - Fix reporting of type_already_registered error + - Move install location of external modules (#3064) @knolleary Editor @@ -35,6 +45,8 @@ Editor Nodes - Delay: let `msg.flush` specify how many messages to flush from node (#3059) @dceejay + - Function: external modules is now enabled by default (#3065) @knolleary + - Function: external modules now supports both ES6 and CJS modules (#3065) @knolleary - WebSocket: add option for client node to send automatic pings (#3056) @knolleary