pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/lang/nodejs
Module Name: pkgsrc
Committed By: adam
Date: Thu Jun 25 08:32:37 UTC 2026
Modified Files:
pkgsrc/lang/nodejs: Makefile PLIST distinfo
Log Message:
nodejs: updated to 26.4.0
26.4.0 (Current)
Notable Changes
- (SEMVER-MINOR) doc: update blockList stability status to release candidate (alphaleadership)
- (SEMVER-MINOR) fs: support caller-supplied readFile() buffers (Matteo Collina)
- (SEMVER-MINOR) http: close pre-request sockets in closeIdleConnections (semimikoh)
- (SEMVER-MINOR) loader: implement package maps (Maël Nison)
- (SEMVER-MINOR) net: support TCP_KEEPINTVL and TCP_KEEPCNT in setKeepAlive (Guy Bedford)
- (SEMVER-MINOR) tls: add certificateCompression option (Tim Perry)
- (SEMVER-MINOR) vfs: dispatch node:fs/promises to mounted VFS instances (Matteo Collina)
- (SEMVER-MINOR) vfs: add minimal node:vfs subsystem (Matteo Collina)
To generate a diff of this commit:
cvs rdiff -u -r1.354 -r1.355 pkgsrc/lang/nodejs/Makefile
cvs rdiff -u -r1.103 -r1.104 pkgsrc/lang/nodejs/PLIST
cvs rdiff -u -r1.322 -r1.323 pkgsrc/lang/nodejs/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/lang/nodejs/Makefile
diff -u pkgsrc/lang/nodejs/Makefile:1.354 pkgsrc/lang/nodejs/Makefile:1.355
--- pkgsrc/lang/nodejs/Makefile:1.354 Mon Jun 22 08:55:22 2026
+++ pkgsrc/lang/nodejs/Makefile Thu Jun 25 08:32:37 2026
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.354 2026/06/22 08:55:22 adam Exp $
+# $NetBSD: Makefile,v 1.355 2026/06/25 08:32:37 adam Exp $
-DISTNAME= node-v26.3.1
+DISTNAME= node-v26.4.0
EXTRACT_SUFX= .tar.xz
USE_CXX_FEATURES= c++20 charconv
Index: pkgsrc/lang/nodejs/PLIST
diff -u pkgsrc/lang/nodejs/PLIST:1.103 pkgsrc/lang/nodejs/PLIST:1.104
--- pkgsrc/lang/nodejs/PLIST:1.103 Mon Jun 1 20:17:11 2026
+++ pkgsrc/lang/nodejs/PLIST Thu Jun 25 08:32:37 2026
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.103 2026/06/01 20:17:11 adam Exp $
+@comment $NetBSD: PLIST,v 1.104 2026/06/25 08:32:37 adam Exp $
bin/node
bin/npm
bin/npx
@@ -402,6 +402,7 @@ lib/node_modules/npm/lib/npm.js
lib/node_modules/npm/lib/package-url-cmd.js
lib/node_modules/npm/lib/trust-cmd.js
lib/node_modules/npm/lib/utils/allow-scripts-cmd.js
+lib/node_modules/npm/lib/utils/allow-scripts-remediation.js
lib/node_modules/npm/lib/utils/allow-scripts-writer.js
lib/node_modules/npm/lib/utils/audit-error.js
lib/node_modules/npm/lib/utils/auth.js
@@ -607,6 +608,7 @@ lib/node_modules/npm/node_modules/@npmcl
lib/node_modules/npm/node_modules/@npmcli/arborist/lib/printable.js
lib/node_modules/npm/node_modules/@npmcli/arborist/lib/query-selector-all.js
lib/node_modules/npm/node_modules/@npmcli/arborist/lib/realpath.js
+lib/node_modules/npm/node_modules/@npmcli/arborist/lib/release-age-exclude.js
lib/node_modules/npm/node_modules/@npmcli/arborist/lib/relpath.js
lib/node_modules/npm/node_modules/@npmcli/arborist/lib/reset-dep-flags.js
lib/node_modules/npm/node_modules/@npmcli/arborist/lib/retire-path.js
@@ -617,6 +619,7 @@ lib/node_modules/npm/node_modules/@npmcl
lib/node_modules/npm/node_modules/@npmcli/arborist/lib/spec-from-lock.js
lib/node_modules/npm/node_modules/@npmcli/arborist/lib/tracker.js
lib/node_modules/npm/node_modules/@npmcli/arborist/lib/tree-check.js
+lib/node_modules/npm/node_modules/@npmcli/arborist/lib/unreviewed-scripts.js
lib/node_modules/npm/node_modules/@npmcli/arborist/lib/version-from-tgz.js
lib/node_modules/npm/node_modules/@npmcli/arborist/lib/vuln.js
lib/node_modules/npm/node_modules/@npmcli/arborist/lib/yarn-lock.js
@@ -1193,6 +1196,7 @@ lib/node_modules/npm/node_modules/libnpm
lib/node_modules/npm/node_modules/libnpmexec/lib/is-windows.js
lib/node_modules/npm/node_modules/libnpmexec/lib/no-tty.js
lib/node_modules/npm/node_modules/libnpmexec/lib/run-script.js
+lib/node_modules/npm/node_modules/libnpmexec/lib/strict-allow-scripts-preflight.js
lib/node_modules/npm/node_modules/libnpmexec/lib/with-lock.js
lib/node_modules/npm/node_modules/libnpmexec/package.json
lib/node_modules/npm/node_modules/libnpmfund/LICENSE
@@ -1568,6 +1572,7 @@ lib/node_modules/npm/node_modules/postcs
lib/node_modules/npm/node_modules/postcss-selector-parser/dist/util/ensureObject.js
lib/node_modules/npm/node_modules/postcss-selector-parser/dist/util/getProp.js
lib/node_modules/npm/node_modules/postcss-selector-parser/dist/util/index.js
+lib/node_modules/npm/node_modules/postcss-selector-parser/dist/util/maxNestingDepth.js
lib/node_modules/npm/node_modules/postcss-selector-parser/dist/util/stripComments.js
lib/node_modules/npm/node_modules/postcss-selector-parser/dist/util/unesc.js
lib/node_modules/npm/node_modules/postcss-selector-parser/package.json
Index: pkgsrc/lang/nodejs/distinfo
diff -u pkgsrc/lang/nodejs/distinfo:1.322 pkgsrc/lang/nodejs/distinfo:1.323
--- pkgsrc/lang/nodejs/distinfo:1.322 Mon Jun 22 08:55:22 2026
+++ pkgsrc/lang/nodejs/distinfo Thu Jun 25 08:32:37 2026
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.322 2026/06/22 08:55:22 adam Exp $
+$NetBSD: distinfo,v 1.323 2026/06/25 08:32:37 adam Exp $
-BLAKE2s (node-v26.3.1.tar.xz) = 52db1a5a2bcdf3fec88f4a8fd24b89e4574e6be0dc0e186faff109f399942251
-SHA512 (node-v26.3.1.tar.xz) = 9662dd1ba1261fc8e6a1cbb792a7a16acf44073caf32a41b70175f7f4ca83648251eb757ee98fe293d2385ff7eb69a7a4ab8e68eaebfea18ea4d2d9593c0f831
-Size (node-v26.3.1.tar.xz) = 59836520 bytes
+BLAKE2s (node-v26.4.0.tar.xz) = fcc2ef8fc261c58a4b6275727d8df599bc6db8b35fc9c1c2c4518b0507a3bd6f
+SHA512 (node-v26.4.0.tar.xz) = 882e99ca268ed9909e493a220f6173efa5f133b6c95c35efa697c36f9a5d9d137d716abd8ab0605585ab4a9d8ae53140e8d6fe53045290efebb0e70b2fbacabb
+Size (node-v26.4.0.tar.xz) = 60288924 bytes
SHA1 (patch-common.gypi) = 4620bcaf4d953bc415319a957fe41e1a70b94357
SHA1 (patch-deps_cares_cares.gyp) = 22b44f2ac59963f694dfe4f4585e08960b3dec32
SHA1 (patch-deps_uv_common.gypi) = 29f0c382b68f77749a71ce39fa2ca37338ca18ec
Home |
Main Index |
Thread Index |
Old Index