node-linux-arm64 18.17.1 → 18.18.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.
Files changed (79) hide show
  1. package/CHANGELOG.md +188 -0
  2. package/LICENSE +515 -520
  3. package/README.md +11 -2
  4. package/bin/node +0 -0
  5. package/include/node/common.gypi +48 -20
  6. package/include/node/js_native_api.h +18 -0
  7. package/include/node/node_version.h +2 -2
  8. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/crypto/bn_conf.h +29 -0
  9. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/crypto/dso_conf.h +19 -0
  10. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/asn1.h +1128 -0
  11. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/asn1t.h +946 -0
  12. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/bio.h +887 -0
  13. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/cms.h +493 -0
  14. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/conf.h +211 -0
  15. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/configuration.h +137 -0
  16. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/crmf.h +227 -0
  17. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/crypto.h +558 -0
  18. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/ct.h +573 -0
  19. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/err.h +504 -0
  20. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/ess.h +128 -0
  21. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/fipskey.h +36 -0
  22. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/lhash.h +288 -0
  23. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/ocsp.h +483 -0
  24. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/pkcs12.h +350 -0
  25. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/pkcs7.h +427 -0
  26. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/safestack.h +297 -0
  27. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/srp.h +285 -0
  28. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/ssl.h +2668 -0
  29. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/ui.h +407 -0
  30. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/x509.h +1276 -0
  31. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/x509_vfy.h +894 -0
  32. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/openssl/x509v3.h +1450 -0
  33. package/include/node/openssl/archs/linux64-loongarch64/no-asm/include/progs.h +123 -0
  34. package/include/node/openssl/archs/linux64-loongarch64/no-asm/providers/common/include/prov/der_digests.h +160 -0
  35. package/include/node/openssl/archs/linux64-loongarch64/no-asm/providers/common/include/prov/der_dsa.h +94 -0
  36. package/include/node/openssl/archs/linux64-loongarch64/no-asm/providers/common/include/prov/der_ec.h +286 -0
  37. package/include/node/openssl/archs/linux64-loongarch64/no-asm/providers/common/include/prov/der_ecx.h +50 -0
  38. package/include/node/openssl/archs/linux64-loongarch64/no-asm/providers/common/include/prov/der_rsa.h +187 -0
  39. package/include/node/openssl/archs/linux64-loongarch64/no-asm/providers/common/include/prov/der_sm2.h +37 -0
  40. package/include/node/openssl/archs/linux64-loongarch64/no-asm/providers/common/include/prov/der_wrap.h +46 -0
  41. package/include/node/openssl/asn1_no-asm.h +2 -0
  42. package/include/node/openssl/asn1t_no-asm.h +2 -0
  43. package/include/node/openssl/bio_no-asm.h +2 -0
  44. package/include/node/openssl/bn_conf_no-asm.h +2 -0
  45. package/include/node/openssl/cmp_no-asm.h +2 -0
  46. package/include/node/openssl/cms_no-asm.h +2 -0
  47. package/include/node/openssl/conf_no-asm.h +2 -0
  48. package/include/node/openssl/configuration_no-asm.h +2 -0
  49. package/include/node/openssl/crmf_no-asm.h +2 -0
  50. package/include/node/openssl/crypto_no-asm.h +2 -0
  51. package/include/node/openssl/ct_no-asm.h +2 -0
  52. package/include/node/openssl/dso_conf_no-asm.h +2 -0
  53. package/include/node/openssl/err_no-asm.h +2 -0
  54. package/include/node/openssl/ess_no-asm.h +2 -0
  55. package/include/node/openssl/fipskey_no-asm.h +2 -0
  56. package/include/node/openssl/lhash_no-asm.h +2 -0
  57. package/include/node/openssl/ocsp_no-asm.h +2 -0
  58. package/include/node/openssl/opensslv_no-asm.h +2 -0
  59. package/include/node/openssl/pkcs12_no-asm.h +2 -0
  60. package/include/node/openssl/pkcs7_no-asm.h +2 -0
  61. package/include/node/openssl/safestack_no-asm.h +2 -0
  62. package/include/node/openssl/srp_no-asm.h +2 -0
  63. package/include/node/openssl/ssl_no-asm.h +2 -0
  64. package/include/node/openssl/ui_no-asm.h +2 -0
  65. package/include/node/openssl/x509_no-asm.h +2 -0
  66. package/include/node/openssl/x509_vfy_no-asm.h +2 -0
  67. package/include/node/openssl/x509v3_no-asm.h +2 -0
  68. package/include/node/uv/darwin.h +3 -3
  69. package/include/node/uv/errno.h +18 -1
  70. package/include/node/uv/linux.h +1 -1
  71. package/include/node/uv/threadpool.h +1 -1
  72. package/include/node/uv/unix.h +25 -24
  73. package/include/node/uv/version.h +2 -2
  74. package/include/node/uv/win.h +20 -17
  75. package/include/node/uv.h +81 -19
  76. package/include/node/zconf.h +1 -1
  77. package/include/node/zlib.h +175 -175
  78. package/package.json +1 -1
  79. package/include/node/uv/stdint-msvc2008.h +0 -247
