node-linux-armv7l 17.7.2 → 18.1.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 (303) hide show
  1. package/CHANGELOG.md +320 -1347
  2. package/LICENSE +111 -9
  3. package/README.md +25 -27
  4. package/bin/node +0 -0
  5. package/include/node/common.gypi +7 -3
  6. package/include/node/config.gypi +15 -10
  7. package/include/node/js_native_api.h +35 -46
  8. package/include/node/js_native_api_types.h +3 -6
  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 +7 -3
  12. package/include/node/node_api.h +70 -60
  13. package/include/node/node_api_types.h +1 -2
  14. package/include/node/node_version.h +4 -4
  15. package/include/node/openssl/asn1_asm.h +0 -6
  16. package/include/node/openssl/asn1_no-asm.h +0 -6
  17. package/include/node/openssl/asn1t_asm.h +0 -6
  18. package/include/node/openssl/asn1t_no-asm.h +0 -6
  19. package/include/node/openssl/bio_asm.h +0 -6
  20. package/include/node/openssl/bio_no-asm.h +0 -6
  21. package/include/node/openssl/bn_conf_asm.h +0 -6
  22. package/include/node/openssl/bn_conf_no-asm.h +0 -6
  23. package/include/node/openssl/cmp_asm.h +0 -6
  24. package/include/node/openssl/cmp_no-asm.h +0 -6
  25. package/include/node/openssl/cms_asm.h +0 -6
  26. package/include/node/openssl/cms_no-asm.h +0 -6
  27. package/include/node/openssl/conf_asm.h +0 -6
  28. package/include/node/openssl/conf_no-asm.h +0 -6
  29. package/include/node/openssl/configuration_asm.h +0 -6
  30. package/include/node/openssl/configuration_no-asm.h +0 -6
  31. package/include/node/openssl/crmf_asm.h +0 -6
  32. package/include/node/openssl/crmf_no-asm.h +0 -6
  33. package/include/node/openssl/crypto_asm.h +0 -6
  34. package/include/node/openssl/crypto_no-asm.h +0 -6
  35. package/include/node/openssl/ct_asm.h +0 -6
  36. package/include/node/openssl/ct_no-asm.h +0 -6
  37. package/include/node/openssl/dso_conf_asm.h +0 -6
  38. package/include/node/openssl/dso_conf_no-asm.h +0 -6
  39. package/include/node/openssl/err_asm.h +0 -6
  40. package/include/node/openssl/err_no-asm.h +0 -6
  41. package/include/node/openssl/ess_asm.h +0 -6
  42. package/include/node/openssl/ess_no-asm.h +0 -6
  43. package/include/node/openssl/fipskey_asm.h +0 -6
  44. package/include/node/openssl/fipskey_no-asm.h +0 -6
  45. package/include/node/openssl/lhash_asm.h +0 -6
  46. package/include/node/openssl/lhash_no-asm.h +0 -6
  47. package/include/node/openssl/ocsp_asm.h +0 -6
  48. package/include/node/openssl/ocsp_no-asm.h +0 -6
  49. package/include/node/openssl/opensslv_asm.h +0 -6
  50. package/include/node/openssl/opensslv_no-asm.h +0 -6
  51. package/include/node/openssl/pkcs12_asm.h +0 -6
  52. package/include/node/openssl/pkcs12_no-asm.h +0 -6
  53. package/include/node/openssl/pkcs7_asm.h +0 -6
  54. package/include/node/openssl/pkcs7_no-asm.h +0 -6
  55. package/include/node/openssl/safestack_asm.h +0 -6
  56. package/include/node/openssl/safestack_no-asm.h +0 -6
  57. package/include/node/openssl/srp_asm.h +0 -6
  58. package/include/node/openssl/srp_no-asm.h +0 -6
  59. package/include/node/openssl/ssl_asm.h +0 -6
  60. package/include/node/openssl/ssl_no-asm.h +0 -6
  61. package/include/node/openssl/ui_asm.h +0 -6
  62. package/include/node/openssl/ui_no-asm.h +0 -6
  63. package/include/node/openssl/x509_asm.h +0 -6
  64. package/include/node/openssl/x509_no-asm.h +0 -6
  65. package/include/node/openssl/x509_vfy_asm.h +0 -6
  66. package/include/node/openssl/x509_vfy_no-asm.h +0 -6
  67. package/include/node/openssl/x509v3_asm.h +0 -6
  68. package/include/node/openssl/x509v3_no-asm.h +0 -6
  69. package/include/node/v8-array-buffer.h +2 -2
  70. package/include/node/v8-callbacks.h +26 -6
  71. package/include/node/v8-context.h +3 -14
  72. package/include/node/v8-data.h +15 -0
  73. package/include/node/v8-debug.h +21 -4
  74. package/include/node/v8-embedder-heap.h +10 -30
  75. package/include/node/v8-embedder-state-scope.h +51 -0
  76. package/include/node/v8-exception.h +0 -7
  77. package/include/node/v8-function.h +3 -0
  78. package/include/node/v8-initialization.h +64 -31
  79. package/include/node/v8-internal.h +189 -102
  80. package/include/node/v8-isolate.h +49 -2
  81. package/include/node/v8-local-handle.h +0 -4
  82. package/include/node/v8-locker.h +2 -1
  83. package/include/node/v8-message.h +19 -44
  84. package/include/node/v8-object.h +11 -6
  85. package/include/node/v8-platform.h +365 -6
  86. package/include/node/v8-primitive.h +14 -6
  87. package/include/node/v8-profiler.h +78 -2
  88. package/include/node/v8-script.h +27 -51
  89. package/include/node/v8-snapshot.h +0 -2
  90. package/include/node/v8-statistics.h +2 -0
  91. package/include/node/v8-template.h +31 -4
  92. package/include/node/v8-traced-handle.h +39 -224
  93. package/include/node/v8-unwinder.h +10 -7
  94. package/include/node/v8-value-serializer.h +32 -2
  95. package/include/node/v8-version.h +4 -4
  96. package/include/node/v8-wasm.h +13 -1
  97. package/include/node/v8-weak-callback-info.h +20 -6
  98. package/include/node/v8.h +0 -1
  99. package/include/node/v8config.h +56 -11
  100. package/package.json +1 -1
  101. package/share/doc/node/gdbinit +14 -6
  102. package/share/man/man1/node.1 +11 -4
  103. package/include/node/openssl/archs/BSD-x86/asm/crypto/include/internal/bn_conf.h +0 -28
  104. package/include/node/openssl/archs/BSD-x86/asm/crypto/include/internal/dso_conf.h +0 -17
  105. package/include/node/openssl/archs/BSD-x86/asm/include/openssl/opensslconf.h +0 -197
  106. package/include/node/openssl/archs/BSD-x86/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  107. package/include/node/openssl/archs/BSD-x86/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  108. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/opensslconf.h +0 -197
  109. package/include/node/openssl/archs/BSD-x86/no-asm/crypto/include/internal/bn_conf.h +0 -28
  110. package/include/node/openssl/archs/BSD-x86/no-asm/crypto/include/internal/dso_conf.h +0 -17
  111. package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/opensslconf.h +0 -200
  112. package/include/node/openssl/archs/BSD-x86_64/asm/crypto/include/internal/bn_conf.h +0 -28
  113. package/include/node/openssl/archs/BSD-x86_64/asm/crypto/include/internal/dso_conf.h +0 -17
  114. package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/opensslconf.h +0 -197
  115. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  116. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  117. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/opensslconf.h +0 -197
  118. package/include/node/openssl/archs/BSD-x86_64/no-asm/crypto/include/internal/bn_conf.h +0 -28
  119. package/include/node/openssl/archs/BSD-x86_64/no-asm/crypto/include/internal/dso_conf.h +0 -17
  120. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/opensslconf.h +0 -200
  121. package/include/node/openssl/archs/VC-WIN32/asm/crypto/include/internal/bn_conf.h +0 -28
  122. package/include/node/openssl/archs/VC-WIN32/asm/crypto/include/internal/dso_conf.h +0 -16
  123. package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/opensslconf.h +0 -203
  124. package/include/node/openssl/archs/VC-WIN32/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  125. package/include/node/openssl/archs/VC-WIN32/asm_avx2/crypto/include/internal/dso_conf.h +0 -16
  126. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/opensslconf.h +0 -203
  127. package/include/node/openssl/archs/VC-WIN32/no-asm/crypto/include/internal/bn_conf.h +0 -28
  128. package/include/node/openssl/archs/VC-WIN32/no-asm/crypto/include/internal/dso_conf.h +0 -16
  129. package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/opensslconf.h +0 -206
  130. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/crypto/include/internal/bn_conf.h +0 -28
  131. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/crypto/include/internal/dso_conf.h +0 -16
  132. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/opensslconf.h +0 -203
  133. package/include/node/openssl/archs/VC-WIN64A/asm/crypto/include/internal/bn_conf.h +0 -28
  134. package/include/node/openssl/archs/VC-WIN64A/asm/crypto/include/internal/dso_conf.h +0 -16
  135. package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/opensslconf.h +0 -203
  136. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  137. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/crypto/include/internal/dso_conf.h +0 -16
  138. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/opensslconf.h +0 -203
  139. package/include/node/openssl/archs/VC-WIN64A/no-asm/crypto/include/internal/bn_conf.h +0 -28
  140. package/include/node/openssl/archs/VC-WIN64A/no-asm/crypto/include/internal/dso_conf.h +0 -16
  141. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/opensslconf.h +0 -206
  142. package/include/node/openssl/archs/aix-gcc/asm/crypto/include/internal/bn_conf.h +0 -28
  143. package/include/node/openssl/archs/aix-gcc/asm/crypto/include/internal/dso_conf.h +0 -17
  144. package/include/node/openssl/archs/aix-gcc/asm/include/openssl/opensslconf.h +0 -203
  145. package/include/node/openssl/archs/aix-gcc/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  146. package/include/node/openssl/archs/aix-gcc/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  147. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/opensslconf.h +0 -203
  148. package/include/node/openssl/archs/aix-gcc/no-asm/crypto/include/internal/bn_conf.h +0 -28
  149. package/include/node/openssl/archs/aix-gcc/no-asm/crypto/include/internal/dso_conf.h +0 -17
  150. package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/opensslconf.h +0 -206
  151. package/include/node/openssl/archs/aix64-gcc/asm/crypto/buildinf.h +0 -38
  152. package/include/node/openssl/archs/aix64-gcc/asm/crypto/include/internal/bn_conf.h +0 -28
  153. package/include/node/openssl/archs/aix64-gcc/asm/crypto/include/internal/dso_conf.h +0 -17
  154. package/include/node/openssl/archs/aix64-gcc/asm/include/openssl/opensslconf.h +0 -203
  155. package/include/node/openssl/archs/aix64-gcc/asm/include/progs.h +0 -507
  156. package/include/node/openssl/archs/aix64-gcc/asm_avx2/crypto/buildinf.h +0 -39
  157. package/include/node/openssl/archs/aix64-gcc/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  158. package/include/node/openssl/archs/aix64-gcc/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  159. package/include/node/openssl/archs/aix64-gcc/asm_avx2/include/openssl/opensslconf.h +0 -203
  160. package/include/node/openssl/archs/aix64-gcc/asm_avx2/include/progs.h +0 -507
  161. package/include/node/openssl/archs/aix64-gcc/no-asm/crypto/buildinf.h +0 -27
  162. package/include/node/openssl/archs/aix64-gcc/no-asm/crypto/include/internal/bn_conf.h +0 -28
  163. package/include/node/openssl/archs/aix64-gcc/no-asm/crypto/include/internal/dso_conf.h +0 -17
  164. package/include/node/openssl/archs/aix64-gcc/no-asm/include/openssl/opensslconf.h +0 -206
  165. package/include/node/openssl/archs/aix64-gcc/no-asm/include/progs.h +0 -507
  166. package/include/node/openssl/archs/darwin-i386-cc/asm/crypto/include/internal/bn_conf.h +0 -28
  167. package/include/node/openssl/archs/darwin-i386-cc/asm/crypto/include/internal/dso_conf.h +0 -17
  168. package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/opensslconf.h +0 -203
  169. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  170. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  171. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/opensslconf.h +0 -203
  172. package/include/node/openssl/archs/darwin-i386-cc/no-asm/crypto/include/internal/bn_conf.h +0 -28
  173. package/include/node/openssl/archs/darwin-i386-cc/no-asm/crypto/include/internal/dso_conf.h +0 -17
  174. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/opensslconf.h +0 -206
  175. package/include/node/openssl/archs/darwin64-arm64-cc/asm/crypto/include/internal/bn_conf.h +0 -28
  176. package/include/node/openssl/archs/darwin64-arm64-cc/asm/crypto/include/internal/dso_conf.h +0 -17
  177. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/opensslconf.h +0 -203
  178. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  179. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  180. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/opensslconf.h +0 -203
  181. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/crypto/include/internal/bn_conf.h +0 -28
  182. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/crypto/include/internal/dso_conf.h +0 -17
  183. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/opensslconf.h +0 -206
  184. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/crypto/include/internal/bn_conf.h +0 -28
  185. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/crypto/include/internal/dso_conf.h +0 -17
  186. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/opensslconf.h +0 -203
  187. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  188. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  189. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/opensslconf.h +0 -203
  190. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/crypto/include/internal/bn_conf.h +0 -28
  191. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/crypto/include/internal/dso_conf.h +0 -17
  192. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/opensslconf.h +0 -206
  193. package/include/node/openssl/archs/linux-aarch64/asm/crypto/include/internal/bn_conf.h +0 -28
  194. package/include/node/openssl/archs/linux-aarch64/asm/crypto/include/internal/dso_conf.h +0 -17
  195. package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/opensslconf.h +0 -200
  196. package/include/node/openssl/archs/linux-aarch64/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  197. package/include/node/openssl/archs/linux-aarch64/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  198. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/opensslconf.h +0 -200
  199. package/include/node/openssl/archs/linux-aarch64/no-asm/crypto/include/internal/bn_conf.h +0 -28
  200. package/include/node/openssl/archs/linux-aarch64/no-asm/crypto/include/internal/dso_conf.h +0 -17
  201. package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/opensslconf.h +0 -203
  202. package/include/node/openssl/archs/linux-armv4/asm/crypto/include/internal/bn_conf.h +0 -28
  203. package/include/node/openssl/archs/linux-armv4/asm/crypto/include/internal/dso_conf.h +0 -17
  204. package/include/node/openssl/archs/linux-armv4/asm/include/openssl/opensslconf.h +0 -200
  205. package/include/node/openssl/archs/linux-armv4/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  206. package/include/node/openssl/archs/linux-armv4/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  207. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/opensslconf.h +0 -200
  208. package/include/node/openssl/archs/linux-armv4/no-asm/crypto/include/internal/bn_conf.h +0 -28
  209. package/include/node/openssl/archs/linux-armv4/no-asm/crypto/include/internal/dso_conf.h +0 -17
  210. package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/opensslconf.h +0 -203
  211. package/include/node/openssl/archs/linux-elf/asm/crypto/include/internal/bn_conf.h +0 -28
  212. package/include/node/openssl/archs/linux-elf/asm/crypto/include/internal/dso_conf.h +0 -17
  213. package/include/node/openssl/archs/linux-elf/asm/include/openssl/opensslconf.h +0 -200
  214. package/include/node/openssl/archs/linux-elf/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  215. package/include/node/openssl/archs/linux-elf/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  216. package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/opensslconf.h +0 -200
  217. package/include/node/openssl/archs/linux-elf/no-asm/crypto/include/internal/bn_conf.h +0 -28
  218. package/include/node/openssl/archs/linux-elf/no-asm/crypto/include/internal/dso_conf.h +0 -17
  219. package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/opensslconf.h +0 -203
  220. package/include/node/openssl/archs/linux-ppc/asm/crypto/include/internal/bn_conf.h +0 -28
  221. package/include/node/openssl/archs/linux-ppc/asm/crypto/include/internal/dso_conf.h +0 -17
  222. package/include/node/openssl/archs/linux-ppc/asm/include/openssl/opensslconf.h +0 -200
  223. package/include/node/openssl/archs/linux-ppc/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  224. package/include/node/openssl/archs/linux-ppc/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  225. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/opensslconf.h +0 -200
  226. package/include/node/openssl/archs/linux-ppc/no-asm/crypto/include/internal/bn_conf.h +0 -28
  227. package/include/node/openssl/archs/linux-ppc/no-asm/crypto/include/internal/dso_conf.h +0 -17
  228. package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/opensslconf.h +0 -203
  229. package/include/node/openssl/archs/linux-ppc64/asm/crypto/include/internal/bn_conf.h +0 -28
  230. package/include/node/openssl/archs/linux-ppc64/asm/crypto/include/internal/dso_conf.h +0 -17
  231. package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/opensslconf.h +0 -200
  232. package/include/node/openssl/archs/linux-ppc64/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  233. package/include/node/openssl/archs/linux-ppc64/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  234. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/opensslconf.h +0 -200
  235. package/include/node/openssl/archs/linux-ppc64/no-asm/crypto/include/internal/bn_conf.h +0 -28
  236. package/include/node/openssl/archs/linux-ppc64/no-asm/crypto/include/internal/dso_conf.h +0 -17
  237. package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/opensslconf.h +0 -203
  238. package/include/node/openssl/archs/linux-ppc64le/asm/crypto/include/internal/bn_conf.h +0 -28
  239. package/include/node/openssl/archs/linux-ppc64le/asm/crypto/include/internal/dso_conf.h +0 -17
  240. package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/opensslconf.h +0 -200
  241. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  242. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  243. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/opensslconf.h +0 -200
  244. package/include/node/openssl/archs/linux-ppc64le/no-asm/crypto/include/internal/bn_conf.h +0 -28
  245. package/include/node/openssl/archs/linux-ppc64le/no-asm/crypto/include/internal/dso_conf.h +0 -17
  246. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/opensslconf.h +0 -203
  247. package/include/node/openssl/archs/linux-x86_64/asm/crypto/include/internal/bn_conf.h +0 -28
  248. package/include/node/openssl/archs/linux-x86_64/asm/crypto/include/internal/dso_conf.h +0 -17
  249. package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/opensslconf.h +0 -200
  250. package/include/node/openssl/archs/linux-x86_64/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  251. package/include/node/openssl/archs/linux-x86_64/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  252. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/opensslconf.h +0 -200
  253. package/include/node/openssl/archs/linux-x86_64/no-asm/crypto/include/internal/bn_conf.h +0 -28
  254. package/include/node/openssl/archs/linux-x86_64/no-asm/crypto/include/internal/dso_conf.h +0 -17
  255. package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/opensslconf.h +0 -203
  256. package/include/node/openssl/archs/linux32-s390x/asm/crypto/include/internal/bn_conf.h +0 -28
  257. package/include/node/openssl/archs/linux32-s390x/asm/crypto/include/internal/dso_conf.h +0 -17
  258. package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/opensslconf.h +0 -200
  259. package/include/node/openssl/archs/linux32-s390x/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  260. package/include/node/openssl/archs/linux32-s390x/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  261. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/opensslconf.h +0 -200
  262. package/include/node/openssl/archs/linux32-s390x/no-asm/crypto/include/internal/bn_conf.h +0 -28
  263. package/include/node/openssl/archs/linux32-s390x/no-asm/crypto/include/internal/dso_conf.h +0 -17
  264. package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/opensslconf.h +0 -203
  265. package/include/node/openssl/archs/linux64-mips64/asm/crypto/include/internal/bn_conf.h +0 -28
  266. package/include/node/openssl/archs/linux64-mips64/asm/crypto/include/internal/dso_conf.h +0 -17
  267. package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/opensslconf.h +0 -200
  268. package/include/node/openssl/archs/linux64-mips64/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  269. package/include/node/openssl/archs/linux64-mips64/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  270. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/opensslconf.h +0 -200
  271. package/include/node/openssl/archs/linux64-mips64/no-asm/crypto/include/internal/bn_conf.h +0 -28
  272. package/include/node/openssl/archs/linux64-mips64/no-asm/crypto/include/internal/dso_conf.h +0 -17
  273. package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/opensslconf.h +0 -203
  274. package/include/node/openssl/archs/linux64-riscv64/no-asm/crypto/include/internal/bn_conf.h +0 -28
  275. package/include/node/openssl/archs/linux64-riscv64/no-asm/crypto/include/internal/dso_conf.h +0 -17
  276. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/opensslconf.h +0 -203
  277. package/include/node/openssl/archs/linux64-s390x/asm/crypto/include/internal/bn_conf.h +0 -28
  278. package/include/node/openssl/archs/linux64-s390x/asm/crypto/include/internal/dso_conf.h +0 -17
  279. package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/opensslconf.h +0 -200
  280. package/include/node/openssl/archs/linux64-s390x/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  281. package/include/node/openssl/archs/linux64-s390x/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  282. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/opensslconf.h +0 -200
  283. package/include/node/openssl/archs/linux64-s390x/no-asm/crypto/include/internal/bn_conf.h +0 -28
  284. package/include/node/openssl/archs/linux64-s390x/no-asm/crypto/include/internal/dso_conf.h +0 -17
  285. package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/opensslconf.h +0 -203
  286. package/include/node/openssl/archs/solaris-x86-gcc/asm/crypto/include/internal/bn_conf.h +0 -28
  287. package/include/node/openssl/archs/solaris-x86-gcc/asm/crypto/include/internal/dso_conf.h +0 -17
  288. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/opensslconf.h +0 -200
  289. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  290. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  291. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/opensslconf.h +0 -200
  292. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/crypto/include/internal/bn_conf.h +0 -28
  293. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/crypto/include/internal/dso_conf.h +0 -17
  294. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/opensslconf.h +0 -203
  295. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/crypto/include/internal/bn_conf.h +0 -28
  296. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/crypto/include/internal/dso_conf.h +0 -17
  297. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/opensslconf.h +0 -200
  298. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  299. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  300. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/opensslconf.h +0 -200
  301. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/crypto/include/internal/bn_conf.h +0 -28
  302. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/crypto/include/internal/dso_conf.h +0 -17
  303. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/opensslconf.h +0 -203
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
@@ -1,14 +1,4 @@
1
- <!--lint disable no-literal-urls-->
2
-
3
- <p align="center">
4
- <a href="https://nodejs.org/">
5
- <img
6
- alt="Node.js"
7
- src="https://nodejs.org/static/images/logo-light.svg"
8
- width="400"
9
- />
10
- </a>
11
- </p>
1
+ # Node.js
12
2
 
