node-linux-arm64 17.9.1 → 18.2.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 (211) hide show
  1. package/CHANGELOG.md +418 -1554
  2. package/LICENSE +111 -9
  3. package/README.md +20 -11
  4. package/bin/node +0 -0
  5. package/include/node/common.gypi +2 -2
  6. package/include/node/config.gypi +15 -5
  7. package/include/node/js_native_api.h +367 -363
  8. package/include/node/js_native_api_types.h +13 -4
  9. package/include/node/libplatform/libplatform.h +0 -11
  10. package/include/node/libplatform/v8-tracing.h +0 -1
  11. package/include/node/node.h +17 -3
  12. package/include/node/node_api.h +110 -90
  13. package/include/node/node_api_types.h +8 -10
  14. package/include/node/node_version.h +4 -4
  15. package/include/node/openssl/archs/BSD-x86/asm/crypto/buildinf.h +1 -1
  16. package/include/node/openssl/archs/BSD-x86/asm_avx2/crypto/buildinf.h +1 -1
  17. package/include/node/openssl/archs/BSD-x86/no-asm/crypto/buildinf.h +1 -1
  18. package/include/node/openssl/archs/BSD-x86_64/asm/crypto/buildinf.h +1 -1
  19. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/crypto/buildinf.h +1 -1
  20. package/include/node/openssl/archs/BSD-x86_64/no-asm/crypto/buildinf.h +1 -1
  21. package/include/node/openssl/archs/VC-WIN32/asm/crypto/buildinf.h +1 -1
  22. package/include/node/openssl/archs/VC-WIN32/asm_avx2/crypto/buildinf.h +1 -1
  23. package/include/node/openssl/archs/VC-WIN32/no-asm/crypto/buildinf.h +1 -1
  24. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/crypto/buildinf.h +1 -1
  25. package/include/node/openssl/archs/VC-WIN64A/asm/crypto/buildinf.h +1 -1
  26. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/crypto/buildinf.h +1 -1
  27. package/include/node/openssl/archs/VC-WIN64A/no-asm/crypto/buildinf.h +1 -1
  28. package/include/node/openssl/archs/aix-gcc/asm/crypto/buildinf.h +1 -1
  29. package/include/node/openssl/archs/aix-gcc/asm/include/openssl/crypto.h +0 -2
  30. package/include/node/openssl/archs/aix-gcc/asm/include/openssl/opensslv.h +5 -5
  31. package/include/node/openssl/archs/aix-gcc/asm/include/openssl/ssl.h +0 -11
  32. package/include/node/openssl/archs/aix-gcc/asm/include/openssl/x509.h +4 -4
  33. package/include/node/openssl/archs/aix-gcc/asm_avx2/crypto/buildinf.h +1 -1
  34. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/crypto.h +0 -2
  35. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/opensslv.h +5 -5
  36. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/ssl.h +0 -11
  37. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/x509.h +4 -4
  38. package/include/node/openssl/archs/aix-gcc/no-asm/crypto/buildinf.h +1 -1
  39. package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/crypto.h +0 -2
  40. package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/opensslv.h +5 -5
  41. package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/ssl.h +0 -11
  42. package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/x509.h +4 -4
  43. package/include/node/openssl/archs/aix64-gcc-as/asm/crypto/buildinf.h +1 -1
  44. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/crypto/buildinf.h +1 -1
  45. package/include/node/openssl/archs/aix64-gcc-as/no-asm/crypto/buildinf.h +1 -1
  46. package/include/node/openssl/archs/darwin-i386-cc/asm/crypto/buildinf.h +1 -1
  47. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/crypto/buildinf.h +1 -1
  48. package/include/node/openssl/archs/darwin-i386-cc/no-asm/crypto/buildinf.h +1 -1
  49. package/include/node/openssl/archs/darwin64-arm64-cc/asm/crypto/buildinf.h +1 -1
  50. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/crypto/buildinf.h +1 -1
  51. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/crypto/buildinf.h +1 -1
  52. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/crypto/buildinf.h +1 -1
  53. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/crypto/buildinf.h +1 -1
  54. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/crypto/buildinf.h +1 -1
  55. package/include/node/openssl/archs/linux-aarch64/asm/crypto/buildinf.h +1 -1
  56. package/include/node/openssl/archs/linux-aarch64/asm_avx2/crypto/buildinf.h +1 -1
  57. package/include/node/openssl/archs/linux-aarch64/no-asm/crypto/buildinf.h +1 -1
  58. package/include/node/openssl/archs/linux-armv4/asm/crypto/buildinf.h +1 -1
  59. package/include/node/openssl/archs/linux-armv4/asm_avx2/crypto/buildinf.h +1 -1
  60. package/include/node/openssl/archs/linux-armv4/no-asm/crypto/buildinf.h +1 -1
  61. package/include/node/openssl/archs/linux-elf/asm/crypto/buildinf.h +1 -1
  62. package/include/node/openssl/archs/linux-elf/asm_avx2/crypto/buildinf.h +1 -1
  63. package/include/node/openssl/archs/linux-elf/no-asm/crypto/buildinf.h +1 -1
  64. package/include/node/openssl/archs/linux-ppc/asm/crypto/buildinf.h +1 -1
  65. package/include/node/openssl/archs/linux-ppc/asm/include/openssl/crypto.h +0 -2
  66. package/include/node/openssl/archs/linux-ppc/asm/include/openssl/opensslv.h +5 -5
  67. package/include/node/openssl/archs/linux-ppc/asm/include/openssl/ssl.h +0 -11
  68. package/include/node/openssl/archs/linux-ppc/asm/include/openssl/x509.h +4 -4
  69. package/include/node/openssl/archs/linux-ppc/asm_avx2/crypto/buildinf.h +1 -1
  70. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/crypto.h +0 -2
  71. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/opensslv.h +5 -5
  72. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/ssl.h +0 -11
  73. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/x509.h +4 -4
  74. package/include/node/openssl/archs/linux-ppc/no-asm/crypto/buildinf.h +1 -1
  75. package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/crypto.h +0 -2
  76. package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/opensslv.h +5 -5
  77. package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/ssl.h +0 -11
  78. package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/x509.h +4 -4
  79. package/include/node/openssl/archs/linux-ppc64/asm/crypto/buildinf.h +1 -1
  80. package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/crypto.h +0 -2
  81. package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/opensslv.h +5 -5
  82. package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/ssl.h +0 -11
  83. package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/x509.h +4 -4
  84. package/include/node/openssl/archs/linux-ppc64/asm_avx2/crypto/buildinf.h +1 -1
  85. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/crypto.h +0 -2
  86. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/opensslv.h +5 -5
  87. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/ssl.h +0 -11
  88. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/x509.h +4 -4
  89. package/include/node/openssl/archs/linux-ppc64/no-asm/crypto/buildinf.h +1 -1
  90. package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/crypto.h +0 -2
  91. package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/opensslv.h +5 -5
  92. package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/ssl.h +0 -11
  93. package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/x509.h +4 -4
  94. package/include/node/openssl/archs/linux-ppc64le/asm/crypto/buildinf.h +1 -1
  95. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/crypto/buildinf.h +1 -1
  96. package/include/node/openssl/archs/linux-ppc64le/no-asm/crypto/buildinf.h +1 -1
  97. package/include/node/openssl/archs/linux-x86_64/asm/crypto/buildinf.h +1 -1
  98. package/include/node/openssl/archs/linux-x86_64/asm_avx2/crypto/buildinf.h +1 -1
  99. package/include/node/openssl/archs/linux-x86_64/no-asm/crypto/buildinf.h +1 -1
  100. package/include/node/openssl/archs/linux32-s390x/asm/crypto/buildinf.h +1 -1
  101. package/include/node/openssl/archs/linux32-s390x/asm_avx2/crypto/buildinf.h +1 -1
  102. package/include/node/openssl/archs/linux32-s390x/no-asm/crypto/buildinf.h +1 -1
  103. package/include/node/openssl/archs/linux64-mips64/asm/crypto/buildinf.h +1 -1
  104. package/include/node/openssl/archs/linux64-mips64/asm_avx2/crypto/buildinf.h +1 -1
  105. package/include/node/openssl/archs/linux64-mips64/no-asm/crypto/buildinf.h +1 -1
  106. package/include/node/openssl/archs/linux64-riscv64/no-asm/crypto/buildinf.h +1 -1
  107. package/include/node/openssl/archs/linux64-s390x/asm/crypto/buildinf.h +1 -1
  108. package/include/node/openssl/archs/linux64-s390x/asm_avx2/crypto/buildinf.h +1 -1
  109. package/include/node/openssl/archs/linux64-s390x/no-asm/crypto/buildinf.h +1 -1
  110. package/include/node/openssl/archs/solaris-x86-gcc/asm/crypto/buildinf.h +1 -1
  111. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/crypto/buildinf.h +1 -1
  112. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/crypto/buildinf.h +1 -1
  113. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/crypto/buildinf.h +1 -1
  114. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/crypto/buildinf.h +1 -1
  115. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/crypto/buildinf.h +1 -1
  116. package/include/node/openssl/asn1_asm.h +0 -6
  117. package/include/node/openssl/asn1_no-asm.h +0 -6
  118. package/include/node/openssl/asn1t_asm.h +0 -6
  119. package/include/node/openssl/asn1t_no-asm.h +0 -6
  120. package/include/node/openssl/bio_asm.h +0 -6
  121. package/include/node/openssl/bio_no-asm.h +0 -6
  122. package/include/node/openssl/bn_conf_asm.h +0 -6
  123. package/include/node/openssl/bn_conf_no-asm.h +0 -6
  124. package/include/node/openssl/cmp_asm.h +0 -6
  125. package/include/node/openssl/cmp_no-asm.h +0 -6
  126. package/include/node/openssl/cms_asm.h +0 -6
  127. package/include/node/openssl/cms_no-asm.h +0 -6
  128. package/include/node/openssl/conf_asm.h +0 -6
  129. package/include/node/openssl/conf_no-asm.h +0 -6
  130. package/include/node/openssl/configuration_asm.h +0 -6
  131. package/include/node/openssl/configuration_no-asm.h +0 -6
  132. package/include/node/openssl/crmf_asm.h +0 -6
  133. package/include/node/openssl/crmf_no-asm.h +0 -6
  134. package/include/node/openssl/crypto_asm.h +0 -6
  135. package/include/node/openssl/crypto_no-asm.h +0 -6
  136. package/include/node/openssl/ct_asm.h +0 -6
  137. package/include/node/openssl/ct_no-asm.h +0 -6
  138. package/include/node/openssl/dso_conf_asm.h +0 -6
  139. package/include/node/openssl/dso_conf_no-asm.h +0 -6
  140. package/include/node/openssl/err_asm.h +0 -6
  141. package/include/node/openssl/err_no-asm.h +0 -6
  142. package/include/node/openssl/ess_asm.h +0 -6
  143. package/include/node/openssl/ess_no-asm.h +0 -6
  144. package/include/node/openssl/fipskey_asm.h +0 -6
  145. package/include/node/openssl/fipskey_no-asm.h +0 -6
  146. package/include/node/openssl/lhash_asm.h +0 -6
  147. package/include/node/openssl/lhash_no-asm.h +0 -6
  148. package/include/node/openssl/ocsp_asm.h +0 -6
  149. package/include/node/openssl/ocsp_no-asm.h +0 -6
  150. package/include/node/openssl/opensslconf.h +15 -21
  151. package/include/node/openssl/opensslv_asm.h +0 -6
  152. package/include/node/openssl/opensslv_no-asm.h +0 -6
  153. package/include/node/openssl/pkcs12_asm.h +0 -6
  154. package/include/node/openssl/pkcs12_no-asm.h +0 -6
  155. package/include/node/openssl/pkcs7_asm.h +0 -6
  156. package/include/node/openssl/pkcs7_no-asm.h +0 -6
  157. package/include/node/openssl/safestack_asm.h +0 -6
  158. package/include/node/openssl/safestack_no-asm.h +0 -6
  159. package/include/node/openssl/srp_asm.h +0 -6
  160. package/include/node/openssl/srp_no-asm.h +0 -6
  161. package/include/node/openssl/ssl_asm.h +0 -6
  162. package/include/node/openssl/ssl_no-asm.h +0 -6
  163. package/include/node/openssl/ui_asm.h +0 -6
  164. package/include/node/openssl/ui_no-asm.h +0 -6
  165. package/include/node/openssl/x509_asm.h +0 -6
  166. package/include/node/openssl/x509_no-asm.h +0 -6
  167. package/include/node/openssl/x509_vfy_asm.h +0 -6
  168. package/include/node/openssl/x509_vfy_no-asm.h +0 -6
  169. package/include/node/openssl/x509v3_asm.h +0 -6
  170. package/include/node/openssl/x509v3_no-asm.h +0 -6
  171. package/include/node/v8-array-buffer.h +2 -2
  172. package/include/node/v8-callbacks.h +26 -6
  173. package/include/node/v8-context.h +3 -14
  174. package/include/node/v8-data.h +15 -0
  175. package/include/node/v8-debug.h +21 -4
  176. package/include/node/v8-embedder-heap.h +10 -30
  177. package/include/node/v8-embedder-state-scope.h +51 -0
  178. package/include/node/v8-exception.h +0 -7
  179. package/include/node/v8-function.h +3 -0
  180. package/include/node/v8-initialization.h +64 -31
  181. package/include/node/v8-internal.h +189 -102
  182. package/include/node/v8-isolate.h +49 -2
  183. package/include/node/v8-local-handle.h +0 -4
  184. package/include/node/v8-locker.h +2 -1
  185. package/include/node/v8-message.h +19 -44
  186. package/include/node/v8-object.h +11 -6
  187. package/include/node/v8-platform.h +365 -6
  188. package/include/node/v8-primitive.h +14 -6
  189. package/include/node/v8-profiler.h +78 -2
  190. package/include/node/v8-script.h +27 -51
  191. package/include/node/v8-snapshot.h +0 -2
  192. package/include/node/v8-statistics.h +2 -0
  193. package/include/node/v8-template.h +31 -4
  194. package/include/node/v8-traced-handle.h +39 -224
  195. package/include/node/v8-unwinder.h +10 -7
  196. package/include/node/v8-value-serializer.h +32 -2
  197. package/include/node/v8-version.h +4 -4
  198. package/include/node/v8-wasm.h +13 -1
  199. package/include/node/v8-weak-callback-info.h +20 -6
  200. package/include/node/v8.h +0 -1
  201. package/include/node/v8config.h +56 -11
  202. package/package.json +1 -1
  203. package/share/doc/node/gdbinit +14 -6
  204. package/share/man/man1/node.1 +11 -4
  205. package/include/node/openssl/archs/aix64-gcc/asm/crypto/buildinf.h +0 -38
  206. package/include/node/openssl/archs/aix64-gcc/asm/include/progs.h +0 -507
  207. package/include/node/openssl/archs/aix64-gcc/asm_avx2/crypto/buildinf.h +0 -39
  208. package/include/node/openssl/archs/aix64-gcc/asm_avx2/include/progs.h +0 -507
  209. package/include/node/openssl/archs/aix64-gcc/no-asm/crypto/buildinf.h +0 -27
  210. package/include/node/openssl/archs/aix64-gcc/no-asm/include/progs.h +0 -507
  211. package/include/node/openssl/opensslconf_no-asm.h +0 -47
