node-linux-arm64 18.1.0 → 18.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +320 -0
- package/README.md +19 -9
- package/bin/node +0 -0
- package/include/node/common.gypi +1 -1
- package/include/node/config.gypi +5 -1
- package/include/node/js_native_api.h +367 -363
- package/include/node/js_native_api_types.h +13 -4
- package/include/node/node.h +10 -0
- package/include/node/node_api.h +95 -92
- package/include/node/node_api_types.h +8 -10
- package/include/node/node_version.h +1 -1
- package/include/node/openssl/archs/BSD-x86/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/BSD-x86/asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/BSD-x86/asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/BSD-x86/asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/BSD-x86/asm/include/openssl/opensslconf.h +197 -0
- package/include/node/openssl/archs/BSD-x86/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/BSD-x86/asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/BSD-x86/asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/BSD-x86/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/BSD-x86/asm_avx2/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/BSD-x86/asm_avx2/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/opensslconf.h +197 -0
- package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/BSD-x86/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/BSD-x86/no-asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/BSD-x86/no-asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/opensslconf.h +200 -0
- package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/BSD-x86_64/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/BSD-x86_64/asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/BSD-x86_64/asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/opensslconf.h +197 -0
- package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/opensslconf.h +197 -0
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/BSD-x86_64/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/BSD-x86_64/no-asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/BSD-x86_64/no-asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/opensslconf.h +200 -0
- package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/VC-WIN32/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/VC-WIN32/asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/VC-WIN32/asm/crypto/include/internal/dso_conf.h +16 -0
- package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/opensslconf.h +203 -0
- package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/crypto/include/internal/dso_conf.h +16 -0
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/opensslconf.h +203 -0
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/VC-WIN32/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/VC-WIN32/no-asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/VC-WIN32/no-asm/crypto/include/internal/dso_conf.h +16 -0
- package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/opensslconf.h +206 -0
- package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/crypto/include/internal/dso_conf.h +16 -0
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/opensslconf.h +203 -0
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/VC-WIN64A/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/VC-WIN64A/asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/VC-WIN64A/asm/crypto/include/internal/dso_conf.h +16 -0
- package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/opensslconf.h +203 -0
- package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/crypto/include/internal/dso_conf.h +16 -0
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/opensslconf.h +203 -0
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/VC-WIN64A/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/VC-WIN64A/no-asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/VC-WIN64A/no-asm/crypto/include/internal/dso_conf.h +16 -0
- package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/opensslconf.h +206 -0
- package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/aix-gcc/asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/aix-gcc/asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/aix-gcc/asm/include/openssl/opensslconf.h +203 -0
- package/include/node/openssl/archs/aix-gcc/asm_avx2/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/aix-gcc/asm_avx2/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/opensslconf.h +203 -0
- package/include/node/openssl/archs/aix-gcc/no-asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/aix-gcc/no-asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/opensslconf.h +206 -0
- package/include/node/openssl/archs/aix64-gcc/asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/aix64-gcc/asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/aix64-gcc/asm/include/openssl/opensslconf.h +203 -0
- package/include/node/openssl/archs/aix64-gcc/asm_avx2/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/aix64-gcc/asm_avx2/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/aix64-gcc/asm_avx2/include/openssl/opensslconf.h +203 -0
- package/include/node/openssl/archs/aix64-gcc/no-asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/aix64-gcc/no-asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/aix64-gcc/no-asm/include/openssl/opensslconf.h +206 -0
- package/include/node/openssl/archs/aix64-gcc-as/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/darwin-i386-cc/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/darwin-i386-cc/asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/darwin-i386-cc/asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/opensslconf.h +203 -0
- package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/opensslconf.h +203 -0
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/opensslconf.h +206 -0
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/opensslconf.h +203 -0
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/opensslconf.h +203 -0
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/opensslconf.h +206 -0
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/opensslconf.h +203 -0
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/opensslconf.h +203 -0
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/opensslconf.h +206 -0
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/linux-aarch64/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-aarch64/asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/linux-aarch64/asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/opensslconf.h +200 -0
- package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/opensslconf.h +200 -0
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/linux-aarch64/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-aarch64/no-asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/linux-aarch64/no-asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/opensslconf.h +203 -0
- package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/linux-armv4/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-armv4/asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/linux-armv4/asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/linux-armv4/asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/linux-armv4/asm/include/openssl/opensslconf.h +200 -0
- package/include/node/openssl/archs/linux-armv4/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux-armv4/asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/linux-armv4/asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/linux-armv4/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-armv4/asm_avx2/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/linux-armv4/asm_avx2/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/opensslconf.h +200 -0
- package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/linux-armv4/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-armv4/no-asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/linux-armv4/no-asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/opensslconf.h +203 -0
- package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/linux-elf/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-elf/asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/linux-elf/asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/linux-elf/asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/linux-elf/asm/include/openssl/opensslconf.h +200 -0
- package/include/node/openssl/archs/linux-elf/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux-elf/asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/linux-elf/asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/linux-elf/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-elf/asm_avx2/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/linux-elf/asm_avx2/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/opensslconf.h +200 -0
- package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/linux-elf/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-elf/no-asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/linux-elf/no-asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/opensslconf.h +203 -0
- package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/linux-ppc/asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/linux-ppc/asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/linux-ppc/asm/include/openssl/opensslconf.h +200 -0
- package/include/node/openssl/archs/linux-ppc/asm_avx2/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/linux-ppc/asm_avx2/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/opensslconf.h +200 -0
- package/include/node/openssl/archs/linux-ppc/no-asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/linux-ppc/no-asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/opensslconf.h +203 -0
- package/include/node/openssl/archs/linux-ppc64/asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/linux-ppc64/asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/opensslconf.h +200 -0
- package/include/node/openssl/archs/linux-ppc64/asm_avx2/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/linux-ppc64/asm_avx2/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/opensslconf.h +200 -0
- package/include/node/openssl/archs/linux-ppc64/no-asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/linux-ppc64/no-asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/opensslconf.h +203 -0
- package/include/node/openssl/archs/linux-ppc64le/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-ppc64le/asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/linux-ppc64le/asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/opensslconf.h +200 -0
- package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/opensslconf.h +200 -0
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/linux-ppc64le/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-ppc64le/no-asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/linux-ppc64le/no-asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/opensslconf.h +203 -0
- package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/linux-x86_64/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-x86_64/asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/linux-x86_64/asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/opensslconf.h +200 -0
- package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/opensslconf.h +200 -0
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/linux-x86_64/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux-x86_64/no-asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/linux-x86_64/no-asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/opensslconf.h +203 -0
- package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/linux32-s390x/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux32-s390x/asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/linux32-s390x/asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/opensslconf.h +200 -0
- package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/opensslconf.h +200 -0
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/linux32-s390x/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux32-s390x/no-asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/linux32-s390x/no-asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/opensslconf.h +203 -0
- package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/linux64-mips64/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux64-mips64/asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/linux64-mips64/asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/opensslconf.h +200 -0
- package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/opensslconf.h +200 -0
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/linux64-mips64/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux64-mips64/no-asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/linux64-mips64/no-asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/opensslconf.h +203 -0
- package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/linux64-riscv64/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux64-riscv64/no-asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/linux64-riscv64/no-asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/opensslconf.h +203 -0
- package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/linux64-s390x/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux64-s390x/asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/linux64-s390x/asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/opensslconf.h +200 -0
- package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/opensslconf.h +200 -0
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/linux64-s390x/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/linux64-s390x/no-asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/linux64-s390x/no-asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/opensslconf.h +203 -0
- package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/solaris-x86-gcc/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/solaris-x86-gcc/asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/solaris-x86-gcc/asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/opensslconf.h +200 -0
- package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/opensslconf.h +200 -0
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/opensslconf.h +203 -0
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/opensslconf.h +200 -0
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/opensslconf.h +200 -0
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/x509.h +4 -4
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/crypto/buildinf.h +1 -1
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/crypto/include/internal/bn_conf.h +28 -0
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/crypto/include/internal/dso_conf.h +17 -0
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/crypto.h +2 -0
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/opensslconf.h +203 -0
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/opensslv.h +5 -5
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/ssl.h +11 -0
- package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/x509.h +4 -4
- package/include/node/openssl/ecerr.h +2 -1
- package/include/node/openssl/opensslconf.h +15 -21
- package/include/node/v8-version.h +3 -3
- package/package.json +1 -1
- package/include/node/openssl/opensslconf_no-asm.h +0 -47
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,9 @@
|
|
|
8
8
|
</tr>
|
|
9
9
|
<tr>
|
|
10
10
|
<td>
|
|
11
|
+
<a href="#18.4.0">18.4.0</a><br/>
|
|
12
|
+
<a href="#18.3.0">18.3.0</a><br/>
|
|
13
|
+
<a href="#18.2.0">18.2.0</a><br/>
|
|
11
14
|
<a href="#18.1.0">18.1.0</a><br/>
|
|
12
15
|
<a href="#18.0.0">18.0.0</a><br/>
|
|
13
16
|
</td>
|
|
@@ -34,6 +37,323 @@
|
|
|
34
37
|
* [io.js](CHANGELOG_IOJS.md)
|
|
35
38
|
* [Archive](CHANGELOG_ARCHIVE.md)
|
|
36
39
|
|
|
40
|
+
<a id="18.4.0"></a>
|
|
41
|
+
|
|
42
|
+
## 2022-06-16, Version 18.4.0 (Current), @danielleadams
|
|
43
|
+
|
|
44
|
+
### Notable Changes
|
|
45
|
+
|
|
46
|
+
* **crypto**:
|
|
47
|
+
* remove Node.js-specific webcrypto extensions (Filip Skokan) [#43310](https://github.com/nodejs/node/pull/43310)
|
|
48
|
+
* add CFRG curves to Web Crypto API (Filip Skokan) [#42507](https://github.com/nodejs/node/pull/42507)
|
|
49
|
+
* **dns**:
|
|
50
|
+
* accept `'IPv4'` and `'IPv6'` for `family` (Antoine du Hamel) [#43054](https://github.com/nodejs/node/pull/43054)
|
|
51
|
+
* **report**:
|
|
52
|
+
* add more heap infos in process report (theanarkh) [#43116](https://github.com/nodejs/node/pull/43116)
|
|
53
|
+
|
|
54
|
+
### Commits
|
|
55
|
+
|
|
56
|
+
* \[[`702bfa0b7c`](https://github.com/nodejs/node/commit/702bfa0b7c)] - **async\_hooks**: use `kEmptyObject` (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159)
|
|
57
|
+
* \[[`f7c4015fd8`](https://github.com/nodejs/node/commit/f7c4015fd8)] - **bootstrap**: consolidate global properties definition (Chengzhong Wu) [#43357](https://github.com/nodejs/node/pull/43357)
|
|
58
|
+
* \[[`8d892f5259`](https://github.com/nodejs/node/commit/8d892f5259)] - **build**: add nonpm and nocorepack to vcbuild.bat (Darshan Sen) [#43219](https://github.com/nodejs/node/pull/43219)
|
|
59
|
+
* \[[`4109ddc005`](https://github.com/nodejs/node/commit/4109ddc005)] - **child\_process**: use `kEmptyObject` (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159)
|
|
60
|
+
* \[[`7b5cb14f0c`](https://github.com/nodejs/node/commit/7b5cb14f0c)] - **cluster**: use `kEmptyObject` (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159)
|
|
61
|
+
* \[[`9f1de2c005`](https://github.com/nodejs/node/commit/9f1de2c005)] - **crypto**: fix webcrypto import of cfrg raw public keys (Filip Skokan) [#43404](https://github.com/nodejs/node/pull/43404)
|
|
62
|
+
* \[[`7f02e22998`](https://github.com/nodejs/node/commit/7f02e22998)] - **crypto**: test webcrypto ec raw public key import (Filip Skokan) [#43405](https://github.com/nodejs/node/pull/43405)
|
|
63
|
+
* \[[`0a075cb548`](https://github.com/nodejs/node/commit/0a075cb548)] - **crypto**: fix webcrypto JWK EC and OKP import crv check (Filip Skokan) [#43346](https://github.com/nodejs/node/pull/43346)
|
|
64
|
+
* \[[`df0903c8e8`](https://github.com/nodejs/node/commit/df0903c8e8)] - **crypto**: use `kEmptyObject` (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159)
|
|
65
|
+
* \[[`6d0053345e`](https://github.com/nodejs/node/commit/6d0053345e)] - **(SEMVER-MINOR)** **crypto**: remove Node.js-specific webcrypto extensions (Filip Skokan) [#43310](https://github.com/nodejs/node/pull/43310)
|
|
66
|
+
* \[[`28c034d6b5`](https://github.com/nodejs/node/commit/28c034d6b5)] - **(SEMVER-MINOR)** **crypto**: add CFRG curves to Web Crypto API (Filip Skokan) [#42507](https://github.com/nodejs/node/pull/42507)
|
|
67
|
+
* \[[`fe7fd85109`](https://github.com/nodejs/node/commit/fe7fd85109)] - **deps**: update Corepack to 0.11.2 (Maël Nison) [#43402](https://github.com/nodejs/node/pull/43402)
|
|
68
|
+
* \[[`517f17b214`](https://github.com/nodejs/node/commit/517f17b214)] - **deps**: update undici to 5.5.1 (Node.js GitHub Bot) [#43412](https://github.com/nodejs/node/pull/43412)
|
|
69
|
+
* \[[`f4c830fbe4`](https://github.com/nodejs/node/commit/f4c830fbe4)] - **deps**: upgrade npm to 8.12.1 (npm CLI robot) [#43301](https://github.com/nodejs/node/pull/43301)
|
|
70
|
+
* \[[`0bb84b09a5`](https://github.com/nodejs/node/commit/0bb84b09a5)] - **(SEMVER-MINOR)** **dns**: accept `'IPv4'` and `'IPv6'` for `family` (Antoine du Hamel) [#43054](https://github.com/nodejs/node/pull/43054)
|
|
71
|
+
* \[[`f91babe494`](https://github.com/nodejs/node/commit/f91babe494)] - **doc**: packages documentation updates for 12 EOL (Guy Bedford) [#43375](https://github.com/nodejs/node/pull/43375)
|
|
72
|
+
* \[[`066f963ec1`](https://github.com/nodejs/node/commit/066f963ec1)] - **doc**: add initial doc on how to update cjs-module-lexer (Michael Dawson) [#43255](https://github.com/nodejs/node/pull/43255)
|
|
73
|
+
* \[[`36e5684ae0`](https://github.com/nodejs/node/commit/36e5684ae0)] - **doc**: clarify use of deps/icu-small (Michael Dawson) [#43287](https://github.com/nodejs/node/pull/43287)
|
|
74
|
+
* \[[`b9634e7ef3`](https://github.com/nodejs/node/commit/b9634e7ef3)] - **doc**: remove llnode from diag tierlist (Tony Gorez) [#43289](https://github.com/nodejs/node/pull/43289)
|
|
75
|
+
* \[[`4caeb10e7b`](https://github.com/nodejs/node/commit/4caeb10e7b)] - **doc**: remove ETW from diag tierlist (Tony Gorez) [#43295](https://github.com/nodejs/node/pull/43295)
|
|
76
|
+
* \[[`41955e5ce5`](https://github.com/nodejs/node/commit/41955e5ce5)] - **doc**: use serial comma in report docs (Tobias Nießen) [#43394](https://github.com/nodejs/node/pull/43394)
|
|
77
|
+
* \[[`e30d4c1cb0`](https://github.com/nodejs/node/commit/e30d4c1cb0)] - **doc**: add fspromises mkdir example (Tierney Cyren) [#40843](https://github.com/nodejs/node/pull/40843)
|
|
78
|
+
* \[[`adec5fa929`](https://github.com/nodejs/node/commit/adec5fa929)] - **doc**: add F3n67u to triagers (Feng Yu) [#43350](https://github.com/nodejs/node/pull/43350)
|
|
79
|
+
* \[[`cc3505b192`](https://github.com/nodejs/node/commit/cc3505b192)] - **doc**: fix typo in globals.md (Daeyeon Jeong) [#43365](https://github.com/nodejs/node/pull/43365)
|
|
80
|
+
* \[[`052c8eaf6a`](https://github.com/nodejs/node/commit/052c8eaf6a)] - **doc**: use serial comma in webstreams docs (Tobias Nießen) [#43353](https://github.com/nodejs/node/pull/43353)
|
|
81
|
+
* \[[`b824a0b7d0`](https://github.com/nodejs/node/commit/b824a0b7d0)] - **doc**: fix specifier example in `esm.md` (hiroki osame) [#43351](https://github.com/nodejs/node/pull/43351)
|
|
82
|
+
* \[[`d558b3c028`](https://github.com/nodejs/node/commit/d558b3c028)] - **doc**: add undici to glossary (F3n67u) [#43327](https://github.com/nodejs/node/pull/43327)
|
|
83
|
+
* \[[`f9ad98f5cb`](https://github.com/nodejs/node/commit/f9ad98f5cb)] - **doc**: change glossary link in pull request guide to node's glossary doc (Feng Yu) [#43318](https://github.com/nodejs/node/pull/43318)
|
|
84
|
+
* \[[`02944a6783`](https://github.com/nodejs/node/commit/02944a6783)] - **doc**: fix typo in util.parseArgs usage example (Michael Ficarra) [#43332](https://github.com/nodejs/node/pull/43332)
|
|
85
|
+
* \[[`f2bc6a3f71`](https://github.com/nodejs/node/commit/f2bc6a3f71)] - **doc**: improve description of TZ (Tobias Nießen) [#43334](https://github.com/nodejs/node/pull/43334)
|
|
86
|
+
* \[[`9335ea6c35`](https://github.com/nodejs/node/commit/9335ea6c35)] - **doc**: use serial comma in net docs (Tobias Nießen) [#43335](https://github.com/nodejs/node/pull/43335)
|
|
87
|
+
* \[[`05f38c6c3e`](https://github.com/nodejs/node/commit/05f38c6c3e)] - **doc**: make clear the result of comparison between Symbol.for (Kohei Ueno) [#43309](https://github.com/nodejs/node/pull/43309)
|
|
88
|
+
* \[[`c9aed9de9f`](https://github.com/nodejs/node/commit/c9aed9de9f)] - **doc**: add missing require to stream api doc (Feng Yu) [#43237](https://github.com/nodejs/node/pull/43237)
|
|
89
|
+
* \[[`f3188c1c9c`](https://github.com/nodejs/node/commit/f3188c1c9c)] - **doc**: add CIGTM to `glossary.md` (Feng Yu) [#43316](https://github.com/nodejs/node/pull/43316)
|
|
90
|
+
* \[[`c572d2d115`](https://github.com/nodejs/node/commit/c572d2d115)] - **doc**: use serial comma in pull request doc (Feng Yu) [#43319](https://github.com/nodejs/node/pull/43319)
|
|
91
|
+
* \[[`8a4e1fa002`](https://github.com/nodejs/node/commit/8a4e1fa002)] - **doc**: use serial comma in ESM docs (Tobias Nießen) [#43322](https://github.com/nodejs/node/pull/43322)
|
|
92
|
+
* \[[`fff0560a66`](https://github.com/nodejs/node/commit/fff0560a66)] - **doc**: promote cdt to tier 3 (Tony Gorez) [#43290](https://github.com/nodejs/node/pull/43290)
|
|
93
|
+
* \[[`7d0f6da97f`](https://github.com/nodejs/node/commit/7d0f6da97f)] - **doc**: fix chromium document link in pull-requests.md (rikapo) [#43265](https://github.com/nodejs/node/pull/43265)
|
|
94
|
+
* \[[`4674b0d2a5`](https://github.com/nodejs/node/commit/4674b0d2a5)] - **doc**: fix 404 link of BUILDING.md (Feng Yu) [#43234](https://github.com/nodejs/node/pull/43234)
|
|
95
|
+
* \[[`ee392c5c0b`](https://github.com/nodejs/node/commit/ee392c5c0b)] - **doc**: update CHANGELOG\_V18.md (Filip Skokan) [#43298](https://github.com/nodejs/node/pull/43298)
|
|
96
|
+
* \[[`5a3a2a197f`](https://github.com/nodejs/node/commit/5a3a2a197f)] - **doc**: add src/crypto to CC list for nodejs/crypto (Tobias Nießen) [#43286](https://github.com/nodejs/node/pull/43286)
|
|
97
|
+
* \[[`69ce50396c`](https://github.com/nodejs/node/commit/69ce50396c)] - **doc**: use serial comma in console docs (Tobias Nießen) [#43257](https://github.com/nodejs/node/pull/43257)
|
|
98
|
+
* \[[`0c5092c51c`](https://github.com/nodejs/node/commit/0c5092c51c)] - **events**: fix adding abort listener in `events.once` (Daeyeon Jeong) [#43373](https://github.com/nodejs/node/pull/43373)
|
|
99
|
+
* \[[`fda2105481`](https://github.com/nodejs/node/commit/fda2105481)] - **events**: use `kEmptyObject` (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159)
|
|
100
|
+
* \[[`63bf49b143`](https://github.com/nodejs/node/commit/63bf49b143)] - **fs**: use `kEmptyObject` (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159)
|
|
101
|
+
* \[[`9b764531b9`](https://github.com/nodejs/node/commit/9b764531b9)] - **fs**: export constants from `fs/promises` (Feng Yu) [#43177](https://github.com/nodejs/node/pull/43177)
|
|
102
|
+
* \[[`a4409f85f8`](https://github.com/nodejs/node/commit/a4409f85f8)] - **http**: use `kEmptyObject` (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159)
|
|
103
|
+
* \[[`2ffd54105a`](https://github.com/nodejs/node/commit/2ffd54105a)] - **http2**: use `kEmptyObject` (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159)
|
|
104
|
+
* \[[`b468b8fe51`](https://github.com/nodejs/node/commit/b468b8fe51)] - **https**: use `kEmptyObject` (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159)
|
|
105
|
+
* \[[`d2a98dc6cf`](https://github.com/nodejs/node/commit/d2a98dc6cf)] - **inspector**: add missing initialization (Michael Dawson) [#43254](https://github.com/nodejs/node/pull/43254)
|
|
106
|
+
* \[[`3b2f7eed39`](https://github.com/nodejs/node/commit/3b2f7eed39)] - **lib**: use `kEmptyObject` in various places (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159)
|
|
107
|
+
* \[[`4a9511d971`](https://github.com/nodejs/node/commit/4a9511d971)] - **lib**: give names to promisified methods (LiviaMedeiros) [#43218](https://github.com/nodejs/node/pull/43218)
|
|
108
|
+
* \[[`b8644606eb`](https://github.com/nodejs/node/commit/b8644606eb)] - **lib**: use null-prototype objects for property descriptors (Antoine du Hamel) [#43270](https://github.com/nodejs/node/pull/43270)
|
|
109
|
+
* \[[`64edd6cbc3`](https://github.com/nodejs/node/commit/64edd6cbc3)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#43399](https://github.com/nodejs/node/pull/43399)
|
|
110
|
+
* \[[`b05cea57ba`](https://github.com/nodejs/node/commit/b05cea57ba)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#43387](https://github.com/nodejs/node/pull/43387)
|
|
111
|
+
* \[[`a8ecec57e3`](https://github.com/nodejs/node/commit/a8ecec57e3)] - **meta**: move one or more collaborators to emeritus (#43183) (Node.js GitHub Bot) [#43183](https://github.com/nodejs/node/pull/43183)
|
|
112
|
+
* \[[`60dc36244a`](https://github.com/nodejs/node/commit/60dc36244a)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#43312](https://github.com/nodejs/node/pull/43312)
|
|
113
|
+
* \[[`9803b82ac7`](https://github.com/nodejs/node/commit/9803b82ac7)] - **net,dns**: move hasObserver out of perf function (theanarkh) [#43217](https://github.com/nodejs/node/pull/43217)
|
|
114
|
+
* \[[`112518fb1d`](https://github.com/nodejs/node/commit/112518fb1d)] - **perf\_hooks**: fix function wrapped by `timerify` to work correctly (Kohei Ueno) [#43330](https://github.com/nodejs/node/pull/43330)
|
|
115
|
+
* \[[`a3310d13bf`](https://github.com/nodejs/node/commit/a3310d13bf)] - **perf\_hooks**: use `kEmptyObject` (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159)
|
|
116
|
+
* \[[`7e8a00a26d`](https://github.com/nodejs/node/commit/7e8a00a26d)] - **readline**: fix question stack overflow (Eugene Chapko) [#43320](https://github.com/nodejs/node/pull/43320)
|
|
117
|
+
* \[[`5e98cacf77`](https://github.com/nodejs/node/commit/5e98cacf77)] - **readline**: use `kEmptyObject` (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159)
|
|
118
|
+
* \[[`66d956ca49`](https://github.com/nodejs/node/commit/66d956ca49)] - **repl**: make autocomplete case-insensitive (Sergey Petushkov) [#41632](https://github.com/nodejs/node/pull/41632)
|
|
119
|
+
* \[[`201f3d7f56`](https://github.com/nodejs/node/commit/201f3d7f56)] - **(SEMVER-MINOR)** **report**: add more heap infos in process report (theanarkh) [#43116](https://github.com/nodejs/node/pull/43116)
|
|
120
|
+
* \[[`a0568409b6`](https://github.com/nodejs/node/commit/a0568409b6)] - **src**: fix json utils escapes for U+000B (Chengzhong Wu) [#43206](https://github.com/nodejs/node/pull/43206)
|
|
121
|
+
* \[[`931ecfa033`](https://github.com/nodejs/node/commit/931ecfa033)] - **src**: fix memory leaks and refactor `ByteSource` (Tobias Nießen) [#43202](https://github.com/nodejs/node/pull/43202)
|
|
122
|
+
* \[[`5e65c1f3da`](https://github.com/nodejs/node/commit/5e65c1f3da)] - **src**: convey potential exceptions during StreamPipe construction (Darshan Sen) [#43240](https://github.com/nodejs/node/pull/43240)
|
|
123
|
+
* \[[`b200a5ff67`](https://github.com/nodejs/node/commit/b200a5ff67)] - **stream**: use `kEmptyObject` (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159)
|
|
124
|
+
* \[[`1cc1a57cdb`](https://github.com/nodejs/node/commit/1cc1a57cdb)] - **test**: remove unused argument in test-util-inspect.js (Colin Ihrig) [#43395](https://github.com/nodejs/node/pull/43395)
|
|
125
|
+
* \[[`42c2115a82`](https://github.com/nodejs/node/commit/42c2115a82)] - **test**: mark test\_buffer/test\_finalizer flaky (Michael Dawson) [#43414](https://github.com/nodejs/node/pull/43414)
|
|
126
|
+
* \[[`71802c32d0`](https://github.com/nodejs/node/commit/71802c32d0)] - **test**: fix address in use error (Caleb Everett) [#43199](https://github.com/nodejs/node/pull/43199)
|
|
127
|
+
* \[[`e1b8c85a7a`](https://github.com/nodejs/node/commit/e1b8c85a7a)] - **test**: add test for short-option followed by its value (Kohei Ueno) [#43358](https://github.com/nodejs/node/pull/43358)
|
|
128
|
+
* \[[`f8d26c6011`](https://github.com/nodejs/node/commit/f8d26c6011)] - **test**: fix `common.mustNotCall` error message (Antoine du Hamel) [#42917](https://github.com/nodejs/node/pull/42917)
|
|
129
|
+
* \[[`18fffe6108`](https://github.com/nodejs/node/commit/18fffe6108)] - **test**: convert then to async/await (Meek Simbule) [#43292](https://github.com/nodejs/node/pull/43292)
|
|
130
|
+
* \[[`acd96d80eb`](https://github.com/nodejs/node/commit/acd96d80eb)] - **test**: add `BigInt`s to `common.getArrayBufferViews()` (LiviaMedeiros) [#43235](https://github.com/nodejs/node/pull/43235)
|
|
131
|
+
* \[[`e576a7fa50`](https://github.com/nodejs/node/commit/e576a7fa50)] - **test\_runner**: use `kEmptyObject` (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159)
|
|
132
|
+
* \[[`fecad7a3a5`](https://github.com/nodejs/node/commit/fecad7a3a5)] - **timers**: use `kEmptyObject` (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159)
|
|
133
|
+
* \[[`e31baca76a`](https://github.com/nodejs/node/commit/e31baca76a)] - **tls**: use `kEmptyObject` (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159)
|
|
134
|
+
* \[[`7f8f61a749`](https://github.com/nodejs/node/commit/7f8f61a749)] - **tls**: fix performance regression in `convertALPNProtocols()` (LiviaMedeiros) [#43250](https://github.com/nodejs/node/pull/43250)
|
|
135
|
+
* \[[`ac9599a718`](https://github.com/nodejs/node/commit/ac9599a718)] - **tools**: report unsafe string and regex primordials as lint errors (Antoine du Hamel) [#43393](https://github.com/nodejs/node/pull/43393)
|
|
136
|
+
* \[[`b69d874592`](https://github.com/nodejs/node/commit/b69d874592)] - **tools**: fix `create-or-update-pull-request-action` hash on GHA (Antoine du Hamel) [#43378](https://github.com/nodejs/node/pull/43378)
|
|
137
|
+
* \[[`cf8a115983`](https://github.com/nodejs/node/commit/cf8a115983)] - **tools**: add `avoid-prototype-pollution` lint rule (Antoine du Hamel) [#43308](https://github.com/nodejs/node/pull/43308)
|
|
138
|
+
* \[[`8c0fe1e184`](https://github.com/nodejs/node/commit/8c0fe1e184)] - **tools**: fix find-inactive actions (LiviaMedeiros) [#43377](https://github.com/nodejs/node/pull/43377)
|
|
139
|
+
* \[[`7f45d69f83`](https://github.com/nodejs/node/commit/7f45d69f83)] - **tools**: update lint-md-dependencies to rollup\@2.75.5 (Node.js GitHub Bot) [#43313](https://github.com/nodejs/node/pull/43313)
|
|
140
|
+
* \[[`d5d0f01c5a`](https://github.com/nodejs/node/commit/d5d0f01c5a)] - **tools**: update eslint to 8.17.0 (Node.js GitHub Bot) [#43314](https://github.com/nodejs/node/pull/43314)
|
|
141
|
+
* \[[`f598fe1585`](https://github.com/nodejs/node/commit/f598fe1585)] - **tools**: use hashes instead of tags for external actions (#43284) (Antoine du Hamel) [#43284](https://github.com/nodejs/node/pull/43284)
|
|
142
|
+
* \[[`10f79947d9`](https://github.com/nodejs/node/commit/10f79947d9)] - **tools**: update `codecov/codecov-action` version (Antoine du Hamel) [#43297](https://github.com/nodejs/node/pull/43297)
|
|
143
|
+
* \[[`f93848fa50`](https://github.com/nodejs/node/commit/f93848fa50)] - **tools**: update lint-md-dependencies to rollup\@2.75.3 (Node.js GitHub Bot) [#43261](https://github.com/nodejs/node/pull/43261)
|
|
144
|
+
* \[[`b3d7dc1de8`](https://github.com/nodejs/node/commit/b3d7dc1de8)] - **tools**: update clang-format 1.7.0 to 1.8.0 (Darshan Sen) [#43241](https://github.com/nodejs/node/pull/43241)
|
|
145
|
+
* \[[`812140c65a`](https://github.com/nodejs/node/commit/812140c65a)] - **tools,doc**: add guards against prototype pollution when creating proxies (Antoine du Hamel) [#43391](https://github.com/nodejs/node/pull/43391)
|
|
146
|
+
* \[[`56b8cc5cef`](https://github.com/nodejs/node/commit/56b8cc5cef)] - **util**: freeze `kEnumerableProperty` (LiviaMedeiros) [#43390](https://github.com/nodejs/node/pull/43390)
|
|
147
|
+
* \[[`b187d55b6d`](https://github.com/nodejs/node/commit/b187d55b6d)] - **util**: add `kEmptyObject` to internal/util (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159)
|
|
148
|
+
* \[[`024b396275`](https://github.com/nodejs/node/commit/024b396275)] - **vm**: use `kEmptyObject` (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159)
|
|
149
|
+
* \[[`7fc432fa35`](https://github.com/nodejs/node/commit/7fc432fa35)] - **wasi**: use `kEmptyObject` (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159)
|
|
150
|
+
* \[[`44b65d0ca7`](https://github.com/nodejs/node/commit/44b65d0ca7)] - **worker**: use `kEmptyObject` (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159)
|
|
151
|
+
|
|
152
|
+
<a id="18.3.0"></a>
|
|
153
|
+
|
|
154
|
+
## 2022-06-01, Version 18.3.0 (Current), @bengl
|
|
155
|
+
|
|
156
|
+
### Notable Changes
|
|
157
|
+
|
|
158
|
+
* \[[`dc3b91f351`](https://github.com/nodejs/node/commit/dc3b91f351)] - **deps**: update undici to 5.4.0 (Node.js GitHub Bot) [#43262](https://github.com/nodejs/node/pull/43262)
|
|
159
|
+
* \[[`d6cf409d78`](https://github.com/nodejs/node/commit/d6cf409d78)] - **(SEMVER-MINOR)** **util**: add parseArgs module (Benjamin Coe) [#42675](https://github.com/nodejs/node/pull/42675)
|
|
160
|
+
* \[[`9539cfa358`](https://github.com/nodejs/node/commit/9539cfa358)] - **(SEMVER-MINOR)** **http**: add uniqueHeaders option to request and createServer (Paolo Insogna) [#41397](https://github.com/nodejs/node/pull/41397)
|
|
161
|
+
* \[[`41fdc2617d`](https://github.com/nodejs/node/commit/41fdc2617d)] - **deps**: upgrade npm to 8.11.0 (npm team) [#43210](https://github.com/nodejs/node/pull/43210)
|
|
162
|
+
* \[[`0000654e47`](https://github.com/nodejs/node/commit/0000654e47)] - **deps**: patch V8 to 10.2.154.4 (Michaël Zasso) [#43067](https://github.com/nodejs/node/pull/43067)
|
|
163
|
+
* \[[`b3c8e609fd`](https://github.com/nodejs/node/commit/b3c8e609fd)] - **(SEMVER-MINOR)** **deps**: update V8 to 10.2.154.2 (Michaël Zasso) [#42740](https://github.com/nodejs/node/pull/42740)
|
|
164
|
+
* \[[`3e89b7336d`](https://github.com/nodejs/node/commit/3e89b7336d)] - **(SEMVER-MINOR)** **fs**: make params in writing methods optional (LiviaMedeiros) [#42601](https://github.com/nodejs/node/pull/42601)
|
|
165
|
+
* \[[`9539cfa358`](https://github.com/nodejs/node/commit/9539cfa358)] - **(SEMVER-MINOR)** **http**: add uniqueHeaders option to request and createServer (Paolo Insogna) [#41397](https://github.com/nodejs/node/pull/41397)
|
|
166
|
+
* \[[`8f5b4570e5`](https://github.com/nodejs/node/commit/8f5b4570e5)] - **(SEMVER-MINOR)** **net**: add ability to reset a tcp socket (pupilTong) [#43112](https://github.com/nodejs/node/pull/43112)
|
|
167
|
+
* \[[`5eff7b4a6a`](https://github.com/nodejs/node/commit/5eff7b4a6a)] - **(SEMVER-MINOR)** _**Revert**_ "**build**: make x86 Windows support temporarily experimental" (Michaël Zasso) [#42740](https://github.com/nodejs/node/pull/42740)
|
|
168
|
+
* This means 32-bit Windows binaries are back with this release.
|
|
169
|
+
|
|
170
|
+
### Commits
|
|
171
|
+
|
|
172
|
+
* \[[`aefc9dda9a`](https://github.com/nodejs/node/commit/aefc9dda9a)] - **benchmark**: add node-error benchmark (RafaelGSS) [#43077](https://github.com/nodejs/node/pull/43077)
|
|
173
|
+
* \[[`85d81a764f`](https://github.com/nodejs/node/commit/85d81a764f)] - **bootstrap**: include code cache in the embedded snapshot (Joyee Cheung) [#43023](https://github.com/nodejs/node/pull/43023)
|
|
174
|
+
* \[[`5eff7b4a6a`](https://github.com/nodejs/node/commit/5eff7b4a6a)] - **(SEMVER-MINOR)** _**Revert**_ "**build**: make x86 Windows support temporarily experimental" (Michaël Zasso) [#42740](https://github.com/nodejs/node/pull/42740)
|
|
175
|
+
* \[[`d6634707c5`](https://github.com/nodejs/node/commit/d6634707c5)] - **(SEMVER-MINOR)** **build**: run V8 tests with detected Python version (Richard Lau) [#42740](https://github.com/nodejs/node/pull/42740)
|
|
176
|
+
* \[[`b8b5e6df67`](https://github.com/nodejs/node/commit/b8b5e6df67)] - **(SEMVER-MINOR)** **build**: reset embedder string to "-node.0" (Michaël Zasso) [#42740](https://github.com/nodejs/node/pull/42740)
|
|
177
|
+
* \[[`285ef30877`](https://github.com/nodejs/node/commit/285ef30877)] - **console**: fix console.dir crash on a revoked proxy (Daeyeon Jeong) [#43100](https://github.com/nodejs/node/pull/43100)
|
|
178
|
+
* \[[`920d8c5300`](https://github.com/nodejs/node/commit/920d8c5300)] - **crypto**: align webcrypto RSA key import/export with other implementations (Filip Skokan) [#42816](https://github.com/nodejs/node/pull/42816)
|
|
179
|
+
* \[[`c76caadf2e`](https://github.com/nodejs/node/commit/c76caadf2e)] - **debugger**: throw a more useful error when the frame is missing (Kohei Ueno) [#42776](https://github.com/nodejs/node/pull/42776)
|
|
180
|
+
* \[[`dc3b91f351`](https://github.com/nodejs/node/commit/dc3b91f351)] - **deps**: update undici to 5.4.0 (Node.js GitHub Bot) [#43262](https://github.com/nodejs/node/pull/43262)
|
|
181
|
+
* \[[`35250bf2f6`](https://github.com/nodejs/node/commit/35250bf2f6)] - **deps**: regenerate OpenSSL archs files (Daniel Bevenius) [#42973](https://github.com/nodejs/node/pull/42973)
|
|
182
|
+
* \[[`ecacc3a727`](https://github.com/nodejs/node/commit/ecacc3a727)] - **deps**: exclude linker scripts for windows builds (Daniel Bevenius) [#42973](https://github.com/nodejs/node/pull/42973)
|
|
183
|
+
* \[[`41fdc2617d`](https://github.com/nodejs/node/commit/41fdc2617d)] - **deps**: upgrade npm to 8.11.0 (npm team) [#43210](https://github.com/nodejs/node/pull/43210)
|
|
184
|
+
* \[[`87b248e27e`](https://github.com/nodejs/node/commit/87b248e27e)] - **deps**: update undici to 5.3.0 (Node.js GitHub Bot) [#43197](https://github.com/nodejs/node/pull/43197)
|
|
185
|
+
* \[[`d42de132a7`](https://github.com/nodejs/node/commit/d42de132a7)] - **deps**: upgrade npm to 8.10.0 (npm team) [#43061](https://github.com/nodejs/node/pull/43061)
|
|
186
|
+
* \[[`0000654e47`](https://github.com/nodejs/node/commit/0000654e47)] - **deps**: patch V8 to 10.2.154.4 (Michaël Zasso) [#43067](https://github.com/nodejs/node/pull/43067)
|
|
187
|
+
* \[[`742ffefb44`](https://github.com/nodejs/node/commit/742ffefb44)] - **(SEMVER-MINOR)** **deps**: make V8 10.2 ABI-compatible with 10.1 (Michaël Zasso) [#42740](https://github.com/nodejs/node/pull/42740)
|
|
188
|
+
* \[[`c626a533c7`](https://github.com/nodejs/node/commit/c626a533c7)] - **deps**: make V8 compilable with older glibc (Michaël Zasso) [#42657](https://github.com/nodejs/node/pull/42657)
|
|
189
|
+
* \[[`76546b12a2`](https://github.com/nodejs/node/commit/76546b12a2)] - **deps**: V8: fix v8-cppgc.h for MSVC (Jiawen Geng) [#42657](https://github.com/nodejs/node/pull/42657)
|
|
190
|
+
* \[[`45e1fd4473`](https://github.com/nodejs/node/commit/45e1fd4473)] - **deps**: silence V8's warning on CompileFunction (Michaël Zasso) [#40907](https://github.com/nodejs/node/pull/40907)
|
|
191
|
+
* \[[`2130891a9a`](https://github.com/nodejs/node/commit/2130891a9a)] - **(SEMVER-MINOR)** **deps**: disable trap handler for Windows cross-compiler (Michaël Zasso) [#40488](https://github.com/nodejs/node/pull/40488)
|
|
192
|
+
* \[[`e678b6c63d`](https://github.com/nodejs/node/commit/e678b6c63d)] - **deps**: fix V8 build issue with inline methods (Jiawen Geng) [#38807](https://github.com/nodejs/node/pull/38807)
|
|
193
|
+
* \[[`f83323f304`](https://github.com/nodejs/node/commit/f83323f304)] - **deps**: V8: forward declaration of `Rtl*FunctionTable` (Refael Ackermann) [#32116](https://github.com/nodejs/node/pull/32116)
|
|
194
|
+
* \[[`4be7584ca6`](https://github.com/nodejs/node/commit/4be7584ca6)] - **deps**: V8: un-cherry-pick bd019bd (Refael Ackermann) [#32116](https://github.com/nodejs/node/pull/32116)
|
|
195
|
+
* \[[`b3c8e609fd`](https://github.com/nodejs/node/commit/b3c8e609fd)] - **(SEMVER-MINOR)** **deps**: update V8 to 10.2.154.2 (Michaël Zasso) [#42740](https://github.com/nodejs/node/pull/42740)
|
|
196
|
+
* \[[`0afdc3e9a8`](https://github.com/nodejs/node/commit/0afdc3e9a8)] - **doc**: use serial comma in errors docs (Tobias Nießen) [#43242](https://github.com/nodejs/node/pull/43242)
|
|
197
|
+
* \[[`00989338b3`](https://github.com/nodejs/node/commit/00989338b3)] - **doc**: add note regarding `%Array.prototype.concat%` in `primordials.md` (Antoine du Hamel) [#43166](https://github.com/nodejs/node/pull/43166)
|
|
198
|
+
* \[[`badf72dd0a`](https://github.com/nodejs/node/commit/badf72dd0a)] - **doc**: use serial comma in worker\_threads docs (Tobias Nießen) [#43220](https://github.com/nodejs/node/pull/43220)
|
|
199
|
+
* \[[`776e746f0a`](https://github.com/nodejs/node/commit/776e746f0a)] - **doc**: fix napi version for node\_api\_symbol\_for (Danielle Adams) [#42878](https://github.com/nodejs/node/pull/42878)
|
|
200
|
+
* \[[`76b46801f8`](https://github.com/nodejs/node/commit/76b46801f8)] - **doc**: document `signal` option for `EventTarget#addEventListener` (Antoine du Hamel) [#43170](https://github.com/nodejs/node/pull/43170)
|
|
201
|
+
* \[[`3082c75efd`](https://github.com/nodejs/node/commit/3082c75efd)] - **doc**: make minor adjustments (LiviaMedeiros) [#43175](https://github.com/nodejs/node/pull/43175)
|
|
202
|
+
* \[[`598c1f102e`](https://github.com/nodejs/node/commit/598c1f102e)] - **doc**: use serial comma in dgram docs (Tobias Nießen) [#43191](https://github.com/nodejs/node/pull/43191)
|
|
203
|
+
* \[[`b772c13a62`](https://github.com/nodejs/node/commit/b772c13a62)] - **doc**: use serial comma in process docs (Tobias Nießen) [#43179](https://github.com/nodejs/node/pull/43179)
|
|
204
|
+
* \[[`f90a3d7a54`](https://github.com/nodejs/node/commit/f90a3d7a54)] - **doc**: improved parallel specification (mawaregetsuka) [#42679](https://github.com/nodejs/node/pull/42679)
|
|
205
|
+
* \[[`71074eedef`](https://github.com/nodejs/node/commit/71074eedef)] - **doc**: improve callback params for `fs.mkdir` (Daeyeon Jeong) [#43016](https://github.com/nodejs/node/pull/43016)
|
|
206
|
+
* \[[`2b8b224077`](https://github.com/nodejs/node/commit/2b8b224077)] - **doc**: remove outdated footnote (Python 2 --> 3 for V8 tests) (DeeDeeG) [#43105](https://github.com/nodejs/node/pull/43105)
|
|
207
|
+
* \[[`945f228cf1`](https://github.com/nodejs/node/commit/945f228cf1)] - **doc**: add release key for RafaelGSS (Rafael Gonzaga) [#43131](https://github.com/nodejs/node/pull/43131)
|
|
208
|
+
* \[[`56fc712f93`](https://github.com/nodejs/node/commit/56fc712f93)] - **doc**: use serial comma in assert docs (Tobias Nießen) [#43154](https://github.com/nodejs/node/pull/43154)
|
|
209
|
+
* \[[`093a3cf2f1`](https://github.com/nodejs/node/commit/093a3cf2f1)] - **doc**: fix errors in Performance hooks doc (OneNail) [#43152](https://github.com/nodejs/node/pull/43152)
|
|
210
|
+
* \[[`4d9f43a8a7`](https://github.com/nodejs/node/commit/4d9f43a8a7)] - **doc**: use serial comma in dns docs (Tobias Nießen) [#43145](https://github.com/nodejs/node/pull/43145)
|
|
211
|
+
* \[[`4e9393e32f`](https://github.com/nodejs/node/commit/4e9393e32f)] - **doc**: use ASCII apostrophes consistently (Tobias Nießen) [#43114](https://github.com/nodejs/node/pull/43114)
|
|
212
|
+
* \[[`b3181851d7`](https://github.com/nodejs/node/commit/b3181851d7)] - **doc**: add strategic initiative for shadow realm (Chengzhong Wu) [#43037](https://github.com/nodejs/node/pull/43037)
|
|
213
|
+
* \[[`6f48dfb499`](https://github.com/nodejs/node/commit/6f48dfb499)] - **fs**: add trailing commas (LiviaMedeiros) [#43127](https://github.com/nodejs/node/pull/43127)
|
|
214
|
+
* \[[`3e89b7336d`](https://github.com/nodejs/node/commit/3e89b7336d)] - **(SEMVER-MINOR)** **fs**: make params in writing methods optional (LiviaMedeiros) [#42601](https://github.com/nodejs/node/pull/42601)
|
|
215
|
+
* \[[`9539cfa358`](https://github.com/nodejs/node/commit/9539cfa358)] - **(SEMVER-MINOR)** **http**: add uniqueHeaders option to request and createServer (Paolo Insogna) [#41397](https://github.com/nodejs/node/pull/41397)
|
|
216
|
+
* \[[`b187060f76`](https://github.com/nodejs/node/commit/b187060f76)] - **http2**: set origin name correctly when servername is empty (ofirbarak) [#42838](https://github.com/nodejs/node/pull/42838)
|
|
217
|
+
* \[[`a07f5f28f3`](https://github.com/nodejs/node/commit/a07f5f28f3)] - **http2**: improve tests and docs (Daeyeon Jeong) [#42858](https://github.com/nodejs/node/pull/42858)
|
|
218
|
+
* \[[`701d40496d`](https://github.com/nodejs/node/commit/701d40496d)] - **lib**: refactor `validateInt32` and `validateUint32` (mawaregetsuka) [#43071](https://github.com/nodejs/node/pull/43071)
|
|
219
|
+
* \[[`09da76493a`](https://github.com/nodejs/node/commit/09da76493a)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#43231](https://github.com/nodejs/node/pull/43231)
|
|
220
|
+
* \[[`1da6b7c32b`](https://github.com/nodejs/node/commit/1da6b7c32b)] - **meta**: add mailmap entry for legendecas (Chengzhong Wu) [#43156](https://github.com/nodejs/node/pull/43156)
|
|
221
|
+
* \[[`1be254b24e`](https://github.com/nodejs/node/commit/1be254b24e)] - **meta**: add mailmap entry for npm team (Luigi Pinca) [#43143](https://github.com/nodejs/node/pull/43143)
|
|
222
|
+
* \[[`7d8d9d625a`](https://github.com/nodejs/node/commit/7d8d9d625a)] - **meta**: add mailmap entry for Morgan Roderick (Luigi Pinca) [#43144](https://github.com/nodejs/node/pull/43144)
|
|
223
|
+
* \[[`8f5b4570e5`](https://github.com/nodejs/node/commit/8f5b4570e5)] - **(SEMVER-MINOR)** **net**: add ability to reset a tcp socket (pupilTong) [#43112](https://github.com/nodejs/node/pull/43112)
|
|
224
|
+
* \[[`11c783fa63`](https://github.com/nodejs/node/commit/11c783fa63)] - **net**: remoteAddress always undefined called before connected (OneNail) [#43011](https://github.com/nodejs/node/pull/43011)
|
|
225
|
+
* \[[`9c4e070567`](https://github.com/nodejs/node/commit/9c4e070567)] - **(SEMVER-MINOR)** **node-api**: emit uncaught-exception on unhandled tsfn callbacks (Chengzhong Wu) [#36510](https://github.com/nodejs/node/pull/36510)
|
|
226
|
+
* \[[`54d68b1afd`](https://github.com/nodejs/node/commit/54d68b1afd)] - **perf\_hooks**: fix start\_time of perf\_hooks (theanarkh) [#43069](https://github.com/nodejs/node/pull/43069)
|
|
227
|
+
* \[[`baa5d0005a`](https://github.com/nodejs/node/commit/baa5d0005a)] - **src**: refactor GetCipherValue and related functions (Tobias Nießen) [#43171](https://github.com/nodejs/node/pull/43171)
|
|
228
|
+
* \[[`6ee9fb14e4`](https://github.com/nodejs/node/commit/6ee9fb14e4)] - **src**: make SecureContext fields private (Tobias Nießen) [#43173](https://github.com/nodejs/node/pull/43173)
|
|
229
|
+
* \[[`1e2552ba6c`](https://github.com/nodejs/node/commit/1e2552ba6c)] - **src**: reuse GetServerName (Tobias Nießen) [#43168](https://github.com/nodejs/node/pull/43168)
|
|
230
|
+
* \[[`d8a14a2486`](https://github.com/nodejs/node/commit/d8a14a2486)] - **src**: fix static analysis warning and use smart ptr (Tobias Nießen) [#43117](https://github.com/nodejs/node/pull/43117)
|
|
231
|
+
* \[[`72a767b7ca`](https://github.com/nodejs/node/commit/72a767b7ca)] - **src**: remove SecureContext::operator\* (Tobias Nießen) [#43121](https://github.com/nodejs/node/pull/43121)
|
|
232
|
+
* \[[`82fb037388`](https://github.com/nodejs/node/commit/82fb037388)] - **src**: move context snapshot index to SnapshotData (Joyee Cheung) [#43023](https://github.com/nodejs/node/pull/43023)
|
|
233
|
+
* \[[`9577878258`](https://github.com/nodejs/node/commit/9577878258)] - **src**: replace TraceEventScope with sync events (Chengzhong Wu) [#42977](https://github.com/nodejs/node/pull/42977)
|
|
234
|
+
* \[[`41b69e3cf4`](https://github.com/nodejs/node/commit/41b69e3cf4)] - **src,lib**: migrate to console on context's extra binding (Chengzhong Wu) [#43142](https://github.com/nodejs/node/pull/43142)
|
|
235
|
+
* \[[`3e1ed1ee0c`](https://github.com/nodejs/node/commit/3e1ed1ee0c)] - **test**: improve code coverage for inspector connection errors (Kohei Ueno) [#42310](https://github.com/nodejs/node/pull/42310)
|
|
236
|
+
* \[[`d7ca2234dc`](https://github.com/nodejs/node/commit/d7ca2234dc)] - **test**: use mustSucceed instead of mustCall with assert.ifError (MURAKAMI Masahiko) [#43188](https://github.com/nodejs/node/pull/43188)
|
|
237
|
+
* \[[`9cc5ce6a24`](https://github.com/nodejs/node/commit/9cc5ce6a24)] - **test**: improve readline/emitKeypressEvents.js coverage (OneNail) [#42908](https://github.com/nodejs/node/pull/42908)
|
|
238
|
+
* \[[`447bbd0d66`](https://github.com/nodejs/node/commit/447bbd0d66)] - **tls**: fix convertALPNProtocols accepting ArrayBufferViews (LiviaMedeiros) [#43211](https://github.com/nodejs/node/pull/43211)
|
|
239
|
+
* \[[`df691464aa`](https://github.com/nodejs/node/commit/df691464aa)] - **tools**: update lint-md-dependencies to rollup\@2.75.1 (Node.js GitHub Bot) [#43230](https://github.com/nodejs/node/pull/43230)
|
|
240
|
+
* \[[`d9fb25c936`](https://github.com/nodejs/node/commit/d9fb25c936)] - **tools**: refactor build-addons.js to ESM (Feng Yu) [#43099](https://github.com/nodejs/node/pull/43099)
|
|
241
|
+
* \[[`0efeceb4a6`](https://github.com/nodejs/node/commit/0efeceb4a6)] - **tools**: update lint-md-dependencies to rollup\@2.74.1 (Node.js GitHub Bot) [#43172](https://github.com/nodejs/node/pull/43172)
|
|
242
|
+
* \[[`ed352a945c`](https://github.com/nodejs/node/commit/ed352a945c)] - **tools**: update eslint to 8.16.0 (Node.js GitHub Bot) [#43174](https://github.com/nodejs/node/pull/43174)
|
|
243
|
+
* \[[`1183058908`](https://github.com/nodejs/node/commit/1183058908)] - **tools**: refactor update-authors.js to ESM (Feng Yu) [#43098](https://github.com/nodejs/node/pull/43098)
|
|
244
|
+
* \[[`5228028962`](https://github.com/nodejs/node/commit/5228028962)] - **(SEMVER-MINOR)** **tools**: update V8 gypfiles for 10.2 (Michaël Zasso) [#42740](https://github.com/nodejs/node/pull/42740)
|
|
245
|
+
* \[[`d6cf409d78`](https://github.com/nodejs/node/commit/d6cf409d78)] - **(SEMVER-MINOR)** **util**: add parseArgs module (Benjamin Coe) [#42675](https://github.com/nodejs/node/pull/42675)
|
|
246
|
+
* \[[`d91b489784`](https://github.com/nodejs/node/commit/d91b489784)] - **worker**: fix heap snapshot crash on exit (Chengzhong Wu) [#43123](https://github.com/nodejs/node/pull/43123)
|
|
247
|
+
|
|
248
|
+
<a id="18.2.0"></a>
|
|
249
|
+
|
|
250
|
+
## 2022-05-17, Version 18.2.0 (Current), @BethGriggs prepared by @RafaelGSS
|
|
251
|
+
|
|
252
|
+
### Notable Changes
|
|
253
|
+
|
|
254
|
+
#### OpenSSL 3.0.3
|
|
255
|
+
|
|
256
|
+
This update can be treated as a security release as the issues addressed in OpenSSL 3.0.3 slightly affect Node.js 18.
|
|
257
|
+
See <https://nodejs.org/en/blog/vulnerability/openssl-fixes-in-regular-releases-may2022/> for more information on how the May 2022 OpenSSL releases affect other Node.js release lines.
|
|
258
|
+
|
|
259
|
+
* \[[`8e54c19a6e`](https://github.com/nodejs/node/commit/8e54c19a6e)] - **deps**: update archs files for quictls/openssl-3.0.3+quic (RafaelGSS) [#43022](https://github.com/nodejs/node/pull/43022)
|
|
260
|
+
* \[[`6365bf808e`](https://github.com/nodejs/node/commit/6365bf808e)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.3 (RafaelGSS) [#43022](https://github.com/nodejs/node/pull/43022)
|
|
261
|
+
|
|
262
|
+
#### Other Notable Changes
|
|
263
|
+
|
|
264
|
+
* \[[`13c333e533`](https://github.com/nodejs/node/commit/13c333e533)] - _**Revert**_ "**deps**: add template for generated headers" (Daniel Bevenius) [#42978](https://github.com/nodejs/node/pull/42978)
|
|
265
|
+
* \[[`d128356a7f`](https://github.com/nodejs/node/commit/d128356a7f)] - **deps**: update undici to 5.2.0 (Node.js GitHub Bot) [#43059](https://github.com/nodejs/node/pull/43059)
|
|
266
|
+
* \[[`2df1624f80`](https://github.com/nodejs/node/commit/2df1624f80)] - **deps**: upgrade npm to 8.9.0 (npm team) [#42968](https://github.com/nodejs/node/pull/42968)
|
|
267
|
+
* \[[`6365bf808e`](https://github.com/nodejs/node/commit/6365bf808e)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.3 (RafaelGSS) [#43022](https://github.com/nodejs/node/pull/43022)
|
|
268
|
+
* \[[`4a3f678e70`](https://github.com/nodejs/node/commit/4a3f678e70)] - **doc**: add LiviaMedeiros to collaborators (LiviaMedeiros) [#43039](https://github.com/nodejs/node/pull/43039)
|
|
269
|
+
* \[[`686c4c1f6f`](https://github.com/nodejs/node/commit/686c4c1f6f)] - **doc**: add release key for Juan Arboleda (Juan José) [#42961](https://github.com/nodejs/node/pull/42961)
|
|
270
|
+
* \[[`784d84cf34`](https://github.com/nodejs/node/commit/784d84cf34)] - **(SEMVER-MINOR)** **fs**: add `read(buffer[, options])` versions (LiviaMedeiros) [#42768](https://github.com/nodejs/node/pull/42768)
|
|
271
|
+
* \[[`2f192c4be0`](https://github.com/nodejs/node/commit/2f192c4be0)] - **(SEMVER-MINOR)** **http**: added connection closing methods (Paolo Insogna) [#42812](https://github.com/nodejs/node/pull/42812)
|
|
272
|
+
* \[[`c92e291beb`](https://github.com/nodejs/node/commit/c92e291beb)] - **(SEMVER-MINOR)** **perf\_hooks**: add PerformanceResourceTiming (RafaelGSS) [#42725](https://github.com/nodejs/node/pull/42725)
|
|
273
|
+
|
|
274
|
+
### Commits
|
|
275
|
+
|
|
276
|
+
* \[[`7cac7bb806`](https://github.com/nodejs/node/commit/7cac7bb806)] - **assert**: fix CallTracker wraps the function causes the length to be lost (OneNail) [#42909](https://github.com/nodejs/node/pull/42909)
|
|
277
|
+
* \[[`e74a8da287`](https://github.com/nodejs/node/commit/e74a8da287)] - **assert**: make `assert.fail` less affected by prototype tampering (Antoine du Hamel) [#42918](https://github.com/nodejs/node/pull/42918)
|
|
278
|
+
* \[[`1146806673`](https://github.com/nodejs/node/commit/1146806673)] - **bootstrap**: stop delaying instantiation of maps in per-context scripts (Darshan Sen) [#42934](https://github.com/nodejs/node/pull/42934)
|
|
279
|
+
* \[[`a20310d171`](https://github.com/nodejs/node/commit/a20310d171)] - **bootstrap**: use a context snapshotted with primordials in workers (Joyee Cheung) [#42867](https://github.com/nodejs/node/pull/42867)
|
|
280
|
+
* \[[`9ee7d9eb15`](https://github.com/nodejs/node/commit/9ee7d9eb15)] - **bootstrap**: fix wasm\_web\_api external reference registration (Joyee Cheung) [#42903](https://github.com/nodejs/node/pull/42903)
|
|
281
|
+
* \[[`cec678a00e`](https://github.com/nodejs/node/commit/cec678a00e)] - **build**: set ASAN workaround (Richard Lau) [#43085](https://github.com/nodejs/node/pull/43085)
|
|
282
|
+
* \[[`7c4df42caa`](https://github.com/nodejs/node/commit/7c4df42caa)] - **build**: disable windows-2022 temporarily (Jiawen Geng) [#43093](https://github.com/nodejs/node/pull/43093)
|
|
283
|
+
* \[[`0eb32ed976`](https://github.com/nodejs/node/commit/0eb32ed976)] - **build**: fix various shared library build issues (William Marlow) [#41850](https://github.com/nodejs/node/pull/41850)
|
|
284
|
+
* \[[`48f4a714b2`](https://github.com/nodejs/node/commit/48f4a714b2)] - **build**: fix indeterminacy of icu\_locales value (Sergey Nazaryev) [#42865](https://github.com/nodejs/node/pull/42865)
|
|
285
|
+
* \[[`19c060fd84`](https://github.com/nodejs/node/commit/19c060fd84)] - **crypto**: adjust minimum length in generateKey('hmac', ...) (LiviaMedeiros) [#42944](https://github.com/nodejs/node/pull/42944)
|
|
286
|
+
* \[[`183bcc0699`](https://github.com/nodejs/node/commit/183bcc0699)] - **crypto**: clean up parameter validation in HKDF (Tobias Nießen) [#42924](https://github.com/nodejs/node/pull/42924)
|
|
287
|
+
* \[[`946f57c7bc`](https://github.com/nodejs/node/commit/946f57c7bc)] - **debugger**: fix inconsistent inspector output of exec new Map() (Kohei Ueno) [#42423](https://github.com/nodejs/node/pull/42423)
|
|
288
|
+
* \[[`d128356a7f`](https://github.com/nodejs/node/commit/d128356a7f)] - **deps**: update undici to 5.2.0 (Node.js GitHub Bot) [#43059](https://github.com/nodejs/node/pull/43059)
|
|
289
|
+
* \[[`a9703a55ef`](https://github.com/nodejs/node/commit/a9703a55ef)] - **deps**: remove opensslconf template headers (Daniel Bevenius) [#43035](https://github.com/nodejs/node/pull/43035)
|
|
290
|
+
* \[[`a4a4f7134b`](https://github.com/nodejs/node/commit/a4a4f7134b)] - **deps**: fix llhttp version number (Michael Dawson) [#43029](https://github.com/nodejs/node/pull/43029)
|
|
291
|
+
* \[[`8e54c19a6e`](https://github.com/nodejs/node/commit/8e54c19a6e)] - **deps**: update archs files for quictls/openssl-3.0.3+quic (RafaelGSS) [#43022](https://github.com/nodejs/node/pull/43022)
|
|
292
|
+
* \[[`6365bf808e`](https://github.com/nodejs/node/commit/6365bf808e)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.3 (RafaelGSS) [#43022](https://github.com/nodejs/node/pull/43022)
|
|
293
|
+
* \[[`e8121ae7fe`](https://github.com/nodejs/node/commit/e8121ae7fe)] - **deps**: regenerate OpenSSL archs files (Daniel Bevenius) [#42978](https://github.com/nodejs/node/pull/42978)
|
|
294
|
+
* \[[`13c333e533`](https://github.com/nodejs/node/commit/13c333e533)] - _**Revert**_ "**deps**: add template for generated headers" (Daniel Bevenius) [#42978](https://github.com/nodejs/node/pull/42978)
|
|
295
|
+
* \[[`2df1624f80`](https://github.com/nodejs/node/commit/2df1624f80)] - **deps**: upgrade npm to 8.9.0 (npm team) [#42968](https://github.com/nodejs/node/pull/42968)
|
|
296
|
+
* \[[`f53ed9d1bb`](https://github.com/nodejs/node/commit/f53ed9d1bb)] - **doc**: use serial comma in fs docs (Tobias Nießen) [#43104](https://github.com/nodejs/node/pull/43104)
|
|
297
|
+
* \[[`839824aca8`](https://github.com/nodejs/node/commit/839824aca8)] - **doc**: use serial comma in events docs (Tobias Nießen) [#43113](https://github.com/nodejs/node/pull/43113)
|
|
298
|
+
* \[[`9629c74080`](https://github.com/nodejs/node/commit/9629c74080)] - **doc**: use serial comma in modules docs (Tobias Nießen) [#43103](https://github.com/nodejs/node/pull/43103)
|
|
299
|
+
* \[[`76096c2d4a`](https://github.com/nodejs/node/commit/76096c2d4a)] - **doc**: use serial comma in util docs (Tobias Nießen) [#43063](https://github.com/nodejs/node/pull/43063)
|
|
300
|
+
* \[[`1e9de0dd5a`](https://github.com/nodejs/node/commit/1e9de0dd5a)] - **doc**: remove git:// protocol, adjust nits in onboarding.md (LiviaMedeiros) [#43045](https://github.com/nodejs/node/pull/43045)
|
|
301
|
+
* \[[`eb630d7ef9`](https://github.com/nodejs/node/commit/eb630d7ef9)] - **doc**: add maintaining info for shared libary option (Michael Dawson) [#42517](https://github.com/nodejs/node/pull/42517)
|
|
302
|
+
* \[[`3816a97bae`](https://github.com/nodejs/node/commit/3816a97bae)] - **doc**: add detail for how to update llhttp (Michael Dawson) [#43028](https://github.com/nodejs/node/pull/43028)
|
|
303
|
+
* \[[`330e267a57`](https://github.com/nodejs/node/commit/330e267a57)] - **doc**: use serial comma in buffer docs (Tobias Nießen) [#43048](https://github.com/nodejs/node/pull/43048)
|
|
304
|
+
* \[[`0957212390`](https://github.com/nodejs/node/commit/0957212390)] - **doc**: use consistent method symbol (Paolo Insogna) [#42974](https://github.com/nodejs/node/pull/42974)
|
|
305
|
+
* \[[`22cb7104cb`](https://github.com/nodejs/node/commit/22cb7104cb)] - **doc**: add Rafael to the security steward for NearForm (Matteo Collina) [#42966](https://github.com/nodejs/node/pull/42966)
|
|
306
|
+
* \[[`ef177da3f1`](https://github.com/nodejs/node/commit/ef177da3f1)] - **doc**: mark some node-api functions as experimental (NickNaso) [#42987](https://github.com/nodejs/node/pull/42987)
|
|
307
|
+
* \[[`4a3f678e70`](https://github.com/nodejs/node/commit/4a3f678e70)] - **doc**: add LiviaMedeiros to collaborators (LiviaMedeiros) [#43039](https://github.com/nodejs/node/pull/43039)
|
|
308
|
+
* \[[`c988a0ed26`](https://github.com/nodejs/node/commit/c988a0ed26)] - **doc**: use serial comma in http docs (Tobias Nießen) [#43026](https://github.com/nodejs/node/pull/43026)
|
|
309
|
+
* \[[`4de918b4c1`](https://github.com/nodejs/node/commit/4de918b4c1)] - **doc**: add the preferred name for @himself65 (Himself65) [#43024](https://github.com/nodejs/node/pull/43024)
|
|
310
|
+
* \[[`686c4c1f6f`](https://github.com/nodejs/node/commit/686c4c1f6f)] - **doc**: add release key for Juan Arboleda (Juan José) [#42961](https://github.com/nodejs/node/pull/42961)
|
|
311
|
+
* \[[`64e0aa116d`](https://github.com/nodejs/node/commit/64e0aa116d)] - **doc**: rename N-API to Node-API in test/README.md (Daeyeon Jeong) [#42946](https://github.com/nodejs/node/pull/42946)
|
|
312
|
+
* \[[`65d64553c0`](https://github.com/nodejs/node/commit/65d64553c0)] - **doc**: use serial comma in tls docs (Tobias Nießen) [#43001](https://github.com/nodejs/node/pull/43001)
|
|
313
|
+
* \[[`840e61e745`](https://github.com/nodejs/node/commit/840e61e745)] - **doc**: improve commit message example for releases (Juan José) [#42954](https://github.com/nodejs/node/pull/42954)
|
|
314
|
+
* \[[`ba3ad7c665`](https://github.com/nodejs/node/commit/ba3ad7c665)] - **doc**: use serial comma in cluster docs (Tobias Nießen) [#42989](https://github.com/nodejs/node/pull/42989)
|
|
315
|
+
* \[[`3ab3086008`](https://github.com/nodejs/node/commit/3ab3086008)] - **doc**: fix errors in Web Streams doc (OneNail) [#42862](https://github.com/nodejs/node/pull/42862)
|
|
316
|
+
* \[[`1fbfee2497`](https://github.com/nodejs/node/commit/1fbfee2497)] - **doc**: fix examples in cluster.md (OneNail) [#42889](https://github.com/nodejs/node/pull/42889)
|
|
317
|
+
* \[[`1237c742f4`](https://github.com/nodejs/node/commit/1237c742f4)] - **doc**: add additional step to security release process (Michael Dawson) [#42916](https://github.com/nodejs/node/pull/42916)
|
|
318
|
+
* \[[`88692d8fd6`](https://github.com/nodejs/node/commit/88692d8fd6)] - **doc**: add section regarding property definition in `primordials.md` (Antoine du Hamel) [#42921](https://github.com/nodejs/node/pull/42921)
|
|
319
|
+
* \[[`924670f3af`](https://github.com/nodejs/node/commit/924670f3af)] - **doc**: clarify some default values in `fs.md` (LiviaMedeiros) [#42892](https://github.com/nodejs/node/pull/42892)
|
|
320
|
+
* \[[`becca06f9b`](https://github.com/nodejs/node/commit/becca06f9b)] - **fs**: remove unnecessary ?? operator (Morgan Roderick) [#43073](https://github.com/nodejs/node/pull/43073)
|
|
321
|
+
* \[[`784d84cf34`](https://github.com/nodejs/node/commit/784d84cf34)] - **(SEMVER-MINOR)** **fs**: add `read(buffer[, options])` versions (LiviaMedeiros) [#42768](https://github.com/nodejs/node/pull/42768)
|
|
322
|
+
* \[[`2f192c4be0`](https://github.com/nodejs/node/commit/2f192c4be0)] - **(SEMVER-MINOR)** **http**: added connection closing methods (Paolo Insogna) [#42812](https://github.com/nodejs/node/pull/42812)
|
|
323
|
+
* \[[`bfbf965eb0`](https://github.com/nodejs/node/commit/bfbf965eb0)] - **http2**: compat support for array headers (OneNail) [#42901](https://github.com/nodejs/node/pull/42901)
|
|
324
|
+
* \[[`46a44b3011`](https://github.com/nodejs/node/commit/46a44b3011)] - **lib**: move WebAssembly Web API into separate file (Tobias Nießen) [#42993](https://github.com/nodejs/node/pull/42993)
|
|
325
|
+
* \[[`c64b8d3282`](https://github.com/nodejs/node/commit/c64b8d3282)] - **lib,test**: enable wasm/webapi/empty-body WPT (Tobias Nießen) [#42960](https://github.com/nodejs/node/pull/42960)
|
|
326
|
+
* \[[`ddd271ec2b`](https://github.com/nodejs/node/commit/ddd271ec2b)] - **meta**: add mailmap entry for ShogunPanda (Paolo Insogna) [#43094](https://github.com/nodejs/node/pull/43094)
|
|
327
|
+
* \[[`174ff972f0`](https://github.com/nodejs/node/commit/174ff972f0)] - **meta**: update .mailmap for recent README name change (Rich Trott) [#43027](https://github.com/nodejs/node/pull/43027)
|
|
328
|
+
* \[[`16df8ad7c3`](https://github.com/nodejs/node/commit/16df8ad7c3)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#43004](https://github.com/nodejs/node/pull/43004)
|
|
329
|
+
* \[[`0ec32d0715`](https://github.com/nodejs/node/commit/0ec32d0715)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#42937](https://github.com/nodejs/node/pull/42937)
|
|
330
|
+
* \[[`037ff3da6d`](https://github.com/nodejs/node/commit/037ff3da6d)] - **node-api**: explicitly set \_\_cdecl for API functions (Vladimir Morozov) [#42780](https://github.com/nodejs/node/pull/42780)
|
|
331
|
+
* \[[`e2462a2f98`](https://github.com/nodejs/node/commit/e2462a2f98)] - **node-api**: fix napi\_get\_all\_property\_names (Vladimir Morozov) [#42463](https://github.com/nodejs/node/pull/42463)
|
|
332
|
+
* \[[`c92e291beb`](https://github.com/nodejs/node/commit/c92e291beb)] - **(SEMVER-MINOR)** **perf\_hooks**: add PerformanceResourceTiming (RafaelGSS) [#42725](https://github.com/nodejs/node/pull/42725)
|
|
333
|
+
* \[[`c535db1195`](https://github.com/nodejs/node/commit/c535db1195)] - **src**: delete AllocatedBuffer (Darshan Sen) [#43008](https://github.com/nodejs/node/pull/43008)
|
|
334
|
+
* \[[`5dc79298e1`](https://github.com/nodejs/node/commit/5dc79298e1)] - **src**: remove unnecessary comment (Kohei Ueno) [#42952](https://github.com/nodejs/node/pull/42952)
|
|
335
|
+
* \[[`38e4c15534`](https://github.com/nodejs/node/commit/38e4c15534)] - **src**: always signal V8 for intercepted properties (Michaël Zasso) [#42963](https://github.com/nodejs/node/pull/42963)
|
|
336
|
+
* \[[`cacff07e75`](https://github.com/nodejs/node/commit/cacff07e75)] - **src**: fix memory leak for v8.serialize (liuxingbaoyu) [#42695](https://github.com/nodejs/node/pull/42695)
|
|
337
|
+
* \[[`8cfc18e4db`](https://github.com/nodejs/node/commit/8cfc18e4db)] - **src,crypto**: remove uses of AllocatedBuffer from crypto\_rsa.cc (Darshan Sen) [#42852](https://github.com/nodejs/node/pull/42852)
|
|
338
|
+
* \[[`0670843b24`](https://github.com/nodejs/node/commit/0670843b24)] - **test**: fix dangerous .map in `test/parallel/test-http-set-trailers.js` (LiviaMedeiros) [#43087](https://github.com/nodejs/node/pull/43087)
|
|
339
|
+
* \[[`9eb8bf1d26`](https://github.com/nodejs/node/commit/9eb8bf1d26)] - **test**: reduce flakiness of `test-fs-read-position-validation.mjs` (LiviaMedeiros) [#42999](https://github.com/nodejs/node/pull/42999)
|
|
340
|
+
* \[[`41d2f6e8c5`](https://github.com/nodejs/node/commit/41d2f6e8c5)] - **test**: rename handlewrap.hasref tests (Daeyeon Jeong) [#42754](https://github.com/nodejs/node/pull/42754)
|
|
341
|
+
* \[[`e058f47277`](https://github.com/nodejs/node/commit/e058f47277)] - **test**: improve observable ICU behaviour coverage (LiviaMedeiros) [#42683](https://github.com/nodejs/node/pull/42683)
|
|
342
|
+
* \[[`d23debb4cb`](https://github.com/nodejs/node/commit/d23debb4cb)] - **test**: validate webstream encoder/decoder inspector (Yoshiki Kurihara) [#42747](https://github.com/nodejs/node/pull/42747)
|
|
343
|
+
* \[[`b1c18edaa9`](https://github.com/nodejs/node/commit/b1c18edaa9)] - **test**: use`mustSucceed` instead of `mustCall` with `assert.ifError` (MURAKAMI Masahiko) [#42806](https://github.com/nodejs/node/pull/42806)
|
|
344
|
+
* \[[`2dc795687a`](https://github.com/nodejs/node/commit/2dc795687a)] - **test**: improve `lib/internal/webstreams/readablestream.js` coverage (MURAKAMI Masahiko) [#42823](https://github.com/nodejs/node/pull/42823)
|
|
345
|
+
* \[[`d746207dc2`](https://github.com/nodejs/node/commit/d746207dc2)] - **test**: fix test-crypto-fips.js under shared OpenSSL (Vita Batrla) [#42947](https://github.com/nodejs/node/pull/42947)
|
|
346
|
+
* \[[`56c47b5101`](https://github.com/nodejs/node/commit/56c47b5101)] - **test**: use consistent timeouts (Paolo Insogna) [#42893](https://github.com/nodejs/node/pull/42893)
|
|
347
|
+
* \[[`68ed3c88d9`](https://github.com/nodejs/node/commit/68ed3c88d9)] - **test**: add test for position validation in fs.read() and fs.readSync() (LiviaMedeiros) [#42837](https://github.com/nodejs/node/pull/42837)
|
|
348
|
+
* \[[`72b90fd5f5`](https://github.com/nodejs/node/commit/72b90fd5f5)] - **test**: reduce impact of flaky HTTP server tests (Tobias Nießen) [#42926](https://github.com/nodejs/node/pull/42926)
|
|
349
|
+
* \[[`531a0a9980`](https://github.com/nodejs/node/commit/531a0a9980)] - **tools**: update lint-md-dependencies to rollup\@2.73.0 (Node.js GitHub Bot) [#43107](https://github.com/nodejs/node/pull/43107)
|
|
350
|
+
* \[[`64daaca46d`](https://github.com/nodejs/node/commit/64daaca46d)] - **tools**: update eslint to 8.15.0 (Node.js GitHub Bot) [#43005](https://github.com/nodejs/node/pull/43005)
|
|
351
|
+
* \[[`79872382ef`](https://github.com/nodejs/node/commit/79872382ef)] - **tools**: refactor lint-sh.js to esm module (Feng Yu) [#42942](https://github.com/nodejs/node/pull/42942)
|
|
352
|
+
* \[[`265ecdfe07`](https://github.com/nodejs/node/commit/265ecdfe07)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#43003](https://github.com/nodejs/node/pull/43003)
|
|
353
|
+
* \[[`e9e1f1e194`](https://github.com/nodejs/node/commit/e9e1f1e194)] - **typings**: fix `os.cpus` invalid return type (Himself65) [#43006](https://github.com/nodejs/node/pull/43006)
|
|
354
|
+
* \[[`55ef6e81cb`](https://github.com/nodejs/node/commit/55ef6e81cb)] - **wasm**: add missing init reported by coverity (Michael Dawson) [#42897](https://github.com/nodejs/node/pull/42897)
|
|
355
|
+
* \[[`5470578008`](https://github.com/nodejs/node/commit/5470578008)] - **worker**: fix stream racing with terminate (Keyhan Vakil) [#42874](https://github.com/nodejs/node/pull/42874)
|
|
356
|
+
|
|
37
357
|
<a id="18.1.0"></a>
|
|
38
358
|
|
|
39
359
|
## 2022-05-03, Version 18.1.0 (Current), @targos
|
package/README.md
CHANGED
|
@@ -286,8 +286,6 @@ For information about the governance of the Node.js project, see
|
|
|
286
286
|
**Ben Noordhuis** <<info@bnoordhuis.nl>>
|
|
287
287
|
* [BridgeAR](https://github.com/BridgeAR) -
|
|
288
288
|
**Ruben Bridgewater** <<ruben@bridgewater.de>> (he/him)
|
|
289
|
-
* [bzoz](https://github.com/bzoz) -
|
|
290
|
-
**Bartosz Sosnowski** <<bartosz@janeasystems.com>>
|
|
291
289
|
* [cclauss](https://github.com/cclauss) -
|
|
292
290
|
**Christian Clauss** <<cclauss@me.com>> (he/him)
|
|
293
291
|
* [ChALkeR](https://github.com/ChALkeR) -
|
|
@@ -329,9 +327,7 @@ For information about the governance of the Node.js project, see
|
|
|
329
327
|
* [HarshithaKP](https://github.com/HarshithaKP) -
|
|
330
328
|
**Harshitha K P** <<harshitha014@gmail.com>> (she/her)
|
|
331
329
|
* [himself65](https://github.com/himself65) -
|
|
332
|
-
**Zeyu Yang** <<himself65@outlook.com>> (he/him)
|
|
333
|
-
* [hiroppy](https://github.com/hiroppy) -
|
|
334
|
-
**Yuta Hiroto** <<hello@hiroppy.me>> (he/him)
|
|
330
|
+
**Zeyu "Alex" Yang** <<himself65@outlook.com>> (he/him)
|
|
335
331
|
* [iansu](https://github.com/iansu) -
|
|
336
332
|
**Ian Sutherland** <<ian@iansutherland.ca>>
|
|
337
333
|
* [indutny](https://github.com/indutny) -
|
|
@@ -360,10 +356,10 @@ For information about the governance of the Node.js project, see
|
|
|
360
356
|
**Shingo Inoue** <<leko.noor@gmail.com>> (he/him)
|
|
361
357
|
* [linkgoron](https://github.com/linkgoron) -
|
|
362
358
|
**Nitzan Uziely** <<linkgoron@gmail.com>>
|
|
359
|
+
* [LiviaMedeiros](https://github.com/LiviaMedeiros) -
|
|
360
|
+
**LiviaMedeiros** <<livia@cirno.name>>
|
|
363
361
|
* [lpinca](https://github.com/lpinca) -
|
|
364
362
|
**Luigi Pinca** <<luigipinca@gmail.com>> (he/him)
|
|
365
|
-
* [lundibundi](https://github.com/lundibundi) -
|
|
366
|
-
**Denys Otrishko** <<shishugi@gmail.com>> (he/him)
|
|
367
363
|
* [Lxxyx](https://github.com/Lxxyx) -
|
|
368
364
|
**Zijian Liu** <<lxxyxzj@gmail.com>> (he/him)
|
|
369
365
|
* [marsonya](https://github.com/marsonya) -
|
|
@@ -444,8 +440,6 @@ For information about the governance of the Node.js project, see
|
|
|
444
440
|
**Khaidi Chu** <<i@2333.moe>> (he/him)
|
|
445
441
|
* [yashLadha](https://github.com/yashLadha) -
|
|
446
442
|
**Yash Ladha** <<yash@yashladha.in>> (he/him)
|
|
447
|
-
* [yosuke-furukawa](https://github.com/yosuke-furukawa) -
|
|
448
|
-
**Yosuke Furukawa** <<yosuke.furukawa@gmail.com>>
|
|
449
443
|
* [ZYSzys](https://github.com/ZYSzys) -
|
|
450
444
|
**Yongsheng Zhang** <<zyszys98@gmail.com>> (he/him)
|
|
451
445
|
|
|
@@ -474,6 +468,8 @@ For information about the governance of the Node.js project, see
|
|
|
474
468
|
**Christopher Hiller** <<boneskull@boneskull.com>> (he/him)
|
|
475
469
|
* [brendanashworth](https://github.com/brendanashworth) -
|
|
476
470
|
**Brendan Ashworth** <<brendan.ashworth@me.com>>
|
|
471
|
+
* [bzoz](https://github.com/bzoz) -
|
|
472
|
+
**Bartosz Sosnowski** <<bartosz@janeasystems.com>>
|
|
477
473
|
* [calvinmetcalf](https://github.com/calvinmetcalf) -
|
|
478
474
|
**Calvin Metcalf** <<calvin.metcalf@gmail.com>>
|
|
479
475
|
* [chrisdickinson](https://github.com/chrisdickinson) -
|
|
@@ -506,6 +502,8 @@ For information about the governance of the Node.js project, see
|
|
|
506
502
|
**Glen Keane** <<glenkeane.94@gmail.com>> (he/him)
|
|
507
503
|
* [hashseed](https://github.com/hashseed) -
|
|
508
504
|
**Yang Guo** <<yangguo@chromium.org>> (he/him)
|
|
505
|
+
* [hiroppy](https://github.com/hiroppy) -
|
|
506
|
+
**Yuta Hiroto** <<hello@hiroppy.me>> (he/him)
|
|
509
507
|
* [iarna](https://github.com/iarna) -
|
|
510
508
|
**Rebecca Turner** <<me@re-becca.org>>
|
|
511
509
|
* [imran-iq](https://github.com/imran-iq) -
|
|
@@ -538,6 +536,8 @@ For information about the governance of the Node.js project, see
|
|
|
538
536
|
**Lance Ball** <<lball@redhat.com>> (he/him)
|
|
539
537
|
* [lucamaraschi](https://github.com/lucamaraschi) -
|
|
540
538
|
**Luca Maraschi** <<luca.maraschi@gmail.com>> (he/him)
|
|
539
|
+
* [lundibundi](https://github.com/lundibundi) -
|
|
540
|
+
**Denys Otrishko** <<shishugi@gmail.com>> (he/him)
|
|
541
541
|
* [lxe](https://github.com/lxe) -
|
|
542
542
|
**Aleksey Smolenchuk** <<lxe@lxe.co>>
|
|
543
543
|
* [maclover7](https://github.com/maclover7) -
|
|
@@ -632,6 +632,8 @@ For information about the governance of the Node.js project, see
|
|
|
632
632
|
**Yihong Wang** <<yh.wang@ibm.com>>
|
|
633
633
|
* [yorkie](https://github.com/yorkie) -
|
|
634
634
|
**Yorkie Liu** <<yorkiefixer@gmail.com>>
|
|
635
|
+
* [yosuke-furukawa](https://github.com/yosuke-furukawa) -
|
|
636
|
+
**Yosuke Furukawa** <<yosuke.furukawa@gmail.com>>
|
|
635
637
|
|
|
636
638
|
</details>
|
|
637
639
|
|
|
@@ -644,6 +646,8 @@ maintaining the Node.js project.
|
|
|
644
646
|
|
|
645
647
|
* [Ayase-252](https://github.com/Ayase-252) -
|
|
646
648
|
**Qingyu Deng** <<i@ayase-lab.com>>
|
|
649
|
+
* [F3n67u](https://github.com/F3n67u) -
|
|
650
|
+
**Feng Yu** <<F3n67u@outlook.com>> (he/him)
|
|
647
651
|
* [himadriganguly](https://github.com/himadriganguly) -
|
|
648
652
|
**Himadri Ganguly** <<himadri.tech@gmail.com>> (he/him)
|
|
649
653
|
* [iam-frankqiu](https://github.com/iam-frankqiu) -
|
|
@@ -675,10 +679,14 @@ Primary GPG keys for Node.js Releasers (some Releasers sign with subkeys):
|
|
|
675
679
|
`74F12602B6F1C4E913FAA37AD3A89613643B6201`
|
|
676
680
|
* **James M Snell** <<jasnell@keybase.io>>
|
|
677
681
|
`71DCFD284A79C3B38668286BC97EC7A07EDE3FC1`
|
|
682
|
+
* **Juan José Arboleda** <<soyjuanarbol@gmail.com>>
|
|
683
|
+
`61FC681DFB92A079F1685E77973F295594EC4689`
|
|
678
684
|
* **Michaël Zasso** <<targos@protonmail.com>>
|
|
679
685
|
`8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600`
|
|
680
686
|
* **Myles Borins** <<myles.borins@gmail.com>>
|
|
681
687
|
`C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8`
|
|
688
|
+
* **RafaelGSS** <<rafael.nunu@hotmail.com>>
|
|
689
|
+
`890C08DB8579162FEE0DF9DB8BEAB4DFCF555EF4`
|
|
682
690
|
* **Richard Lau** <<rlau@redhat.com>>
|
|
683
691
|
`C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C`
|
|
684
692
|
* **Rod Vagg** <<rod@vagg.org>>
|
|
@@ -699,8 +707,10 @@ gpg --keyserver hkps://keys.openpgp.org --recv-keys 141F07595B7B3FFE74309A937405
|
|
|
699
707
|
gpg --keyserver hkps://keys.openpgp.org --recv-keys 94AE36675C464D64BAFA68DD7434390BDBE9B9C5
|
|
700
708
|
gpg --keyserver hkps://keys.openpgp.org --recv-keys 74F12602B6F1C4E913FAA37AD3A89613643B6201
|
|
701
709
|
gpg --keyserver hkps://keys.openpgp.org --recv-keys 71DCFD284A79C3B38668286BC97EC7A07EDE3FC1
|
|
710
|
+
gpg --keyserver hkps://keys.openpgp.org --recv-keys 61FC681DFB92A079F1685E77973F295594EC4689
|
|
702
711
|
gpg --keyserver hkps://keys.openpgp.org --recv-keys 8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600
|
|
703
712
|
gpg --keyserver hkps://keys.openpgp.org --recv-keys C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8
|
|
713
|
+
gpg --keyserver hkps://keys.openpgp.org --recv-keys 890C08DB8579162FEE0DF9DB8BEAB4DFCF555EF4
|
|
704
714
|
gpg --keyserver hkps://keys.openpgp.org --recv-keys C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C
|
|
705
715
|
gpg --keyserver hkps://keys.openpgp.org --recv-keys DD8F2338BAE7501E3DD5AC78C273792F7D83545D
|
|
706
716
|
gpg --keyserver hkps://keys.openpgp.org --recv-keys A48C2BEE680E841632CD4E44F07496B3EB3C1762
|
package/bin/node
CHANGED
|
Binary file
|
package/include/node/common.gypi
CHANGED
package/include/node/config.gypi
CHANGED
|
@@ -126,6 +126,7 @@
|
|
|
126
126
|
'lib/internal/cli_table.js',
|
|
127
127
|
'lib/internal/worker.js',
|
|
128
128
|
'lib/internal/fixed_queue.js',
|
|
129
|
+
'lib/internal/wasm_web_api.js',
|
|
129
130
|
'lib/internal/dtrace.js',
|
|
130
131
|
'lib/internal/watchdog.js',
|
|
131
132
|
'lib/internal/constants.js',
|
|
@@ -174,12 +175,12 @@
|
|
|
174
175
|
'lib/internal/readline/callbacks.js',
|
|
175
176
|
'lib/internal/console/global.js',
|
|
176
177
|
'lib/internal/console/constructor.js',
|
|
178
|
+
'lib/internal/crypto/cfrg.js',
|
|
177
179
|
'lib/internal/crypto/keys.js',
|
|
178
180
|
'lib/internal/crypto/rsa.js',
|
|
179
181
|
'lib/internal/crypto/util.js',
|
|
180
182
|
'lib/internal/crypto/x509.js',
|
|
181
183
|
'lib/internal/crypto/ec.js',
|
|
182
|
-
'lib/internal/crypto/dsa.js',
|
|
183
184
|
'lib/internal/crypto/cipher.js',
|
|
184
185
|
'lib/internal/crypto/hashnames.js',
|
|
185
186
|
'lib/internal/crypto/certificate.js',
|
|
@@ -210,6 +211,7 @@
|
|
|
210
211
|
'lib/internal/perf/performance_entry.js',
|
|
211
212
|
'lib/internal/perf/event_loop_delay.js',
|
|
212
213
|
'lib/internal/perf/nodetiming.js',
|
|
214
|
+
'lib/internal/perf/resource_timing.js',
|
|
213
215
|
'lib/internal/perf/observe.js',
|
|
214
216
|
'lib/internal/perf/timerify.js',
|
|
215
217
|
'lib/internal/perf/event_loop_utilization.js',
|
|
@@ -280,6 +282,8 @@
|
|
|
280
282
|
'lib/internal/util/inspector.js',
|
|
281
283
|
'lib/internal/util/comparisons.js',
|
|
282
284
|
'lib/internal/util/debuglog.js',
|
|
285
|
+
'lib/internal/util/parse_args/parse_args.js',
|
|
286
|
+
'lib/internal/util/parse_args/utils.js',
|
|
283
287
|
'lib/internal/worker/io.js',
|
|
284
288
|
'lib/internal/worker/js_transferable.js',
|
|
285
289
|
'lib/internal/test_runner/test.js',
|