nodejs18: updated to 18.13.0
Version 18.13.0 'Hydrogen' (LTS), @danielleadams Notable changes Add support for externally shared js builtins By default Node.js is built so that all dependencies are bundled into the Node.js binary itself. Some Node.js distributions prefer to manage dependencies externally. There are existing build options that allow dependencies with native code to be externalized. This commit adds additional options so that dependencies with JavaScript code (including WASM) can also be externalized. This addition does not affect binaries shipped by the Node.js project but will allow other distributions to externalize additional dependencies when needed. Introduce File Support function mocking on Node.js test runner build: disable v8 snapshot compression by default (Joyee Cheung) crypto: update root certificates (Luigi Pinca) deps: update ICU to 72.1 (Michaël Zasso) doc: add doc-only deprecation for headers/trailers setters (Rich Trott) add Rafael to the tsc (Michael Dawson) deprecate use of invalid ports in url.parse (Antoine du Hamel) add lukekarrys to collaborators (Luke Karrys) add anonrig to collaborators (Yagiz Nizipli) deprecate url.parse() (Rich Trott) lib: drop fetch experimental warning (Matteo Collina) net: (SEMVER-MINOR) add autoSelectFamily and autoSelectFamilyAttemptTimeout options (Paolo Insogna) src: (SEMVER-MINOR) add uvwasi version (Jithil P Ponnan) (SEMVER-MINOR) add initial shadow realm support (Chengzhong Wu) test_runner: (SEMVER-MINOR) add t.after() hook (Colin Ihrig) (SEMVER-MINOR) don't use a symbol for runHook() (Colin Ihrig) tls: (SEMVER-MINOR) add "ca" property to certificate object (Ben Noordhuis) remove trustcor root ca certificates (Ben Noordhuis) tools: update certdata.txt (Luigi Pinca) util: add fast path for utf8 encoding (Yagiz Nizipli) improve textdecoder decode performance (Yagiz Nizipli) (SEMVER-MINOR) add MIME utilities (Bradley Farias)
This commit is contained in:
parent
d782a7e83c
commit
66bb9a48bf
2 changed files with 8 additions and 8 deletions
|
@ -1,7 +1,6 @@
|
|||
# $NetBSD: Makefile,v 1.2 2022/12/03 20:53:31 adam Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2023/01/11 17:33:48 adam Exp $
|
||||
|
||||
DISTNAME= node-v18.12.1
|
||||
PKGREVISION= 1
|
||||
DISTNAME= node-v18.13.0
|
||||
EXTRACT_SUFX= .tar.xz
|
||||
|
||||
USE_LANGUAGES= c gnu++17
|
||||
|
@ -20,8 +19,9 @@ CONFIGURE_ARGS+= --shared-ngtcp2
|
|||
CONFIGURE_ARGS+= --with-intl=system-icu
|
||||
CONFIGURE_ARGS+= --without-dtrace
|
||||
|
||||
PYTHON_VERSIONS_INCOMPATIBLE= 27 311
|
||||
PYTHON_VERSIONS_INCOMPATIBLE= 27
|
||||
|
||||
CHECK_PORTABILITY_SKIP+= deps/uv/autogen.sh
|
||||
CHECK_PORTABILITY_SKIP+= deps/v8/tools/cppgc/export_to_github.sh
|
||||
CHECK_PORTABILITY_SKIP+= deps/v8/tools/cppgc/test_cmake.sh
|
||||
CHECK_PORTABILITY_SKIP+= tools/macos-installer/pkgbuild/npm/scripts/preinstall
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
$NetBSD: distinfo,v 1.1 2022/12/03 16:59:22 adam Exp $
|
||||
$NetBSD: distinfo,v 1.2 2023/01/11 17:33:48 adam Exp $
|
||||
|
||||
BLAKE2s (node-v18.12.1.tar.xz) = 04149195afca2ed0d9582e7ad1bcd1c2618fed8d2b04eed9beb27da18b1663d0
|
||||
SHA512 (node-v18.12.1.tar.xz) = 1eb4978a1de19c026561a8484df87bdeb6f7f2ec8ae1eb38b6241d0b0ff6158a4a7d19f42df7e295a63b8047eaf862a7470494143b2e27bb36b65e4663966588
|
||||
Size (node-v18.12.1.tar.xz) = 38454588 bytes
|
||||
BLAKE2s (node-v18.13.0.tar.xz) = 68f7495a85d2c6fb61f94dc51940afa6e43bc194f86bc7ca044ef36bf072d90b
|
||||
SHA512 (node-v18.13.0.tar.xz) = d32c8e333d8ee7ba24c9420c943a0e57f5a48e734ce7ced210a2977fc274db133bb01ba4f604cc06271357675fde0b6e9b5cd208de4d5202b08e722e9f32e20d
|
||||
Size (node-v18.13.0.tar.xz) = 40324048 bytes
|
||||
SHA1 (patch-common.gypi) = 80f3645498853b9939167d152365b4fa49528b70
|
||||
SHA1 (patch-deps_cares_cares.gyp) = 22b44f2ac59963f694dfe4f4585e08960b3dec32
|
||||
SHA1 (patch-deps_uv_common.gypi) = d38a9c8d9e3522f15812aec2f5b1e1e636d4bab3
|
||||
|
|
Loading…
Reference in a new issue