package/LICENSE CHANGED
@@ -109,9 +109,22 @@ The externally maintained libraries used by Node.js are:
109
109
 
110
110
  - ICU, located at deps/icu-small, is licensed as follows:
111
111
  """
112
- COPYRIGHT AND PERMISSION NOTICE (ICU 58 and later)
112
+ UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE
113
113
 
114
- Copyright © 1991-2020 Unicode, Inc. All rights reserved.
114
+ See Terms of Use
115
+ for definitions of Unicode Inc.’s Data Files and Software.
116
+
117
+ NOTICE TO USER: Carefully read the following legal agreement.
118
+ BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S
119
+ DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"),
120
+ YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE
121
+ TERMS AND CONDITIONS OF THIS AGREEMENT.
122
+ IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE
123
+ THE DATA FILES OR SOFTWARE.
124
+
125
+ COPYRIGHT AND PERMISSION NOTICE
126
+
127
+ Copyright © 1991-2022 Unicode, Inc. All rights reserved.
115
128
  Distributed under the Terms of Use in https://www.unicode.org/copyright.html.
116
129
 
117
130
  Permission is hereby granted, free of charge, to any person obtaining
@@ -143,7 +156,7 @@ The externally maintained libraries used by Node.js are:
143
156
  use or other dealings in these Data Files or Software without prior
144
157
  written authorization of the copyright holder.
145
158
 
146
- ---------------------
159
+ ----------------------------------------------------------------------
147
160
 
148
161
  Third-Party Software Licenses
149
162
 
@@ -151,7 +164,9 @@ The externally maintained libraries used by Node.js are:
151
164
  terms for licensed third-party software components included within ICU
152
165
  libraries.
153
166
 
154
- 1. ICU License - ICU 1.8.1 to ICU 57.1
167
+ ----------------------------------------------------------------------
168
+
169
+ ICU License - ICU 1.8.1 to ICU 57.1
155
170
 
156
171
  COPYRIGHT AND PERMISSION NOTICE
157
172
 
@@ -186,7 +201,9 @@ The externally maintained libraries used by Node.js are:
186
201
  All trademarks and registered trademarks mentioned herein are the
187
202
  property of their respective owners.
188
203
 
189
- 2. Chinese/Japanese Word Break Dictionary Data (cjdict.txt)
204
+ ----------------------------------------------------------------------
205
+
206
+ Chinese/Japanese Word Break Dictionary Data (cjdict.txt)
190
207
 
191
208
  # The Google Chrome software developed by Google is licensed under
192
209
  # the BSD license. Other software included in this distribution is
@@ -390,7 +407,9 @@ The externally maintained libraries used by Node.js are:
390
407
  #
391
408
  # ---------------COPYING.ipadic-----END----------------------------------
392
409
 
393
- 3. Lao Word Break Dictionary Data (laodict.txt)
410
+ ----------------------------------------------------------------------
411
+
412
+ Lao Word Break Dictionary Data (laodict.txt)
394
413
 
395
414
  # Copyright (C) 2016 and later: Unicode, Inc. and others.
396
415
  # License & terms of use: http://www.unicode.org/copyright.html
@@ -430,7 +449,9 @@ The externally maintained libraries used by Node.js are:
430
449
  # OF THE POSSIBILITY OF SUCH DAMAGE.
431
450
  # --------------------------------------------------------------------------
432
451
 
433
- 4. Burmese Word Break Dictionary Data (burmesedict.txt)
452
+ ----------------------------------------------------------------------
453
+
454
+ Burmese Word Break Dictionary Data (burmesedict.txt)
434
455
 
435
456
  # Copyright (c) 2014 International Business Machines Corporation
436
457
  # and others. All Rights Reserved.
@@ -470,7 +491,9 @@ The externally maintained libraries used by Node.js are:
470
491
  # SUCH DAMAGE.
471
492
  # --------------------------------------------------------------------------
472
493
 
473
- 5. Time Zone Database
494
+ ----------------------------------------------------------------------
495
+
496
+ Time Zone Database
474
497
 
475
498
  ICU uses the public domain data and code derived from Time Zone
476
499
  Database for its time zone support. The ownership of the TZ database
@@ -493,7 +516,9 @@ The externally maintained libraries used by Node.js are:
493
516
  # making a contribution to the database or code waives all rights to
494
517
  # future claims in that contribution or in the TZ Database.
495
518
 
496
- 6. Google double-conversion
519
+ ----------------------------------------------------------------------
520
+
521
+ Google double-conversion
497
522
 
498
523
  Copyright 2006-2011, the V8 project authors. All rights reserved.
499
524
  Redistribution and use in source and binary forms, with or without
@@ -521,6 +546,83 @@ The externally maintained libraries used by Node.js are:
521
546
  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
522
547
  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
523
548
  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
549
+
550
+ ----------------------------------------------------------------------
551
+
552
+ File: aclocal.m4 (only for ICU4C)
553
+ Section: pkg.m4 - Macros to locate and utilise pkg-config.
554
+
555
+ Copyright © 2004 Scott James Remnant .
556
+ Copyright © 2012-2015 Dan Nicholson
557
+
558
+ This program is free software; you can redistribute it and/or modify
559
+ it under the terms of the GNU General Public License as published by
560
+ the Free Software Foundation; either version 2 of the License, or
561
+ (at your option) any later version.
562
+
563
+ This program is distributed in the hope that it will be useful, but
564
+ WITHOUT ANY WARRANTY; without even the implied warranty of
565
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
566
+ General Public License for more details.
567
+
568
+ You should have received a copy of the GNU General Public License
569
+ along with this program; if not, write to the Free Software
570
+ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
571
+ 02111-1307, USA.
572
+
573
+ As a special exception to the GNU General Public License, if you
574
+ distribute this file as part of a program that contains a
575
+ configuration script generated by Autoconf, you may include it under
576
+ the same distribution terms that you use for the rest of that
577
+ program.
578
+
579
+ (The condition for the exception is fulfilled because
580
+ ICU4C includes a configuration script generated by Autoconf,
581
+ namely the `configure` script.)
582
+
583
+ ----------------------------------------------------------------------
584
+
585
+ File: config.guess (only for ICU4C)
586
+
587
+ This file is free software; you can redistribute it and/or modify it
588
+ under the terms of the GNU General Public License as published by
589
+ the Free Software Foundation; either version 3 of the License, or
590
+ (at your option) any later version.
591
+
592
+ This program is distributed in the hope that it will be useful, but
593
+ WITHOUT ANY WARRANTY; without even the implied warranty of
594
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
595
+ General Public License for more details.
596
+
597
+ You should have received a copy of the GNU General Public License
598
+ along with this program; if not, see .
599
+
600
+ As a special exception to the GNU General Public License, if you
601
+ distribute this file as part of a program that contains a
602
+ configuration script generated by Autoconf, you may include it under
603
+ the same distribution terms that you use for the rest of that
604
+ program. This Exception is an additional permission under section 7
605
+ of the GNU General Public License, version 3 ("GPLv3").
606
+
607
+ (The condition for the exception is fulfilled because
608
+ ICU4C includes a configuration script generated by Autoconf,
609
+ namely the `configure` script.)
610
+
611
+ ----------------------------------------------------------------------
612
+
613
+ File: install-sh (only for ICU4C)
614
+
615
+ Copyright 1991 by the Massachusetts Institute of Technology
616
+
617
+ Permission to use, copy, modify, distribute, and sell this software and its
618
+ documentation for any purpose is hereby granted without fee, provided that
619
+ the above copyright notice appear in all copies and that both that
620
+ copyright notice and this permission notice appear in supporting
621
+ documentation, and that the name of M.I.T. not be used in advertising or
622
+ publicity pertaining to distribution of the software without specific,
623
+ written prior permission. M.I.T. makes no representations about the
624
+ suitability of this software for any purpose. It is provided "as is"
625
+ without express or implied warranty.
524
626
  """