13
3
  Node.js is an open-source, cross-platform, JavaScript runtime environment.
14
4
 
@@ -19,7 +9,7 @@ The Node.js project uses an [open governance model](./GOVERNANCE.md). The
19
9
 
20
10
  **This project has a [Code of Conduct][].**
21
11
 
22
- # Table of contents
12
+ ## Table of contents
23
13
 
24
14
  * [Support](#support)
25
15
  * [Release types](#release-types)
@@ -61,7 +51,7 @@ Looking for help? Check out the
61
51
  * **Nightly**: Code from the Current branch built every 24-hours when there are
62
52
  changes. Use with caution.
63
53
 
64
- Current and LTS releases follow [Semantic Versioning](https://semver.org). A
54
+ Current and LTS releases follow [semantic versioning](https://semver.org). A
65
55
  member of the Release Team [signs](#release-keys) each Current and LTS release.
66
56
  For more information, see the
67
57
  [Release README](https://github.com/nodejs/Release#readme).
@@ -123,7 +113,7 @@ import the keys:
123
113
  $ gpg --keyserver hkps://keys.openpgp.org --recv-keys DD8F2338BAE7501E3DD5AC78C273792F7D83545D
124
114
  ```
125
115
 
126
- See the bottom of this README for a full script to import active release keys.
116
+ See [Release keys](#release-keys) for a script to import active release keys.
127
117
 
128
118
  Next, download the `SHASUMS256.txt.sig` for the release:
129
119
 
@@ -190,8 +180,6 @@ For information about the governance of the Node.js project, see
190
180
  **Matteo Collina** <<matteo.collina@gmail.com>> (he/him)
191
181
  * [mhdawson](https://github.com/mhdawson) -
192
182
  **Michael Dawson** <<midawson@redhat.com>> (he/him)
193
- * [mmarchini](https://github.com/mmarchini) -
194
- **Mary Marchini** <<oss@mmarchini.me>> (she/her)
195
183
  * [MylesBorins](https://github.com/MylesBorins) -
196
184
  **Myles Borins** <<myles.borins@gmail.com>> (he/him)
197
185
  * [RaisinTen](https://github.com/RaisinTen) -
@@ -237,6 +225,8 @@ For information about the governance of the Node.js project, see
237
225
  **Isaac Z. Schlueter** <<i@izs.me>>
238
226
  * [joshgav](https://github.com/joshgav) -
239
227
  **Josh Gavant** <<josh.gavant@outlook.com>>
228
+ * [mmarchini](https://github.com/mmarchini) -
229
+ **Mary Marchini** <<oss@mmarchini.me>> (she/her)
240
230
  * [mscdex](https://github.com/mscdex) -
241
231
  **Brian White** <<mscdex@mscdex.net>>
242
232
  * [nebrius](https://github.com/nebrius) -
@@ -272,8 +262,6 @@ For information about the governance of the Node.js project, see
272
262
  **Anna Henningsen** <<anna@addaleax.net>> (she/her)
273
263
  * [aduh95](https://github.com/aduh95) -
274
264
  **Antoine du Hamel** <<duhamelantoine1995@gmail.com>> (he/him)
275
- * [ak239](https://github.com/ak239) -
276
- **Aleksei Koziatinskii** <<ak239spb@gmail.com>>
277
265
  * [antsmartian](https://github.com/antsmartian) -
278
266
  **Anto Aravinth** <<anto.aravinth.cse@gmail.com>> (he/him)
279
267
  * [apapirovski](https://github.com/apapirovski) -
@@ -296,8 +284,6 @@ For information about the governance of the Node.js project, see
296
284
  **Tierney Cyren** <<hello@bnb.im>> (they/he)
297
285
  * [bnoordhuis](https://github.com/bnoordhuis) -
298
286
  **Ben Noordhuis** <<info@bnoordhuis.nl>>
299
- * [boneskull](https://github.com/boneskull) -
300
- **Christopher Hiller** <<boneskull@boneskull.com>> (he/him)
301
287
  * [BridgeAR](https://github.com/BridgeAR) -
302
288
  **Ruben Bridgewater** <<ruben@bridgewater.de>> (he/him)
303
289
  * [bzoz](https://github.com/bzoz) -
@@ -342,8 +328,6 @@ For information about the governance of the Node.js project, see
342
328
  **Guy Bedford** <<guybedford@gmail.com>> (he/him)
343
329
  * [HarshithaKP](https://github.com/HarshithaKP) -
344
330
  **Harshitha K P** <<harshitha014@gmail.com>> (she/her)
345
- * [hashseed](https://github.com/hashseed) -
346
- **Yang Guo** <<yangguo@chromium.org>> (he/him)
347
331
  * [himself65](https://github.com/himself65) -
348
332
  **Zeyu Yang** <<himself65@outlook.com>> (he/him)
349
333
  * [hiroppy](https://github.com/hiroppy) -
@@ -368,6 +352,8 @@ For information about the governance of the Node.js project, see
368
352
  **Juan José Arboleda** <<soyjuanarbol@gmail.com>> (he/him)
369
353
  * [JungMinu](https://github.com/JungMinu) -
370
354
  **Minwoo Jung** <<nodecorelab@gmail.com>> (he/him)
355
+ * [kuriyosh](https://github.com/kuriyosh) -
356
+ **Yoshiki Kurihara** <<yosyos0306@gmail.com>> (he/him)
371
357
  * [legendecas](https://github.com/legendecas) -
372
358
  **Chengzhong Wu** <<legendecas@gmail.com>> (he/him)
373
359
  * [Leko](https://github.com/Leko) -
@@ -384,6 +370,8 @@ For information about the governance of the Node.js project, see
384
370
  **Akhil Marsonya** <<akhil.marsonya27@gmail.com>> (he/him)
385
371
  * [mcollina](https://github.com/mcollina) -
386
372
  **Matteo Collina** <<matteo.collina@gmail.com>> (he/him)
373
+ * [meixg](https://github.com/meixg) -
374
+ **Xuguang Mei** <<meixuguang@gmail.com>> (he/him)
387
375
  * [Mesteery](https://github.com/Mesteery) -
388
376
  **Mestery** <<mestery@protonmail.com>> (he/him)
389
377
  * [mhdawson](https://github.com/mhdawson) -
@@ -392,8 +380,6 @@ For information about the governance of the Node.js project, see
392
380
  **Milad Fa** <<mfarazma@redhat.com>> (he/him)
393
381
  * [mildsunrise](https://github.com/mildsunrise) -
394
382
  **Alba Mendez** <<me@alba.sh>> (she/her)
395
- * [mmarchini](https://github.com/mmarchini) -
396
- **Mary Marchini** <<oss@mmarchini.me>> (she/her)
397
383
  * [mscdex](https://github.com/mscdex) -
398
384
  **Brian White** <<mscdex@mscdex.net>>
399
385
  * [MylesBorins](https://github.com/MylesBorins) -
@@ -408,6 +394,8 @@ For information about the governance of the Node.js project, see
408
394
  **Andrey Pechkurov** <<apechkurov@gmail.com>> (he/him)
409
395
  * [Qard](https://github.com/Qard) -
410
396
  **Stephen Belanger** <<admin@stephenbelanger.com>> (he/him)
397
+ * [RafaelGSS](https://github.com/RafaelGSS) -
398
+ **Rafael Gonzaga** <<rafael.nunu@hotmail.com>> (he/him)
411
399
  * [RaisinTen](https://github.com/RaisinTen) -
412
400
  **Darshan Sen** <<raisinten@gmail.com>> (he/him)
413
401
  * [rexagod](https://github.com/rexagod) -
@@ -428,6 +416,8 @@ For information about the governance of the Node.js project, see
428
416
  **Santiago Gimeno** <<santiago.gimeno@gmail.com>>
429
417
  * [shisama](https://github.com/shisama) -
430
418
  **Masashi Hirano** <<shisama07@gmail.com>> (he/him)
419
+ * [ShogunPanda](https://github.com/ShogunPanda) -
420
+ **Paolo Insogna** <<paolo@cowtech.it>> (he/him)
431
421
  * [srl295](https://github.com/srl295) -
432
422
  **Steven R Loomis** <<srloomis@us.ibm.com>>
433
423
  * [starkwang](https://github.com/starkwang) -
@@ -468,6 +458,8 @@ For information about the governance of the Node.js project, see
468
458
 
469
459
  ### Collaborator emeriti
470
460
 
461
+ * [ak239](https://github.com/ak239) -
462
+ **Aleksei Koziatinskii** <<ak239spb@gmail.com>>
471
463
  * [andrasq](https://github.com/andrasq) -
472
464
  **Andras** <<andras@kinvey.com>>
473
465
  * [AnnaMag](https://github.com/AnnaMag) -
@@ -478,6 +470,8 @@ For information about the governance of the Node.js project, see
478
470
  **Alexey Orlenko** <<eaglexrlnk@gmail.com>> (he/him)
479
471
  * [bmeurer](https://github.com/bmeurer) -
480
472
  **Benedikt Meurer** <<benedikt.meurer@gmail.com>>
473
+ * [boneskull](https://github.com/boneskull) -
474
+ **Christopher Hiller** <<boneskull@boneskull.com>> (he/him)
481
475
  * [brendanashworth](https://github.com/brendanashworth) -
482
476
  **Brendan Ashworth** <<brendan.ashworth@me.com>>
483
477
  * [calvinmetcalf](https://github.com/calvinmetcalf) -
@@ -510,6 +504,8 @@ For information about the governance of the Node.js project, see
510
504
  **Gibson Fahnestock** <<gibfahn@gmail.com>> (he/him)
511
505
  * [glentiki](https://github.com/glentiki) -
512
506
  **Glen Keane** <<glenkeane.94@gmail.com>> (he/him)
507
+ * [hashseed](https://github.com/hashseed) -
508
+ **Yang Guo** <<yangguo@chromium.org>> (he/him)
513
509
  * [iarna](https://github.com/iarna) -
514
510
  **Rebecca Turner** <<me@re-becca.org>>
515
511
  * [imran-iq](https://github.com/imran-iq) -
@@ -556,6 +552,8 @@ For information about the governance of the Node.js project, see
556
552
  **Mikeal Rogers** <<mikeal.rogers@gmail.com>>
557
553
  * [misterdjules](https://github.com/misterdjules) -
558
554
  **Julien Gilli** <<jgilli@netflix.com>>
555
+ * [mmarchini](https://github.com/mmarchini) -
556
+ **Mary Marchini** <<oss@mmarchini.me>> (she/her)
559
557
  * [monsanto](https://github.com/monsanto) -
560
558
  **Christopher Monsanto** <<chris@monsan.to>>
561
559
  * [MoonBall](https://github.com/MoonBall) -
@@ -653,7 +651,7 @@ maintaining the Node.js project.
653
651
  * [marsonya](https://github.com/marsonya) -
654
652
  **Akhil Marsonya** <<akhil.marsonya27@gmail.com>> (he/him)
655
653
  * [meixg](https://github.com/meixg) -
656
- **Xuguang Mei** <<meixg@foxmail.com>> (he/him)
654
+ **Xuguang Mei** <<meixuguang@gmail.com>> (he/him)
657
655
  * [Mesteery](https://github.com/Mesteery) -
658
656
  **Mestery** <<mestery@protonmail.com>> (he/him)
659
657
  * [PoojaDurgad](https://github.com/PoojaDurgad) -
@@ -710,8 +708,8 @@ gpg --keyserver hkps://keys.openpgp.org --recv-keys 108F52B48DB57BB0CC439B2997B0
710
708
  gpg --keyserver hkps://keys.openpgp.org --recv-keys B9E2F5981AA6E0CD28160D9FF13993A75599653C
711
709
  ```
712
710
 
713
- See the section above on [Verifying binaries](#verifying-binaries) for how to
714
- use these keys to verify a downloaded file.
711
+ See [Verifying binaries](#verifying-binaries) for how to use these keys to
712
+ verify a downloaded file.
715
713
 
716
714
  <details>
717
715
 
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.15',
39
+ 'v8_embedder_string': '-node.13',
40
40
 
41
41
  ##### V8 defaults for Node.js #####
42
42
 
@@ -280,7 +280,11 @@
280
280
  '-std:c++17'
281
281
  ],
282
282
  'BufferSecurityCheck': 'true',
283
- 'DebugInformationFormat': 1, # /Z7 embed info in .obj files
283
+ 'target_conditions': [
284
+ ['_toolset=="target"', {
285
+ 'DebugInformationFormat': 1 # /Z7 embed info in .obj files
286
+ }],
287
+ ],
284
288
  'ExceptionHandling': 0, # /EHsc
285
289
  'MultiProcessorCompilation': 'true',
286
290
  'StringPooling': 'true', # pool string literals
@@ -497,7 +501,7 @@
497
501
  'GCC_ENABLE_CPP_RTTI': 'NO', # -fno-rtti
498
502
  'GCC_ENABLE_PASCAL_STRINGS': 'NO', # No -mpascal-strings
499
503
  'PREBINDING': 'NO', # No -Wl,-prebind
500
- 'MACOSX_DEPLOYMENT_TARGET': '10.13', # -mmacosx-version-min=10.13
504
+ 'MACOSX_DEPLOYMENT_TARGET': '10.15', # -mmacosx-version-min=10.15
501
505
  'USE_HEADERMAP': 'NO',
502
506
  'OTHER_CFLAGS': [
503
507
  '-fno-strict-aliasing',
@@ -1,9 +1,5 @@
1
1
  # Do not edit. Generated by the configure script.
2
- { 'target_defaults': { 'cflags': [],
3
- 'default_configuration': 'Release',
4
- 'defines': ['NODE_OPENSSL_HAS_QUIC'],
5
- 'include_dirs': [],
6
- 'libraries': []},
2
+ { 'target_defaults': {'cflags': [], 'default_configuration': 'Release', 'defines': ['NODE_OPENSSL_HAS_QUIC'], 'include_dirs': [], 'libraries': []},
7
3
  'variables': { 'arm_float_abi': 'hard',
8
4
  'arm_fpu': 'vfpv3',
9
5
  'arm_thumb': 0,
@@ -20,12 +16,12 @@
20
16
  'force_dynamic_crt': 0,
21
17
  'gas_version': '2.28',
22
18
  'host_arch': 'ia32',
23
- 'icu_data_in': '../../deps/icu-tmp/icudt70l.dat',
19
+ 'icu_data_in': '../../deps/icu-tmp/icudt71l.dat',
24
20
  'icu_endianness': 'l',
25
21
  'icu_gyp_path': 'tools/icu/icu-generic.gyp',
26
22
  'icu_path': 'deps/icu-small',
27
23
  'icu_small': 'false',
28
- 'icu_ver_major': '70',
24
+ 'icu_ver_major': '71',
29
25
  'is_debug': 0,
30
26
  'llvm_version': '0.0',
31
27
  'napi_build_version': '8',
@@ -63,6 +59,7 @@
63
59
  'lib/http.js',
64
60
  'lib/path.js',
65
61
  'lib/process.js',
62
+ 'lib/test.js',
66
63
  'lib/v8.js',
67
64
  'lib/wasi.js',
68
65
  'lib/string_decoder.js',
@@ -141,6 +138,10 @@
141
138
  'lib/internal/querystring.js',
142
139
  'lib/internal/errors.js',
143
140
  'lib/internal/constants.js',
141
+ 'lib/internal/test_runner/harness.js',
142
+ 'lib/internal/test_runner/test.js',
143
+ 'lib/internal/test_runner/tap_stream.js',
144
+ 'lib/internal/test_runner/utils.js',
144
145
  'lib/internal/process/warning.js',
145
146
  'lib/internal/process/per_thread.js',
146
147
  'lib/internal/process/execution.js',
@@ -174,7 +175,6 @@
174
175
  'lib/internal/fs/cp/cp-sync.js',
175
176
  'lib/internal/tls/secure-pair.js',
176
177
  'lib/internal/tls/secure-context.js',
177
- 'lib/internal/tls/parse-cert-string.js',
178
178
  'lib/internal/test/binding.js',
179
179
  'lib/internal/test/transfer.js',
180
180
  'lib/internal/vm/module.js',
@@ -208,6 +208,7 @@
208
208
  'lib/internal/perf/utils.js',
209
209
  'lib/internal/perf/observe.js',
210
210
  'lib/internal/bootstrap/node.js',
211
+ 'lib/internal/bootstrap/browser.js',
211
212
  'lib/internal/bootstrap/pre_execution.js',
212
213
  'lib/internal/bootstrap/environment.js',
213
214
  'lib/internal/bootstrap/loaders.js',
@@ -295,6 +296,7 @@
295
296
  'lib/internal/policy/manifest.js',
296
297
  'lib/internal/main/print_help.js',
297
298
  'lib/internal/main/eval_string.js',
299
+ 'lib/internal/main/mksnapshot.js',
298
300
  'lib/internal/main/prof_process.js',
299
301
  'lib/internal/main/eval_stdin.js',
300
302
  'lib/internal/main/worker_thread.js',
@@ -302,13 +304,14 @@
302
304
  'lib/internal/main/check_syntax.js',
303
305
  'lib/internal/main/run_main_module.js',
304
306
  'lib/internal/main/inspect.js',
307
+ 'lib/internal/main/test_runner.js',
305
308
  'lib/path/posix.js',
306
309
  'lib/path/win32.js',
307
310
  'lib/readline/promises.js',
308
311
  'lib/timers/promises.js',
309
312
  'lib/util/types.js',
310
313
  'lib/dns/promises.js'],
311
- 'node_module_version': 102,
314
+ 'node_module_version': 108,
312
315
  'node_no_browser_globals': 'false',
313
316
  'node_prefix': '/',
314
317
  'node_release_urlbase': 'https://nodejs.org/download/release/',
@@ -337,16 +340,18 @@
337
340
  'openssl_is_fips': 'false',
338
341
  'openssl_quic': 'true',
339
342
  'ossfuzz': 'false',
340
- 'shlib_suffix': 'so.102',
343
+ 'shlib_suffix': 'so.108',
341
344
  'target_arch': 'arm',
342
345
  'v8_enable_31bit_smis_on_64bit_arch': 0,
343
346
  'v8_enable_gdbjit': 0,
344
347
  'v8_enable_hugepage': 0,
345
348
  'v8_enable_i18n_support': 1,
346
349
  'v8_enable_inspector': 1,
350
+ 'v8_enable_javascript_promise_hooks': 1,
347
351
  'v8_enable_lite_mode': 0,
348
352
  'v8_enable_object_print': 1,
349
353
  'v8_enable_pointer_compression': 0,
354
+ 'v8_enable_shared_ro_heap': 1,
350
355
  'v8_enable_webassembly': 1,
351
356
  'v8_no_strict_aliasing': 1,
352
357
  'v8_optimized_debug': 1,
@@ -2,8 +2,8 @@
2
2
  #define SRC_JS_NATIVE_API_H_
3
3
 
4
4
  // This file needs to be compatible with C compilers.
5
- #include <stddef.h> // NOLINT(modernize-deprecated-headers)
6
5
  #include <stdbool.h> // NOLINT(modernize-deprecated-headers)
6
+ #include <stddef.h> // NOLINT(modernize-deprecated-headers)
7
7
 
8
8
  // Use INT_MAX, this should only be consumed by the pre-processor anyway.
9
9
  #define NAPI_VERSION_EXPERIMENTAL 2147483647
@@ -26,14 +26,15 @@
26
26
  // If you need __declspec(dllimport), either include <node_api.h> instead, or
27
27
  // define NAPI_EXTERN as __declspec(dllimport) on the compiler's command line.
28
28
  #ifndef NAPI_EXTERN
29
- #ifdef _WIN32
30
- #define NAPI_EXTERN __declspec(dllexport)
31
- #elif defined(__wasm32__)
32
- #define NAPI_EXTERN __attribute__((visibility("default"))) \
33
- __attribute__((__import_module__("napi")))
34
- #else
35
- #define NAPI_EXTERN __attribute__((visibility("default")))
36
- #endif
29
+ #ifdef _WIN32
30
+ #define NAPI_EXTERN __declspec(dllexport)
31
+ #elif defined(__wasm32__)
32
+ #define NAPI_EXTERN \
33
+ __attribute__((visibility("default"))) \
34
+ __attribute__((__import_module__("napi")))
35
+ #else
36
+ #define NAPI_EXTERN __attribute__((visibility("default")))
37
+ #endif
37
38
  #endif
38
39
 
39
40
  #define NAPI_AUTO_LENGTH SIZE_MAX
@@ -49,8 +50,7 @@
49
50
  EXTERN_C_START
50
51
 
51
52
  NAPI_EXTERN napi_status
52
- napi_get_last_error_info(napi_env env,
53
- const napi_extended_error_info** result);
53
+ napi_get_last_error_info(napi_env env, const napi_extended_error_info** result);
54
54
 
55
55
  // Getters for defined singletons
56
56
  NAPI_EXTERN napi_status napi_get_undefined(napi_env env, napi_value* result);
@@ -145,18 +145,12 @@ NAPI_EXTERN napi_status napi_get_value_bool(napi_env env,
145
145
  bool* result);
146
146
 
147
147
  // Copies LATIN-1 encoded bytes from a string into a buffer.
148
- NAPI_EXTERN napi_status napi_get_value_string_latin1(napi_env env,
149
- napi_value value,
150
- char* buf,
151
- size_t bufsize,
152
- size_t* result);
148
+ NAPI_EXTERN napi_status napi_get_value_string_latin1(
149
+ napi_env env, napi_value value, char* buf, size_t bufsize, size_t* result);
153
150
 
154
151
  // Copies UTF-8 encoded bytes from a string into a buffer.
155
- NAPI_EXTERN napi_status napi_get_value_string_utf8(napi_env env,
156
- napi_value value,
157
- char* buf,
158
- size_t bufsize,
159
- size_t* result);
152
+ NAPI_EXTERN napi_status napi_get_value_string_utf8(
153
+ napi_env env, napi_value value, char* buf, size_t bufsize, size_t* result);
160
154
 
161
155
  // Copies UTF-16 encoded bytes from a string into a buffer.
162
156
  NAPI_EXTERN napi_status napi_get_value_string_utf16(napi_env env,
@@ -208,17 +202,17 @@ NAPI_EXTERN napi_status napi_has_own_property(napi_env env,
208
202
  napi_value key,
209
203
  bool* result);
210
204
  NAPI_EXTERN napi_status napi_set_named_property(napi_env env,
211
- napi_value object,
212
- const char* utf8name,
213
- napi_value value);
205
+ napi_value object,
206
+ const char* utf8name,
207
+ napi_value value);
214
208
  NAPI_EXTERN napi_status napi_has_named_property(napi_env env,
215
- napi_value object,
216
- const char* utf8name,
217
- bool* result);
209
+ napi_value object,
210
+ const char* utf8name,
211
+ bool* result);
218
212
  NAPI_EXTERN napi_status napi_get_named_property(napi_env env,
219
- napi_value object,
220
- const char* utf8name,
221
- napi_value* result);
213
+ napi_value object,
214
+ const char* utf8name,
215
+ napi_value* result);
222
216
  NAPI_EXTERN napi_status napi_set_element(napi_env env,
223
217
  napi_value object,
224
218
  uint32_t index,
@@ -359,12 +353,10 @@ NAPI_EXTERN napi_status napi_open_handle_scope(napi_env env,
359
353
  napi_handle_scope* result);
360
354
  NAPI_EXTERN napi_status napi_close_handle_scope(napi_env env,
361
355
  napi_handle_scope scope);
362
- NAPI_EXTERN napi_status
363
- napi_open_escapable_handle_scope(napi_env env,
364
- napi_escapable_handle_scope* result);
365
- NAPI_EXTERN napi_status
366
- napi_close_escapable_handle_scope(napi_env env,
367
- napi_escapable_handle_scope scope);
356
+ NAPI_EXTERN napi_status napi_open_escapable_handle_scope(
357
+ napi_env env, napi_escapable_handle_scope* result);
358
+ NAPI_EXTERN napi_status napi_close_escapable_handle_scope(
359
+ napi_env env, napi_escapable_handle_scope scope);
368
360
 
369
361
  NAPI_EXTERN napi_status napi_escape_handle(napi_env env,
370
362
  napi_escapable_handle_scope scope,
@@ -377,11 +369,11 @@ NAPI_EXTERN napi_status napi_throw_error(napi_env env,
377
369
  const char* code,
378
370
  const char* msg);
379
371
  NAPI_EXTERN napi_status napi_throw_type_error(napi_env env,
380
- const char* code,
381
- const char* msg);
372
+ const char* code,
373
+ const char* msg);
382
374
  NAPI_EXTERN napi_status napi_throw_range_error(napi_env env,
383
- const char* code,
384
- const char* msg);
375
+ const char* code,
376
+ const char* msg);
385
377
  #ifdef NAPI_EXPERIMENTAL
386
378
  NAPI_EXTERN napi_status node_api_throw_syntax_error(napi_env env,
387
379
  const char* code,
@@ -542,8 +534,7 @@ NAPI_EXTERN napi_status napi_set_instance_data(napi_env env,
542
534
  napi_finalize finalize_cb,
543
535
  void* finalize_hint);
544
536
 
545
- NAPI_EXTERN napi_status napi_get_instance_data(napi_env env,
546
- void** data);
537
+ NAPI_EXTERN napi_status napi_get_instance_data(napi_env env, void** data);
547
538
  #endif // NAPI_VERSION >= 6
548
539
 
549
540
  #if NAPI_VERSION >= 7
@@ -567,10 +558,8 @@ napi_check_object_type_tag(napi_env env,
567
558
  napi_value value,
568
559
  const napi_type_tag* type_tag,
569
560
  bool* result);
570
- NAPI_EXTERN napi_status napi_object_freeze(napi_env env,
571
- napi_value object);
572
- NAPI_EXTERN napi_status napi_object_seal(napi_env env,
573
- napi_value object);
561
+ NAPI_EXTERN napi_status napi_object_freeze(napi_env env, napi_value object);
562
+ NAPI_EXTERN napi_status napi_object_seal(napi_env env, napi_value object);
574
563
  #endif // NAPI_VERSION >= 8
575
564
 
576
565
  EXTERN_C_END