aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPo-Chuan Hsieh <sunpoet@FreeBSD.org>2023-01-30 14:31:31 +0000
committerPo-Chuan Hsieh <sunpoet@FreeBSD.org>2023-01-30 14:45:11 +0000
commitf5f4cf1f8be54d856744d1131f64834b19b22b47 (patch)
treecdb1e932ca469db82543ca9e6807d0238d821dae
parentcc9a30d2dcd3414868c937b3e6f5199ff6e7b567 (diff)
downloadports-f5f4cf1f8be54d856744d1131f64834b19b22b47.tar.gz
ports-f5f4cf1f8be54d856744d1131f64834b19b22b47.zip
UPDATING: Document nodejs changes
-rw-r--r--UPDATING27
1 files changed, 27 insertions, 0 deletions
diff --git a/UPDATING b/UPDATING
index cf0c026be62f..d6fc03bca110 100644
--- a/UPDATING
+++ b/UPDATING
@@ -5,6 +5,33 @@ they are unavoidable.
You should get into the habit of checking this file for changes each time
you update your ports collection, before attempting any port upgrades.
+20230130:
+ AFFECTS: users of USES=nodejs, www/node*, www/npm* and www/yarn*
+ AUTHOR: sunpoet@FreeBSD.org
+
+ The current USES=nodejs has the following issues:
+ - www/node is not the default version while www/node16 is.
+ - It also means inconsistent naming of node ports.
+ - www/npm duplicates with www/npm-node16.
+ - www/yarn duplicates with www/yarn-node16.
+
+ The notable changes are introduced to fix the above issues:
+ - Rewrite Mk/Uses/nodejs.mk.
+ - Add new LTS version of nodejs (www/noe18).
+ - Add new current version of nodejs (www/node19).
+ - Change default nodejs version from 16 to 18 (latest LTS),
+ - Use consistent naming for all supported node versions.
+ - Convert www/node, www/npm and www/yarn to meta ports.
+
+ After these changes:
+ - All supported node versions are named as node{14,16,18,19}.
+ - www/node is a meta port which depends on the default version
+ (e.g. www/node18)
+ - www/npm is a meta port which depends on the default version
+ (e.g. www/npm-node18)
+ - www/yarn is a meta port which depends on the default version
+ (e.g. www/yarn-node18)
+
20230129:
AFFECTS: users of benchmarks/ddosify
AUTHOR: fernape@freebsd.org