525
627
 
526
628
  - libuv, located at deps/uv, is licensed as follows:
package/README.md CHANGED
@@ -180,8 +180,6 @@ For information about the governance of the Node.js project, see
180
180
  **Matteo Collina** <<matteo.collina@gmail.com>> (he/him)
181
181
  * [mhdawson](https://github.com/mhdawson) -
182
182
  **Michael Dawson** <<midawson@redhat.com>> (he/him)
183
- * [mmarchini](https://github.com/mmarchini) -
184
- **Mary Marchini** <<oss@mmarchini.me>> (she/her)
185
183
  * [MylesBorins](https://github.com/MylesBorins) -
186
184
  **Myles Borins** <<myles.borins@gmail.com>> (he/him)
187
185
  * [RaisinTen](https://github.com/RaisinTen) -
@@ -227,6 +225,8 @@ For information about the governance of the Node.js project, see
227
225
  **Isaac Z. Schlueter** <<i@izs.me>>
228
226
  * [joshgav](https://github.com/joshgav) -
229
227
  **Josh Gavant** <<josh.gavant@outlook.com>>
228
+ * [mmarchini](https://github.com/mmarchini) -
229
+ **Mary Marchini** <<oss@mmarchini.me>> (she/her)
230
230
  * [mscdex](https://github.com/mscdex) -
231
231
  **Brian White** <<mscdex@mscdex.net>>
232
232
  * [nebrius](https://github.com/nebrius) -
@@ -262,8 +262,6 @@ For information about the governance of the Node.js project, see
262
262
  **Anna Henningsen** <<anna@addaleax.net>> (she/her)
263
263
  * [aduh95](https://github.com/aduh95) -
264
264
  **Antoine du Hamel** <<duhamelantoine1995@gmail.com>> (he/him)
265
- * [ak239](https://github.com/ak239) -
266
- **Aleksei Koziatinskii** <<ak239spb@gmail.com>>
267
265
  * [antsmartian](https://github.com/antsmartian) -
268
266
  **Anto Aravinth** <<anto.aravinth.cse@gmail.com>> (he/him)
269
267
  * [apapirovski](https://github.com/apapirovski) -
@@ -286,8 +284,6 @@ For information about the governance of the Node.js project, see
286
284
  **Tierney Cyren** <<hello@bnb.im>> (they/he)
287
285
  * [bnoordhuis](https://github.com/bnoordhuis) -
288
286
  **Ben Noordhuis** <<info@bnoordhuis.nl>>
289
- * [boneskull](https://github.com/boneskull) -
290
- **Christopher Hiller** <<boneskull@boneskull.com>> (he/him)
291
287
  * [BridgeAR](https://github.com/BridgeAR) -
292
288
  **Ruben Bridgewater** <<ruben@bridgewater.de>> (he/him)
293
289
  * [bzoz](https://github.com/bzoz) -
@@ -333,7 +329,7 @@ For information about the governance of the Node.js project, see
333
329
  * [HarshithaKP](https://github.com/HarshithaKP) -
334
330
  **Harshitha K P** <<harshitha014@gmail.com>> (she/her)
335
331
  * [himself65](https://github.com/himself65) -
336
- **Zeyu Yang** <<himself65@outlook.com>> (he/him)
332
+ **Zeyu "Alex" Yang** <<himself65@outlook.com>> (he/him)
337
333
  * [hiroppy](https://github.com/hiroppy) -
338
334
  **Yuta Hiroto** <<hello@hiroppy.me>> (he/him)
339
335
  * [iansu](https://github.com/iansu) -
@@ -356,12 +352,16 @@ For information about the governance of the Node.js project, see
356
352
  **Juan José Arboleda** <<soyjuanarbol@gmail.com>> (he/him)
357
353
  * [JungMinu](https://github.com/JungMinu) -
358
354
  **Minwoo Jung** <<nodecorelab@gmail.com>> (he/him)
355
+ * [kuriyosh](https://github.com/kuriyosh) -
356
+ **Yoshiki Kurihara** <<yosyos0306@gmail.com>> (he/him)
359
357
  * [legendecas](https://github.com/legendecas) -
360
358
  **Chengzhong Wu** <<legendecas@gmail.com>> (he/him)
361
359
  * [Leko](https://github.com/Leko) -
362
360
  **Shingo Inoue** <<leko.noor@gmail.com>> (he/him)
363
361
  * [linkgoron](https://github.com/linkgoron) -
364
362
  **Nitzan Uziely** <<linkgoron@gmail.com>>
363
+ * [LiviaMedeiros](https://github.com/LiviaMedeiros) -
364
+ **LiviaMedeiros** <<livia@cirno.name>>
365
365
  * [lpinca](https://github.com/lpinca) -
366
366
  **Luigi Pinca** <<luigipinca@gmail.com>> (he/him)
367
367
  * [lundibundi](https://github.com/lundibundi) -
@@ -382,8 +382,6 @@ For information about the governance of the Node.js project, see
382
382
  **Milad Fa** <<mfarazma@redhat.com>> (he/him)
383
383
  * [mildsunrise](https://github.com/mildsunrise) -
384
384
  **Alba Mendez** <<me@alba.sh>> (she/her)
385
- * [mmarchini](https://github.com/mmarchini) -
386
- **Mary Marchini** <<oss@mmarchini.me>> (she/her)
387
385
  * [mscdex](https://github.com/mscdex) -
388
386
  **Brian White** <<mscdex@mscdex.net>>
389
387
  * [MylesBorins](https://github.com/MylesBorins) -
@@ -398,6 +396,8 @@ For information about the governance of the Node.js project, see
398
396
  **Andrey Pechkurov** <<apechkurov@gmail.com>> (he/him)
399
397
  * [Qard](https://github.com/Qard) -
400
398
  **Stephen Belanger** <<admin@stephenbelanger.com>> (he/him)
399
+ * [RafaelGSS](https://github.com/RafaelGSS) -
400
+ **Rafael Gonzaga** <<rafael.nunu@hotmail.com>> (he/him)
401
401
  * [RaisinTen](https://github.com/RaisinTen) -
402
402
  **Darshan Sen** <<raisinten@gmail.com>> (he/him)
403
403
  * [rexagod](https://github.com/rexagod) -
@@ -446,8 +446,6 @@ For information about the governance of the Node.js project, see
446
446
  **Khaidi Chu** <<i@2333.moe>> (he/him)
447
447
  * [yashLadha](https://github.com/yashLadha) -
448
448
  **Yash Ladha** <<yash@yashladha.in>> (he/him)
449
- * [yosuke-furukawa](https://github.com/yosuke-furukawa) -
450
- **Yosuke Furukawa** <<yosuke.furukawa@gmail.com>>
451
449
  * [ZYSzys](https://github.com/ZYSzys) -
452
450
  **Yongsheng Zhang** <<zyszys98@gmail.com>> (he/him)
453
451
 
@@ -460,6 +458,8 @@ For information about the governance of the Node.js project, see
460
458
 
461
459
  ### Collaborator emeriti
462
460
 
461
+ * [ak239](https://github.com/ak239) -
462
+ **Aleksei Koziatinskii** <<ak239spb@gmail.com>>
463
463
  * [andrasq](https://github.com/andrasq) -
464
464
  **Andras** <<andras@kinvey.com>>
465
465
  * [AnnaMag](https://github.com/AnnaMag) -
@@ -470,6 +470,8 @@ For information about the governance of the Node.js project, see
470
470
  **Alexey Orlenko** <<eaglexrlnk@gmail.com>> (he/him)
471
471
  * [bmeurer](https://github.com/bmeurer) -
472
472
  **Benedikt Meurer** <<benedikt.meurer@gmail.com>>
473
+ * [boneskull](https://github.com/boneskull) -
474
+ **Christopher Hiller** <<boneskull@boneskull.com>> (he/him)
473
475
  * [brendanashworth](https://github.com/brendanashworth) -
474
476
  **Brendan Ashworth** <<brendan.ashworth@me.com>>
475
477
  * [calvinmetcalf](https://github.com/calvinmetcalf) -
@@ -550,6 +552,8 @@ For information about the governance of the Node.js project, see
550
552
  **Mikeal Rogers** <<mikeal.rogers@gmail.com>>
551
553
  * [misterdjules](https://github.com/misterdjules) -
552
554
  **Julien Gilli** <<jgilli@netflix.com>>
555
+ * [mmarchini](https://github.com/mmarchini) -
556
+ **Mary Marchini** <<oss@mmarchini.me>> (she/her)
553
557
  * [monsanto](https://github.com/monsanto) -
554
558
  **Christopher Monsanto** <<chris@monsan.to>>
555
559
  * [MoonBall](https://github.com/MoonBall) -
@@ -628,6 +632,8 @@ For information about the governance of the Node.js project, see
628
632
  **Yihong Wang** <<yh.wang@ibm.com>>
629
633
  * [yorkie](https://github.com/yorkie) -
630
634
  **Yorkie Liu** <<yorkiefixer@gmail.com>>
635
+ * [yosuke-furukawa](https://github.com/yosuke-furukawa) -
636
+ **Yosuke Furukawa** <<yosuke.furukawa@gmail.com>>
631
637
 
632
638
  </details>
633
639
 
@@ -671,6 +677,8 @@ Primary GPG keys for Node.js Releasers (some Releasers sign with subkeys):
671
677
  `74F12602B6F1C4E913FAA37AD3A89613643B6201`
672
678
  * **James M Snell** <<jasnell@keybase.io>>
673
679
  `71DCFD284A79C3B38668286BC97EC7A07EDE3FC1`
680
+ * **Juan José Arboleda** <<soyjuanarbol@gmail.com>>
681
+ `61FC681DFB92A079F1685E77973F295594EC4689`
674
682
  * **Michaël Zasso** <<targos@protonmail.com>>
675
683
  `8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600`
676
684
  * **Myles Borins** <<myles.borins@gmail.com>>
@@ -695,6 +703,7 @@ gpg --keyserver hkps://keys.openpgp.org --recv-keys 141F07595B7B3FFE74309A937405
695
703
  gpg --keyserver hkps://keys.openpgp.org --recv-keys 94AE36675C464D64BAFA68DD7434390BDBE9B9C5
696
704
  gpg --keyserver hkps://keys.openpgp.org --recv-keys 74F12602B6F1C4E913FAA37AD3A89613643B6201
697
705
  gpg --keyserver hkps://keys.openpgp.org --recv-keys 71DCFD284A79C3B38668286BC97EC7A07EDE3FC1
706
+ gpg --keyserver hkps://keys.openpgp.org --recv-keys 61FC681DFB92A079F1685E77973F295594EC4689
698
707
  gpg --keyserver hkps://keys.openpgp.org --recv-keys 8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600
699
708
  gpg --keyserver hkps://keys.openpgp.org --recv-keys C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8
700
709
  gpg --keyserver hkps://keys.openpgp.org --recv-keys C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C
package/bin/node CHANGED
Binary file
@@ -36,7 +36,7 @@
36
36
 
37
37
  # Reset this number to 0 on major V8 upgrades.
38
38
  # Increment by one for each non-official patch applied to deps/v8.
39
- 'v8_embedder_string': '-node.16',
39
+ 'v8_embedder_string': '-node.13',
40
40
 
41
41
  ##### V8 defaults for Node.js #####
42
42
 
@@ -501,7 +501,7 @@
501
501
  'GCC_ENABLE_CPP_RTTI': 'NO', # -fno-rtti
502
502
  'GCC_ENABLE_PASCAL_STRINGS': 'NO', # No -mpascal-strings
503
503
  'PREBINDING': 'NO', # No -Wl,-prebind
504
- 'MACOSX_DEPLOYMENT_TARGET': '10.13', # -mmacosx-version-min=10.13
504
+ 'MACOSX_DEPLOYMENT_TARGET': '10.15', # -mmacosx-version-min=10.15
505
505
  'USE_HEADERMAP': 'NO',
506
506
  'OTHER_CFLAGS': [
507
507
  '-fno-strict-aliasing',
@@ -12,12 +12,12 @@
12
12
  'force_dynamic_crt': 0,
13
13
  'gas_version': '2.30',
14
14
  'host_arch': 'arm64',
15
- 'icu_data_in': '../../deps/icu-tmp/icudt70l.dat',
15
+ 'icu_data_in': '../../deps/icu-tmp/icudt71l.dat',
16
16
  'icu_endianness': 'l',
17
17
  'icu_gyp_path': 'tools/icu/icu-generic.gyp',
18
18
  'icu_path': 'deps/icu-small',
19
19
  'icu_small': 'false',
20
- 'icu_ver_major': '70',
20
+ 'icu_ver_major': '71',
21
21
  'is_debug': 0,
22
22
  'llvm_version': '0.0',
23
23
  'napi_build_version': '8',
@@ -38,6 +38,7 @@
38
38
  'lib/buffer.js',
39
39
  'lib/util.js',
40
40
  'lib/trace_events.js',
41
+ 'lib/test.js',
41
42
  'lib/dgram.js',
42
43
  'lib/_http_incoming.js',
43
44
  'lib/url.js',
@@ -125,6 +126,7 @@
125
126
  'lib/internal/cli_table.js',
126
127
  'lib/internal/worker.js',
127
128
  'lib/internal/fixed_queue.js',
129
+ 'lib/internal/wasm_web_api.js',
128
130
  'lib/internal/dtrace.js',
129
131
  'lib/internal/watchdog.js',
130
132
  'lib/internal/constants.js',
@@ -166,7 +168,6 @@
166
168
  'lib/internal/http2/util.js',
167
169
  'lib/internal/tls/secure-pair.js',
168
170
  'lib/internal/tls/secure-context.js',
169
- 'lib/internal/tls/parse-cert-string.js',
170
171
  'lib/internal/readline/promises.js',
171
172
  'lib/internal/readline/emitKeypressEvents.js',
172
173
  'lib/internal/readline/interface.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',
@@ -238,6 +240,7 @@
238
240
  'lib/internal/bootstrap/environment.js',
239
241
  'lib/internal/bootstrap/pre_execution.js',
240
242
  'lib/internal/bootstrap/loaders.js',
243
+ 'lib/internal/bootstrap/browser.js',
241
244
  'lib/internal/bootstrap/node.js',
242
245
  'lib/internal/bootstrap/switches/is_main_thread.js',
243
246
  'lib/internal/bootstrap/switches/does_own_process_state.js',
@@ -266,6 +269,7 @@
266
269
  'lib/internal/main/run_main_module.js',
267
270
  'lib/internal/main/check_syntax.js',
268
271
  'lib/internal/main/worker_thread.js',
272
+ 'lib/internal/main/test_runner.js',
269
273
  'lib/internal/main/repl.js',
270
274
  'lib/internal/main/inspect.js',
271
275
  'lib/internal/main/eval_string.js',
@@ -280,6 +284,10 @@
280
284
  'lib/internal/util/debuglog.js',
281
285
  'lib/internal/worker/io.js',
282
286
  'lib/internal/worker/js_transferable.js',
287
+ 'lib/internal/test_runner/test.js',
288
+ 'lib/internal/test_runner/tap_stream.js',
289
+ 'lib/internal/test_runner/utils.js',
290
+ 'lib/internal/test_runner/harness.js',
283
291
  'lib/internal/fs/promises.js',
284
292
  'lib/internal/fs/dir.js',
285
293
  'lib/internal/fs/streams.js',
@@ -301,7 +309,7 @@
301
309
  'lib/stream/web.js',
302
310
  'lib/util/types.js',
303
311
  'lib/fs/promises.js'],
304
- 'node_module_version': 102,
312
+ 'node_module_version': 108,
305
313
  'node_no_browser_globals': 'false',
306
314
  'node_prefix': '/',
307
315
  'node_release_urlbase': 'https://nodejs.org/download/release/',
@@ -330,16 +338,18 @@
330
338
  'openssl_is_fips': 'false',
331
339
  'openssl_quic': 'true',
332
340
  'ossfuzz': 'false',
333
- 'shlib_suffix': 'so.102',
341
+ 'shlib_suffix': 'so.108',
334
342
  'target_arch': 'arm64',
335
343
  'v8_enable_31bit_smis_on_64bit_arch': 0,
336
344
  'v8_enable_gdbjit': 0,
337
345
  'v8_enable_hugepage': 0,
338
346
  'v8_enable_i18n_support': 1,
339
347
  'v8_enable_inspector': 1,
348
+ 'v8_enable_javascript_promise_hooks': 1,
340
349
  'v8_enable_lite_mode': 0,
341
350
  'v8_enable_object_print': 1,
342
351
  'v8_enable_pointer_compression': 0,
352
+ 'v8_enable_shared_ro_heap': 1,
343
353
  'v8_enable_webassembly': 1,
344
354
  'v8_no_strict_aliasing': 1,
345
355
  'v8_optimized_debug': 1,