package/README.md CHANGED
@@ -291,6 +291,8 @@ For information about the governance of the Node.js project, see
291
291
  **Anatoli Papirovski** <<apapirovski@mac.com>> (he/him)
292
292
  * [AshCripps](https://github.com/AshCripps) -
293
293
  **Ash Cripps** <<email@ashleycripps.co.uk>>
294
+ * [atlowChemi](https://github.com/atlowChemi) -
295
+ **Chemi Atlow** <<chemi@atlow.co.il>> (he/him)
294
296
  * [Ayase-252](https://github.com/Ayase-252) -
295
297
  **Qingyu Deng** <<i@ayase-lab.com>>
296
298
  * [bengl](https://github.com/bengl) -
@@ -377,6 +379,8 @@ For information about the governance of the Node.js project, see
377
379
  **Matthew Aitken** <<maitken033380023@gmail.com>> (he/him)
378
380
  * [kuriyosh](https://github.com/kuriyosh) -
379
381
  **Yoshiki Kurihara** <<yosyos0306@gmail.com>> (he/him)
382
+ * [kvakil](https://github.com/kvakil) -
383
+ **Keyhan Vakil** <<kvakil@sylph.kvakil.me>>
380
384
  * [legendecas](https://github.com/legendecas) -
381
385
  **Chengzhong Wu** <<legendecas@gmail.com>> (he/him)
382
386
  * [Leko](https://github.com/Leko) -
@@ -461,6 +465,8 @@ For information about the governance of the Node.js project, see
461
465
  **Rich Trott** <<rtrott@gmail.com>> (he/him)
462
466
  * [vdeturckheim](https://github.com/vdeturckheim) -
463
467
  **Vladimir de Turckheim** <<vlad2t@hotmail.com>> (he/him)
468
+ * [vmoroz](https://github.com/vmoroz) -
469
+ **Vladimir Morozov** <<vmorozov@microsoft.com>> (he/him)
464
470
  * [VoltrexKeyva](https://github.com/VoltrexKeyva) -
465
471
  **Mohammed Keyvanzadeh** <<mohammadkeyvanzade94@gmail.com>> (he/him)
466
472
  * [watilde](https://github.com/watilde) -
@@ -705,14 +711,14 @@ maintaining the Node.js project.
705
711
  **Himadri Ganguly** <<himadri.tech@gmail.com>> (he/him)
706
712
  * [iam-frankqiu](https://github.com/iam-frankqiu) -
707
713
  **Frank Qiu** <<iam.frankqiu@gmail.com>> (he/him)
708
- * [kvakil](https://github.com/kvakil) -
709
- **Keyhan Vakil** <<kvakil@sylph.kvakil.me>> (they/them)
710
714
  * [marsonya](https://github.com/marsonya) -
711
715
  **Akhil Marsonya** <<akhil.marsonya27@gmail.com>> (he/him)
712
716
  * [meixg](https://github.com/meixg) -
713
717
  **Xuguang Mei** <<meixuguang@gmail.com>> (he/him)
714
718
  * [Mesteery](https://github.com/Mesteery) -
715
719
  **Mestery** <<mestery@protonmail.com>> (he/him)
720
+ * [preveen-stack](https://github.com/preveen-stack) -
721
+ **Preveen Padmanabhan** <<wide4head@gmail.com>> (he/him)
716
722
  * [PoojaDurgad](https://github.com/PoojaDurgad) -
717
723
  **Pooja Durgad** <<Pooja.D.P@ibm.com>>
718
724
  * [RaisinTen](https://github.com/RaisinTen) -
@@ -745,6 +751,8 @@ Primary GPG keys for Node.js Releasers (some Releasers sign with subkeys):
745
751
  `C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C`
746
752
  * **Ruy Adorno** <<ruyadorno@hotmail.com>>
747
753
  `108F52B48DB57BB0CC439B2997B01419BD92F80A`
754
+ * **Ulises Gascón** <<ulisesgascongonzalez@gmail.com>>
755
+ `A363A499291CBBC940DD62E41F10027AF002F8B0`
748
756
 
749
757
  To import the full set of trusted release keys (including subkeys possibly used
750
758
  to sign releases):
@@ -759,6 +767,7 @@ gpg --keyserver hkps://keys.openpgp.org --recv-keys C4F0DFFF4E8C1A8236409D08E73B
759
767
  gpg --keyserver hkps://keys.openpgp.org --recv-keys 890C08DB8579162FEE0DF9DB8BEAB4DFCF555EF4
760
768
  gpg --keyserver hkps://keys.openpgp.org --recv-keys C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C
761
769
  gpg --keyserver hkps://keys.openpgp.org --recv-keys 108F52B48DB57BB0CC439B2997B01419BD92F80A
770
+ gpg --keyserver hkps://keys.openpgp.org --recv-keys A363A499291CBBC940DD62E41F10027AF002F8B0
762
771
  ```
763
772
 
764
773
  See [Verifying binaries](#verifying-binaries) for how to use these keys to
package/bin/node CHANGED
Binary file
@@ -411,28 +411,56 @@
411
411
  'cflags': [ '-I/usr/local/include' ],
412
412
  'ldflags': [ '-Wl,-z,wxneeded' ],
413
413
  }],
414
- ],
415
- 'conditions': [
416
- [ 'target_arch=="ia32"', {
417
- 'cflags': [ '-m32' ],
418
- 'ldflags': [ '-m32' ],
419
- }],
420
- [ 'target_arch=="x64"', {
421
- 'cflags': [ '-m64' ],
422
- 'ldflags': [ '-m64' ],
423
- }],
424
- [ 'target_arch=="ppc" and OS not in "aix os400"', {
425
- 'cflags': [ '-m32' ],
426
- 'ldflags': [ '-m32' ],
427
- }],
428
- [ 'target_arch=="ppc64" and OS not in "aix os400"', {
429
- 'cflags': [ '-m64', '-mminimal-toc' ],
430
- 'ldflags': [ '-m64' ],
414
+ ['_toolset=="host"', {
415
+ 'conditions': [
416
+ [ 'host_arch=="ia32"', {
417
+ 'cflags': [ '-m32' ],
418
+ 'ldflags': [ '-m32' ],
419
+ }],
420
+ [ 'host_arch=="x64"', {
421
+ 'cflags': [ '-m64' ],
422
+ 'ldflags': [ '-m64' ],
423
+ }],
424
+ [ 'host_arch=="ppc" and OS not in "aix os400"', {
425
+ 'cflags': [ '-m32' ],
426
+ 'ldflags': [ '-m32' ],
427
+ }],
428
+ [ 'host_arch=="ppc64" and OS not in "aix os400"', {
429
+ 'cflags': [ '-m64', '-mminimal-toc' ],
430
+ 'ldflags': [ '-m64' ],
431
+ }],
432
+ [ 'host_arch=="s390x" and OS=="linux"', {
433
+ 'cflags': [ '-m64', '-march=z196' ],
434
+ 'ldflags': [ '-m64', '-march=z196' ],
435
+ }],
436
+ ],
431
437
  }],
432
- [ 'target_arch=="s390x" and OS=="linux"', {
433
- 'cflags': [ '-m64', '-march=z196' ],
434
- 'ldflags': [ '-m64', '-march=z196' ],
438
+ ['_toolset=="target"', {
439
+ 'conditions': [
440
+ [ 'target_arch=="ia32"', {
441
+ 'cflags': [ '-m32' ],
442
+ 'ldflags': [ '-m32' ],
443
+ }],
444
+ [ 'target_arch=="x64"', {
445
+ 'cflags': [ '-m64' ],
446
+ 'ldflags': [ '-m64' ],
447
+ }],
448
+ [ 'target_arch=="ppc" and OS not in "aix os400"', {
449
+ 'cflags': [ '-m32' ],
450
+ 'ldflags': [ '-m32' ],
451
+ }],
452
+ [ 'target_arch=="ppc64" and OS not in "aix os400"', {
453
+ 'cflags': [ '-m64', '-mminimal-toc' ],
454
+ 'ldflags': [ '-m64' ],
455
+ }],
456
+ [ 'target_arch=="s390x" and OS=="linux"', {
457
+ 'cflags': [ '-m64', '-march=z196' ],
458
+ 'ldflags': [ '-m64', '-march=z196' ],
459
+ }],
460
+ ],
435
461
  }],
462
+ ],
463
+ 'conditions': [
436
464
  [ 'OS=="solaris"', {
437
465
  'cflags': [ '-pthreads' ],
438
466
  'ldflags': [ '-pthreads' ],
@@ -92,6 +92,24 @@ NAPI_EXTERN napi_status NAPI_CDECL napi_create_string_utf16(napi_env env,
92
92
  const char16_t* str,
93
93
  size_t length,
94
94
  napi_value* result);
95
+ #ifdef NAPI_EXPERIMENTAL
96
+ NAPI_EXTERN napi_status NAPI_CDECL
97
+ node_api_create_external_string_latin1(napi_env env,
98
+ char* str,
99
+ size_t length,
100
+ napi_finalize finalize_callback,
101
+ void* finalize_hint,
102
+ napi_value* result,
103
+ bool* copied);
104
+ NAPI_EXTERN napi_status NAPI_CDECL
105
+ node_api_create_external_string_utf16(napi_env env,
106
+ char16_t* str,
107
+ size_t length,
108
+ napi_finalize finalize_callback,
109
+ void* finalize_hint,
110
+ napi_value* result,
111
+ bool* copied);
112
+ #endif // NAPI_EXPERIMENTAL
95
113
  NAPI_EXTERN napi_status NAPI_CDECL napi_create_symbol(napi_env env,
96
114
  napi_value description,
97
115
  napi_value* result);
@@ -23,8 +23,8 @@
23
23
  #define SRC_NODE_VERSION_H_
24
24
 
25
25
  #define NODE_MAJOR_VERSION 18
26
- #define NODE_MINOR_VERSION 17
27
- #define NODE_PATCH_VERSION 1
26
+ #define NODE_MINOR_VERSION 18
27
+ #define NODE_PATCH_VERSION 0
28
28
 
29
29
  #define NODE_VERSION_IS_LTS 1
30
30
  #define NODE_VERSION_LTS_CODENAME "Hydrogen"
@@ -0,0 +1,29 @@
1
+ /* WARNING: do not edit! */
2
+ /* Generated by Makefile from include/crypto/bn_conf.h.in */
3
+ /*
4
+ * Copyright 2016-2021 The OpenSSL Project Authors. All Rights Reserved.
5
+ *
6
+ * Licensed under the Apache License 2.0 (the "License"). You may not use
7
+ * this file except in compliance with the License. You can obtain a copy
8
+ * in the file LICENSE in the source distribution or at
9
+ * https://www.openssl.org/source/license.html
10
+ */
11
+
12
+ #ifndef OSSL_CRYPTO_BN_CONF_H
13
+ # define OSSL_CRYPTO_BN_CONF_H
14
+ # pragma once
15
+
16
+ /*
17
+ * The contents of this file are not used in the UEFI build, as
18
+ * both 32-bit and 64-bit builds are supported from a single run
19
+ * of the Configure script.
20
+ */
21
+
22
+ /* Should we define BN_DIV2W here? */
23
+
24
+ /* Only one for the following should be defined */
25
+ #define SIXTY_FOUR_BIT_LONG
26
+ #undef SIXTY_FOUR_BIT
27
+ #undef THIRTY_TWO_BIT
28
+
29
+ #endif
@@ -0,0 +1,19 @@
1
+ /* WARNING: do not edit! */
2
+ /* Generated by Makefile from include/crypto/dso_conf.h.in */
3
+ /*
4
+ * Copyright 2016-2021 The OpenSSL Project Authors. All Rights Reserved.
5
+ *
6
+ * Licensed under the Apache License 2.0 (the "License"). You may not use
7
+ * this file except in compliance with the License. You can obtain a copy
8
+ * in the file LICENSE in the source distribution or at
9
+ * https://www.openssl.org/source/license.html
10
+ */
11
+
12
+ #ifndef OSSL_CRYPTO_DSO_CONF_H
13
+ # define OSSL_CRYPTO_DSO_CONF_H
14
+ # pragma once
15
+
16
+ # define DSO_DLFCN
17
+ # define HAVE_DLFCN_H
18
+ # define DSO_EXTENSION ".so"
19
+ #endif