node-linux-arm64 18.0.0 → 18.3.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 (357) hide show
  1. package/CHANGELOG.md +311 -0
  2. package/README.md +19 -9
  3. package/bin/node +0 -0
  4. package/include/node/common.gypi +1 -1
  5. package/include/node/config.gypi +7 -0
  6. package/include/node/js_native_api.h +367 -363
  7. package/include/node/js_native_api_types.h +13 -4
  8. package/include/node/node.h +10 -0
  9. package/include/node/node_api.h +95 -92
  10. package/include/node/node_api_types.h +8 -10
  11. package/include/node/node_version.h +1 -1
  12. package/include/node/openssl/archs/BSD-x86/asm/crypto/buildinf.h +1 -1
  13. package/include/node/openssl/archs/BSD-x86/asm/include/openssl/crypto.h +2 -0
  14. package/include/node/openssl/archs/BSD-x86/asm/include/openssl/opensslv.h +5 -5
  15. package/include/node/openssl/archs/BSD-x86/asm/include/openssl/ssl.h +11 -0
  16. package/include/node/openssl/archs/BSD-x86/asm/include/openssl/x509.h +4 -4
  17. package/include/node/openssl/archs/BSD-x86/asm_avx2/crypto/buildinf.h +1 -1
  18. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/crypto.h +2 -0
  19. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/opensslv.h +5 -5
  20. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/ssl.h +11 -0
  21. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/x509.h +4 -4
  22. package/include/node/openssl/archs/BSD-x86/no-asm/crypto/buildinf.h +1 -1
  23. package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/crypto.h +2 -0
  24. package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/opensslv.h +5 -5
  25. package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/ssl.h +11 -0
  26. package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/x509.h +4 -4
  27. package/include/node/openssl/archs/BSD-x86_64/asm/crypto/buildinf.h +1 -1
  28. package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/crypto.h +2 -0
  29. package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/opensslv.h +5 -5
  30. package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/ssl.h +11 -0
  31. package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/x509.h +4 -4
  32. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/crypto/buildinf.h +1 -1
  33. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/crypto.h +2 -0
  34. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/opensslv.h +5 -5
  35. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/ssl.h +11 -0
  36. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/x509.h +4 -4
  37. package/include/node/openssl/archs/BSD-x86_64/no-asm/crypto/buildinf.h +1 -1
  38. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/crypto.h +2 -0
  39. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/opensslv.h +5 -5
  40. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/ssl.h +11 -0
  41. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/x509.h +4 -4
  42. package/include/node/openssl/archs/VC-WIN32/asm/crypto/buildinf.h +1 -1
  43. package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/crypto.h +2 -0
  44. package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/opensslv.h +5 -5
  45. package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/ssl.h +11 -0
  46. package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/x509.h +4 -4
  47. package/include/node/openssl/archs/VC-WIN32/asm_avx2/crypto/buildinf.h +1 -1
  48. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/crypto.h +2 -0
  49. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/opensslv.h +5 -5
  50. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/ssl.h +11 -0
  51. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/x509.h +4 -4
  52. package/include/node/openssl/archs/VC-WIN32/no-asm/crypto/buildinf.h +1 -1
  53. package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/crypto.h +2 -0
  54. package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/opensslv.h +5 -5
  55. package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/ssl.h +11 -0
  56. package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/x509.h +4 -4
  57. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/crypto/buildinf.h +1 -1
  58. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/crypto.h +2 -0
  59. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/opensslv.h +5 -5
  60. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/ssl.h +11 -0
  61. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/x509.h +4 -4
  62. package/include/node/openssl/archs/VC-WIN64A/asm/crypto/buildinf.h +1 -1
  63. package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/crypto.h +2 -0
  64. package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/opensslv.h +5 -5
  65. package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/ssl.h +11 -0
  66. package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/x509.h +4 -4
  67. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/crypto/buildinf.h +1 -1
  68. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/crypto.h +2 -0
  69. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/opensslv.h +5 -5
  70. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/ssl.h +11 -0
  71. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/x509.h +4 -4
  72. package/include/node/openssl/archs/VC-WIN64A/no-asm/crypto/buildinf.h +1 -1
  73. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/crypto.h +2 -0
  74. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/opensslv.h +5 -5
  75. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/ssl.h +11 -0
  76. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/x509.h +4 -4
  77. package/include/node/openssl/archs/aix64-gcc-as/asm/crypto/buildinf.h +1 -1
  78. package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/crypto.h +2 -0
  79. package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/opensslv.h +5 -5
  80. package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/ssl.h +11 -0
  81. package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/x509.h +4 -4
  82. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/crypto/buildinf.h +1 -1
  83. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/crypto.h +2 -0
  84. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/opensslv.h +5 -5
  85. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/ssl.h +11 -0
  86. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/x509.h +4 -4
  87. package/include/node/openssl/archs/aix64-gcc-as/no-asm/crypto/buildinf.h +1 -1
  88. package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/crypto.h +2 -0
  89. package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/opensslv.h +5 -5
  90. package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/ssl.h +11 -0
  91. package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/x509.h +4 -4
  92. package/include/node/openssl/archs/darwin-i386-cc/asm/crypto/buildinf.h +1 -1
  93. package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/crypto.h +2 -0
  94. package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/opensslv.h +5 -5
  95. package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/ssl.h +11 -0
  96. package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/x509.h +4 -4
  97. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/crypto/buildinf.h +1 -1
  98. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/crypto.h +2 -0
  99. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/opensslv.h +5 -5
  100. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/ssl.h +11 -0
  101. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/x509.h +4 -4
  102. package/include/node/openssl/archs/darwin-i386-cc/no-asm/crypto/buildinf.h +1 -1
  103. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/crypto.h +2 -0
  104. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/opensslv.h +5 -5
  105. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/ssl.h +11 -0
  106. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/x509.h +4 -4
  107. package/include/node/openssl/archs/darwin64-arm64-cc/asm/crypto/buildinf.h +1 -1
  108. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/crypto.h +2 -0
  109. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/opensslv.h +5 -5
  110. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/ssl.h +11 -0
  111. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/x509.h +4 -4
  112. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/crypto/buildinf.h +1 -1
  113. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/crypto.h +2 -0
  114. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/opensslv.h +5 -5
  115. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/ssl.h +11 -0
  116. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/x509.h +4 -4
  117. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/crypto/buildinf.h +1 -1
  118. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/crypto.h +2 -0
  119. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/opensslv.h +5 -5
  120. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/ssl.h +11 -0
  121. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/x509.h +4 -4
  122. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/crypto/buildinf.h +1 -1
  123. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/crypto.h +2 -0
  124. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/opensslv.h +5 -5
  125. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/ssl.h +11 -0
  126. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/x509.h +4 -4
  127. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/crypto/buildinf.h +1 -1
  128. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/crypto.h +2 -0
  129. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/opensslv.h +5 -5
  130. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/ssl.h +11 -0
  131. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/x509.h +4 -4
  132. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/crypto/buildinf.h +1 -1
  133. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/crypto.h +2 -0
  134. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/opensslv.h +5 -5
  135. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/ssl.h +11 -0
  136. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/x509.h +4 -4
  137. package/include/node/openssl/archs/linux-aarch64/asm/crypto/buildinf.h +1 -1
  138. package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/crypto.h +2 -0
  139. package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/opensslv.h +5 -5
  140. package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/ssl.h +11 -0
  141. package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/x509.h +4 -4
  142. package/include/node/openssl/archs/linux-aarch64/asm_avx2/crypto/buildinf.h +1 -1
  143. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/crypto.h +2 -0
  144. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/opensslv.h +5 -5
  145. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/ssl.h +11 -0
  146. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/x509.h +4 -4
  147. package/include/node/openssl/archs/linux-aarch64/no-asm/crypto/buildinf.h +1 -1
  148. package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/crypto.h +2 -0
  149. package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/opensslv.h +5 -5
  150. package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/ssl.h +11 -0
  151. package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/x509.h +4 -4
  152. package/include/node/openssl/archs/linux-armv4/asm/crypto/buildinf.h +1 -1
  153. package/include/node/openssl/archs/linux-armv4/asm/include/openssl/crypto.h +2 -0
  154. package/include/node/openssl/archs/linux-armv4/asm/include/openssl/opensslv.h +5 -5
  155. package/include/node/openssl/archs/linux-armv4/asm/include/openssl/ssl.h +11 -0
  156. package/include/node/openssl/archs/linux-armv4/asm/include/openssl/x509.h +4 -4
  157. package/include/node/openssl/archs/linux-armv4/asm_avx2/crypto/buildinf.h +1 -1
  158. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/crypto.h +2 -0
  159. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/opensslv.h +5 -5
  160. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/ssl.h +11 -0
  161. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/x509.h +4 -4
  162. package/include/node/openssl/archs/linux-armv4/no-asm/crypto/buildinf.h +1 -1
  163. package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/crypto.h +2 -0
  164. package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/opensslv.h +5 -5
  165. package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/ssl.h +11 -0
  166. package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/x509.h +4 -4
  167. package/include/node/openssl/archs/linux-elf/asm/crypto/buildinf.h +1 -1
  168. package/include/node/openssl/archs/linux-elf/asm/include/openssl/crypto.h +2 -0
  169. package/include/node/openssl/archs/linux-elf/asm/include/openssl/opensslv.h +5 -5
  170. package/include/node/openssl/archs/linux-elf/asm/include/openssl/ssl.h +11 -0
  171. package/include/node/openssl/archs/linux-elf/asm/include/openssl/x509.h +4 -4
  172. package/include/node/openssl/archs/linux-elf/asm_avx2/crypto/buildinf.h +1 -1
  173. package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/crypto.h +2 -0
  174. package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/opensslv.h +5 -5
  175. package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/ssl.h +11 -0
  176. package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/x509.h +4 -4
  177. package/include/node/openssl/archs/linux-elf/no-asm/crypto/buildinf.h +1 -1
  178. package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/crypto.h +2 -0
  179. package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/opensslv.h +5 -5
  180. package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/ssl.h +11 -0
  181. package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/x509.h +4 -4
  182. package/include/node/openssl/archs/linux-ppc64le/asm/crypto/buildinf.h +1 -1
  183. package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/crypto.h +2 -0
  184. package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/opensslv.h +5 -5
  185. package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/ssl.h +11 -0
  186. package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/x509.h +4 -4
  187. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/crypto/buildinf.h +1 -1
  188. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/crypto.h +2 -0
  189. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/opensslv.h +5 -5
  190. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/ssl.h +11 -0
  191. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/x509.h +4 -4
  192. package/include/node/openssl/archs/linux-ppc64le/no-asm/crypto/buildinf.h +1 -1
  193. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/crypto.h +2 -0
  194. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/opensslv.h +5 -5
  195. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/ssl.h +11 -0
  196. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/x509.h +4 -4
  197. package/include/node/openssl/archs/linux-x86_64/asm/crypto/buildinf.h +1 -1
  198. package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/crypto.h +2 -0
  199. package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/opensslv.h +5 -5
  200. package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/ssl.h +11 -0
  201. package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/x509.h +4 -4
  202. package/include/node/openssl/archs/linux-x86_64/asm_avx2/crypto/buildinf.h +1 -1
  203. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/crypto.h +2 -0
  204. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/opensslv.h +5 -5
  205. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/ssl.h +11 -0
  206. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/x509.h +4 -4
  207. package/include/node/openssl/archs/linux-x86_64/no-asm/crypto/buildinf.h +1 -1
  208. package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/crypto.h +2 -0
  209. package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/opensslv.h +5 -5
  210. package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/ssl.h +11 -0
  211. package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/x509.h +4 -4
  212. package/include/node/openssl/archs/linux32-s390x/asm/crypto/buildinf.h +1 -1
  213. package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/crypto.h +2 -0
  214. package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/opensslv.h +5 -5
  215. package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/ssl.h +11 -0
  216. package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/x509.h +4 -4
  217. package/include/node/openssl/archs/linux32-s390x/asm_avx2/crypto/buildinf.h +1 -1
  218. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/crypto.h +2 -0
  219. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/opensslv.h +5 -5
  220. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/ssl.h +11 -0
  221. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/x509.h +4 -4
  222. package/include/node/openssl/archs/linux32-s390x/no-asm/crypto/buildinf.h +1 -1
  223. package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/crypto.h +2 -0
  224. package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/opensslv.h +5 -5
  225. package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/ssl.h +11 -0
  226. package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/x509.h +4 -4
  227. package/include/node/openssl/archs/linux64-mips64/asm/crypto/buildinf.h +1 -1
  228. package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/crypto.h +2 -0
  229. package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/opensslv.h +5 -5
  230. package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/ssl.h +11 -0
  231. package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/x509.h +4 -4
  232. package/include/node/openssl/archs/linux64-mips64/asm_avx2/crypto/buildinf.h +1 -1
  233. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/crypto.h +2 -0
  234. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/opensslv.h +5 -5
  235. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/ssl.h +11 -0
  236. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/x509.h +4 -4
  237. package/include/node/openssl/archs/linux64-mips64/no-asm/crypto/buildinf.h +1 -1
  238. package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/crypto.h +2 -0
  239. package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/opensslv.h +5 -5
  240. package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/ssl.h +11 -0
  241. package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/x509.h +4 -4
  242. package/include/node/openssl/archs/linux64-riscv64/no-asm/crypto/buildinf.h +1 -1
  243. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/crypto.h +2 -0
  244. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/opensslv.h +5 -5
  245. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/ssl.h +11 -0
  246. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/x509.h +4 -4
  247. package/include/node/openssl/archs/linux64-s390x/asm/crypto/buildinf.h +1 -1
  248. package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/crypto.h +2 -0
  249. package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/opensslv.h +5 -5
  250. package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/ssl.h +11 -0
  251. package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/x509.h +4 -4
  252. package/include/node/openssl/archs/linux64-s390x/asm_avx2/crypto/buildinf.h +1 -1
  253. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/crypto.h +2 -0
  254. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/opensslv.h +5 -5
  255. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/ssl.h +11 -0
  256. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/x509.h +4 -4
  257. package/include/node/openssl/archs/linux64-s390x/no-asm/crypto/buildinf.h +1 -1
  258. package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/crypto.h +2 -0
  259. package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/opensslv.h +5 -5
  260. package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/ssl.h +11 -0
  261. package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/x509.h +4 -4
  262. package/include/node/openssl/archs/solaris-x86-gcc/asm/crypto/buildinf.h +1 -1
  263. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/crypto.h +2 -0
  264. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/opensslv.h +5 -5
  265. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/ssl.h +11 -0
  266. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/x509.h +4 -4
  267. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/crypto/buildinf.h +1 -1
  268. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/crypto.h +2 -0
  269. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/opensslv.h +5 -5
  270. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/ssl.h +11 -0
  271. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/x509.h +4 -4
  272. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/crypto/buildinf.h +1 -1
  273. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/crypto.h +2 -0
  274. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/opensslv.h +5 -5
  275. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/ssl.h +11 -0
  276. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/x509.h +4 -4
  277. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/crypto/buildinf.h +1 -1
  278. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/crypto.h +2 -0
  279. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/opensslv.h +5 -5
  280. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/ssl.h +11 -0
  281. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/x509.h +4 -4
  282. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/crypto/buildinf.h +1 -1
  283. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/crypto.h +2 -0
  284. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/opensslv.h +5 -5
  285. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/ssl.h +11 -0
  286. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/x509.h +4 -4
  287. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/crypto/buildinf.h +1 -1
  288. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/crypto.h +2 -0
  289. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/opensslv.h +5 -5
  290. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/ssl.h +11 -0
  291. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/x509.h +4 -4
  292. package/include/node/openssl/asn1_asm.h +0 -6
  293. package/include/node/openssl/asn1_no-asm.h +0 -6
  294. package/include/node/openssl/asn1t_asm.h +0 -6
  295. package/include/node/openssl/asn1t_no-asm.h +0 -6
  296. package/include/node/openssl/bio_asm.h +0 -6
  297. package/include/node/openssl/bio_no-asm.h +0 -6
  298. package/include/node/openssl/bn_conf_asm.h +0 -6
  299. package/include/node/openssl/bn_conf_no-asm.h +0 -6
  300. package/include/node/openssl/cmp_asm.h +0 -6
  301. package/include/node/openssl/cmp_no-asm.h +0 -6
  302. package/include/node/openssl/cms_asm.h +0 -6
  303. package/include/node/openssl/cms_no-asm.h +0 -6
  304. package/include/node/openssl/conf_asm.h +0 -6
  305. package/include/node/openssl/conf_no-asm.h +0 -6
  306. package/include/node/openssl/configuration_asm.h +0 -6
  307. package/include/node/openssl/configuration_no-asm.h +0 -6
  308. package/include/node/openssl/crmf_asm.h +0 -6
  309. package/include/node/openssl/crmf_no-asm.h +0 -6
  310. package/include/node/openssl/crypto_asm.h +0 -6
  311. package/include/node/openssl/crypto_no-asm.h +0 -6
  312. package/include/node/openssl/ct_asm.h +0 -6
  313. package/include/node/openssl/ct_no-asm.h +0 -6
  314. package/include/node/openssl/dso_conf_asm.h +0 -6
  315. package/include/node/openssl/dso_conf_no-asm.h +0 -6
  316. package/include/node/openssl/ecerr.h +2 -1
  317. package/include/node/openssl/err_asm.h +0 -6
  318. package/include/node/openssl/err_no-asm.h +0 -6
  319. package/include/node/openssl/ess_asm.h +0 -6
  320. package/include/node/openssl/ess_no-asm.h +0 -6
  321. package/include/node/openssl/fipskey_asm.h +0 -6
  322. package/include/node/openssl/fipskey_no-asm.h +0 -6
  323. package/include/node/openssl/lhash_asm.h +0 -6
  324. package/include/node/openssl/lhash_no-asm.h +0 -6
  325. package/include/node/openssl/ocsp_asm.h +0 -6
  326. package/include/node/openssl/ocsp_no-asm.h +0 -6
  327. package/include/node/openssl/opensslconf.h +15 -21
  328. package/include/node/openssl/opensslv_asm.h +0 -6
  329. package/include/node/openssl/opensslv_no-asm.h +0 -6
  330. package/include/node/openssl/pkcs12_asm.h +0 -6
  331. package/include/node/openssl/pkcs12_no-asm.h +0 -6
  332. package/include/node/openssl/pkcs7_asm.h +0 -6
  333. package/include/node/openssl/pkcs7_no-asm.h +0 -6
  334. package/include/node/openssl/safestack_asm.h +0 -6
  335. package/include/node/openssl/safestack_no-asm.h +0 -6
  336. package/include/node/openssl/srp_asm.h +0 -6
  337. package/include/node/openssl/srp_no-asm.h +0 -6
  338. package/include/node/openssl/ssl_asm.h +0 -6
  339. package/include/node/openssl/ssl_no-asm.h +0 -6
  340. package/include/node/openssl/ui_asm.h +0 -6
  341. package/include/node/openssl/ui_no-asm.h +0 -6
  342. package/include/node/openssl/x509_asm.h +0 -6
  343. package/include/node/openssl/x509_no-asm.h +0 -6
  344. package/include/node/openssl/x509_vfy_asm.h +0 -6
  345. package/include/node/openssl/x509_vfy_no-asm.h +0 -6
  346. package/include/node/openssl/x509v3_asm.h +0 -6
  347. package/include/node/openssl/x509v3_no-asm.h +0 -6
  348. package/include/node/v8-version.h +3 -3
  349. package/package.json +1 -1
  350. package/share/man/man1/node.1 +4 -1
  351. package/include/node/openssl/archs/aix64-gcc/asm/crypto/buildinf.h +0 -38
  352. package/include/node/openssl/archs/aix64-gcc/asm/include/progs.h +0 -507
  353. package/include/node/openssl/archs/aix64-gcc/asm_avx2/crypto/buildinf.h +0 -39
  354. package/include/node/openssl/archs/aix64-gcc/asm_avx2/include/progs.h +0 -507
  355. package/include/node/openssl/archs/aix64-gcc/no-asm/crypto/buildinf.h +0 -27
  356. package/include/node/openssl/archs/aix64-gcc/no-asm/include/progs.h +0 -507
  357. package/include/node/openssl/opensslconf_no-asm.h +0 -47
package/CHANGELOG.md CHANGED
@@ -8,6 +8,8 @@
8
8
  </tr>
9
9
  <tr>
10
10
  <td>
11
+ <a href="#18.2.0">18.2.0</a><br/>
12
+ <a href="#18.1.0">18.1.0</a><br/>
11
13
  <a href="#18.0.0">18.0.0</a><br/>
12
14
  </td>
13
15
  </tr>
@@ -33,6 +35,315 @@
33
35
  * [io.js](CHANGELOG_IOJS.md)
34
36
  * [Archive](CHANGELOG_ARCHIVE.md)
35
37
 
38
+ <a id="18.3.0"></a>
39
+
40
+ ## 2022-06-01, Version 18.3.0 (Current), @bengl
41
+
42
+ ### Notable Changes
43
+
44
+ * \[[`dc3b91f351`](https://github.com/nodejs/node/commit/dc3b91f351)] - **deps**: update undici to 5.4.0 (Node.js GitHub Bot) [#43262](https://github.com/nodejs/node/pull/43262)
45
+ * \[[`d6cf409d78`](https://github.com/nodejs/node/commit/d6cf409d78)] - **(SEMVER-MINOR)** **util**: add parseArgs module (Benjamin Coe) [#42675](https://github.com/nodejs/node/pull/42675)
46
+ * \[[`9539cfa358`](https://github.com/nodejs/node/commit/9539cfa358)] - **(SEMVER-MINOR)** **http**: add uniqueHeaders option to request and createServer (Paolo Insogna) [#41397](https://github.com/nodejs/node/pull/41397)
47
+ * \[[`41fdc2617d`](https://github.com/nodejs/node/commit/41fdc2617d)] - **deps**: upgrade npm to 8.11.0 (npm team) [#43210](https://github.com/nodejs/node/pull/43210)
48
+ * \[[`0000654e47`](https://github.com/nodejs/node/commit/0000654e47)] - **deps**: patch V8 to 10.2.154.4 (Michaël Zasso) [#43067](https://github.com/nodejs/node/pull/43067)
49
+ * \[[`b3c8e609fd`](https://github.com/nodejs/node/commit/b3c8e609fd)] - **(SEMVER-MINOR)** **deps**: update V8 to 10.2.154.2 (Michaël Zasso) [#42740](https://github.com/nodejs/node/pull/42740)
50
+ * \[[`3e89b7336d`](https://github.com/nodejs/node/commit/3e89b7336d)] - **(SEMVER-MINOR)** **fs**: make params in writing methods optional (LiviaMedeiros) [#42601](https://github.com/nodejs/node/pull/42601)
51
+ * \[[`9539cfa358`](https://github.com/nodejs/node/commit/9539cfa358)] - **(SEMVER-MINOR)** **http**: add uniqueHeaders option to request and createServer (Paolo Insogna) [#41397](https://github.com/nodejs/node/pull/41397)
52
+ * \[[`8f5b4570e5`](https://github.com/nodejs/node/commit/8f5b4570e5)] - **(SEMVER-MINOR)** **net**: add ability to reset a tcp socket (pupilTong) [#43112](https://github.com/nodejs/node/pull/43112)
53
+ * \[[`5eff7b4a6a`](https://github.com/nodejs/node/commit/5eff7b4a6a)] - **(SEMVER-MINOR)** _**Revert**_ "**build**: make x86 Windows support temporarily experimental" (Michaël Zasso) [#42740](https://github.com/nodejs/node/pull/42740)
54
+ * This means 32-bit Windows binaries are back with this release.
55
+
56
+ ### Commits
57
+
58
+ * \[[`aefc9dda9a`](https://github.com/nodejs/node/commit/aefc9dda9a)] - **benchmark**: add node-error benchmark (RafaelGSS) [#43077](https://github.com/nodejs/node/pull/43077)
59
+ * \[[`85d81a764f`](https://github.com/nodejs/node/commit/85d81a764f)] - **bootstrap**: include code cache in the embedded snapshot (Joyee Cheung) [#43023](https://github.com/nodejs/node/pull/43023)
60
+ * \[[`5eff7b4a6a`](https://github.com/nodejs/node/commit/5eff7b4a6a)] - **(SEMVER-MINOR)** _**Revert**_ "**build**: make x86 Windows support temporarily experimental" (Michaël Zasso) [#42740](https://github.com/nodejs/node/pull/42740)
61
+ * \[[`d6634707c5`](https://github.com/nodejs/node/commit/d6634707c5)] - **(SEMVER-MINOR)** **build**: run V8 tests with detected Python version (Richard Lau) [#42740](https://github.com/nodejs/node/pull/42740)
62
+ * \[[`b8b5e6df67`](https://github.com/nodejs/node/commit/b8b5e6df67)] - **(SEMVER-MINOR)** **build**: reset embedder string to "-node.0" (Michaël Zasso) [#42740](https://github.com/nodejs/node/pull/42740)
63
+ * \[[`285ef30877`](https://github.com/nodejs/node/commit/285ef30877)] - **console**: fix console.dir crash on a revoked proxy (Daeyeon Jeong) [#43100](https://github.com/nodejs/node/pull/43100)
64
+ * \[[`920d8c5300`](https://github.com/nodejs/node/commit/920d8c5300)] - **crypto**: align webcrypto RSA key import/export with other implementations (Filip Skokan) [#42816](https://github.com/nodejs/node/pull/42816)
65
+ * \[[`c76caadf2e`](https://github.com/nodejs/node/commit/c76caadf2e)] - **debugger**: throw a more useful error when the frame is missing (Kohei Ueno) [#42776](https://github.com/nodejs/node/pull/42776)
66
+ * \[[`dc3b91f351`](https://github.com/nodejs/node/commit/dc3b91f351)] - **deps**: update undici to 5.4.0 (Node.js GitHub Bot) [#43262](https://github.com/nodejs/node/pull/43262)
67
+ * \[[`35250bf2f6`](https://github.com/nodejs/node/commit/35250bf2f6)] - **deps**: regenerate OpenSSL archs files (Daniel Bevenius) [#42973](https://github.com/nodejs/node/pull/42973)
68
+ * \[[`ecacc3a727`](https://github.com/nodejs/node/commit/ecacc3a727)] - **deps**: exclude linker scripts for windows builds (Daniel Bevenius) [#42973](https://github.com/nodejs/node/pull/42973)
69
+ * \[[`41fdc2617d`](https://github.com/nodejs/node/commit/41fdc2617d)] - **deps**: upgrade npm to 8.11.0 (npm team) [#43210](https://github.com/nodejs/node/pull/43210)
70
+ * \[[`87b248e27e`](https://github.com/nodejs/node/commit/87b248e27e)] - **deps**: update undici to 5.3.0 (Node.js GitHub Bot) [#43197](https://github.com/nodejs/node/pull/43197)
71
+ * \[[`d42de132a7`](https://github.com/nodejs/node/commit/d42de132a7)] - **deps**: upgrade npm to 8.10.0 (npm team) [#43061](https://github.com/nodejs/node/pull/43061)
72
+ * \[[`0000654e47`](https://github.com/nodejs/node/commit/0000654e47)] - **deps**: patch V8 to 10.2.154.4 (Michaël Zasso) [#43067](https://github.com/nodejs/node/pull/43067)
73
+ * \[[`742ffefb44`](https://github.com/nodejs/node/commit/742ffefb44)] - **(SEMVER-MINOR)** **deps**: make V8 10.2 ABI-compatible with 10.1 (Michaël Zasso) [#42740](https://github.com/nodejs/node/pull/42740)
74
+ * \[[`c626a533c7`](https://github.com/nodejs/node/commit/c626a533c7)] - **deps**: make V8 compilable with older glibc (Michaël Zasso) [#42657](https://github.com/nodejs/node/pull/42657)
75
+ * \[[`76546b12a2`](https://github.com/nodejs/node/commit/76546b12a2)] - **deps**: V8: fix v8-cppgc.h for MSVC (Jiawen Geng) [#42657](https://github.com/nodejs/node/pull/42657)
76
+ * \[[`45e1fd4473`](https://github.com/nodejs/node/commit/45e1fd4473)] - **deps**: silence V8's warning on CompileFunction (Michaël Zasso) [#40907](https://github.com/nodejs/node/pull/40907)
77
+ * \[[`2130891a9a`](https://github.com/nodejs/node/commit/2130891a9a)] - **(SEMVER-MINOR)** **deps**: disable trap handler for Windows cross-compiler (Michaël Zasso) [#40488](https://github.com/nodejs/node/pull/40488)
78
+ * \[[`e678b6c63d`](https://github.com/nodejs/node/commit/e678b6c63d)] - **deps**: fix V8 build issue with inline methods (Jiawen Geng) [#38807](https://github.com/nodejs/node/pull/38807)
79
+ * \[[`f83323f304`](https://github.com/nodejs/node/commit/f83323f304)] - **deps**: V8: forward declaration of `Rtl*FunctionTable` (Refael Ackermann) [#32116](https://github.com/nodejs/node/pull/32116)
80
+ * \[[`4be7584ca6`](https://github.com/nodejs/node/commit/4be7584ca6)] - **deps**: V8: un-cherry-pick bd019bd (Refael Ackermann) [#32116](https://github.com/nodejs/node/pull/32116)
81
+ * \[[`b3c8e609fd`](https://github.com/nodejs/node/commit/b3c8e609fd)] - **(SEMVER-MINOR)** **deps**: update V8 to 10.2.154.2 (Michaël Zasso) [#42740](https://github.com/nodejs/node/pull/42740)
82
+ * \[[`0afdc3e9a8`](https://github.com/nodejs/node/commit/0afdc3e9a8)] - **doc**: use serial comma in errors docs (Tobias Nießen) [#43242](https://github.com/nodejs/node/pull/43242)
83
+ * \[[`00989338b3`](https://github.com/nodejs/node/commit/00989338b3)] - **doc**: add note regarding `%Array.prototype.concat%` in `primordials.md` (Antoine du Hamel) [#43166](https://github.com/nodejs/node/pull/43166)
84
+ * \[[`badf72dd0a`](https://github.com/nodejs/node/commit/badf72dd0a)] - **doc**: use serial comma in worker\_threads docs (Tobias Nießen) [#43220](https://github.com/nodejs/node/pull/43220)
85
+ * \[[`776e746f0a`](https://github.com/nodejs/node/commit/776e746f0a)] - **doc**: fix napi version for node\_api\_symbol\_for (Danielle Adams) [#42878](https://github.com/nodejs/node/pull/42878)
86
+ * \[[`76b46801f8`](https://github.com/nodejs/node/commit/76b46801f8)] - **doc**: document `signal` option for `EventTarget#addEventListener` (Antoine du Hamel) [#43170](https://github.com/nodejs/node/pull/43170)
87
+ * \[[`3082c75efd`](https://github.com/nodejs/node/commit/3082c75efd)] - **doc**: make minor adjustments (LiviaMedeiros) [#43175](https://github.com/nodejs/node/pull/43175)
88
+ * \[[`598c1f102e`](https://github.com/nodejs/node/commit/598c1f102e)] - **doc**: use serial comma in dgram docs (Tobias Nießen) [#43191](https://github.com/nodejs/node/pull/43191)
89
+ * \[[`b772c13a62`](https://github.com/nodejs/node/commit/b772c13a62)] - **doc**: use serial comma in process docs (Tobias Nießen) [#43179](https://github.com/nodejs/node/pull/43179)
90
+ * \[[`f90a3d7a54`](https://github.com/nodejs/node/commit/f90a3d7a54)] - **doc**: improved parallel specification (mawaregetsuka) [#42679](https://github.com/nodejs/node/pull/42679)
91
+ * \[[`71074eedef`](https://github.com/nodejs/node/commit/71074eedef)] - **doc**: improve callback params for `fs.mkdir` (Daeyeon Jeong) [#43016](https://github.com/nodejs/node/pull/43016)
92
+ * \[[`2b8b224077`](https://github.com/nodejs/node/commit/2b8b224077)] - **doc**: remove outdated footnote (Python 2 --> 3 for V8 tests) (DeeDeeG) [#43105](https://github.com/nodejs/node/pull/43105)
93
+ * \[[`945f228cf1`](https://github.com/nodejs/node/commit/945f228cf1)] - **doc**: add release key for RafaelGSS (Rafael Gonzaga) [#43131](https://github.com/nodejs/node/pull/43131)
94
+ * \[[`56fc712f93`](https://github.com/nodejs/node/commit/56fc712f93)] - **doc**: use serial comma in assert docs (Tobias Nießen) [#43154](https://github.com/nodejs/node/pull/43154)
95
+ * \[[`093a3cf2f1`](https://github.com/nodejs/node/commit/093a3cf2f1)] - **doc**: fix errors in Performance hooks doc (OneNail) [#43152](https://github.com/nodejs/node/pull/43152)
96
+ * \[[`4d9f43a8a7`](https://github.com/nodejs/node/commit/4d9f43a8a7)] - **doc**: use serial comma in dns docs (Tobias Nießen) [#43145](https://github.com/nodejs/node/pull/43145)
97
+ * \[[`4e9393e32f`](https://github.com/nodejs/node/commit/4e9393e32f)] - **doc**: use ASCII apostrophes consistently (Tobias Nießen) [#43114](https://github.com/nodejs/node/pull/43114)
98
+ * \[[`b3181851d7`](https://github.com/nodejs/node/commit/b3181851d7)] - **doc**: add strategic initiative for shadow realm (Chengzhong Wu) [#43037](https://github.com/nodejs/node/pull/43037)
99
+ * \[[`6f48dfb499`](https://github.com/nodejs/node/commit/6f48dfb499)] - **fs**: add trailing commas (LiviaMedeiros) [#43127](https://github.com/nodejs/node/pull/43127)
100
+ * \[[`3e89b7336d`](https://github.com/nodejs/node/commit/3e89b7336d)] - **(SEMVER-MINOR)** **fs**: make params in writing methods optional (LiviaMedeiros) [#42601](https://github.com/nodejs/node/pull/42601)
101
+ * \[[`9539cfa358`](https://github.com/nodejs/node/commit/9539cfa358)] - **(SEMVER-MINOR)** **http**: add uniqueHeaders option to request and createServer (Paolo Insogna) [#41397](https://github.com/nodejs/node/pull/41397)
102
+ * \[[`b187060f76`](https://github.com/nodejs/node/commit/b187060f76)] - **http2**: set origin name correctly when servername is empty (ofirbarak) [#42838](https://github.com/nodejs/node/pull/42838)
103
+ * \[[`a07f5f28f3`](https://github.com/nodejs/node/commit/a07f5f28f3)] - **http2**: improve tests and docs (Daeyeon Jeong) [#42858](https://github.com/nodejs/node/pull/42858)
104
+ * \[[`701d40496d`](https://github.com/nodejs/node/commit/701d40496d)] - **lib**: refactor `validateInt32` and `validateUint32` (mawaregetsuka) [#43071](https://github.com/nodejs/node/pull/43071)
105
+ * \[[`09da76493a`](https://github.com/nodejs/node/commit/09da76493a)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#43231](https://github.com/nodejs/node/pull/43231)
106
+ * \[[`1da6b7c32b`](https://github.com/nodejs/node/commit/1da6b7c32b)] - **meta**: add mailmap entry for legendecas (Chengzhong Wu) [#43156](https://github.com/nodejs/node/pull/43156)
107
+ * \[[`1be254b24e`](https://github.com/nodejs/node/commit/1be254b24e)] - **meta**: add mailmap entry for npm team (Luigi Pinca) [#43143](https://github.com/nodejs/node/pull/43143)
108
+ * \[[`7d8d9d625a`](https://github.com/nodejs/node/commit/7d8d9d625a)] - **meta**: add mailmap entry for Morgan Roderick (Luigi Pinca) [#43144](https://github.com/nodejs/node/pull/43144)
109
+ * \[[`8f5b4570e5`](https://github.com/nodejs/node/commit/8f5b4570e5)] - **(SEMVER-MINOR)** **net**: add ability to reset a tcp socket (pupilTong) [#43112](https://github.com/nodejs/node/pull/43112)
110
+ * \[[`11c783fa63`](https://github.com/nodejs/node/commit/11c783fa63)] - **net**: remoteAddress always undefined called before connected (OneNail) [#43011](https://github.com/nodejs/node/pull/43011)
111
+ * \[[`9c4e070567`](https://github.com/nodejs/node/commit/9c4e070567)] - **(SEMVER-MINOR)** **node-api**: emit uncaught-exception on unhandled tsfn callbacks (Chengzhong Wu) [#36510](https://github.com/nodejs/node/pull/36510)
112
+ * \[[`54d68b1afd`](https://github.com/nodejs/node/commit/54d68b1afd)] - **perf\_hooks**: fix start\_time of perf\_hooks (theanarkh) [#43069](https://github.com/nodejs/node/pull/43069)
113
+ * \[[`baa5d0005a`](https://github.com/nodejs/node/commit/baa5d0005a)] - **src**: refactor GetCipherValue and related functions (Tobias Nießen) [#43171](https://github.com/nodejs/node/pull/43171)
114
+ * \[[`6ee9fb14e4`](https://github.com/nodejs/node/commit/6ee9fb14e4)] - **src**: make SecureContext fields private (Tobias Nießen) [#43173](https://github.com/nodejs/node/pull/43173)
115
+ * \[[`1e2552ba6c`](https://github.com/nodejs/node/commit/1e2552ba6c)] - **src**: reuse GetServerName (Tobias Nießen) [#43168](https://github.com/nodejs/node/pull/43168)
116
+ * \[[`d8a14a2486`](https://github.com/nodejs/node/commit/d8a14a2486)] - **src**: fix static analysis warning and use smart ptr (Tobias Nießen) [#43117](https://github.com/nodejs/node/pull/43117)
117
+ * \[[`72a767b7ca`](https://github.com/nodejs/node/commit/72a767b7ca)] - **src**: remove SecureContext::operator\* (Tobias Nießen) [#43121](https://github.com/nodejs/node/pull/43121)
118
+ * \[[`82fb037388`](https://github.com/nodejs/node/commit/82fb037388)] - **src**: move context snapshot index to SnapshotData (Joyee Cheung) [#43023](https://github.com/nodejs/node/pull/43023)
119
+ * \[[`9577878258`](https://github.com/nodejs/node/commit/9577878258)] - **src**: replace TraceEventScope with sync events (Chengzhong Wu) [#42977](https://github.com/nodejs/node/pull/42977)
120
+ * \[[`41b69e3cf4`](https://github.com/nodejs/node/commit/41b69e3cf4)] - **src,lib**: migrate to console on context's extra binding (Chengzhong Wu) [#43142](https://github.com/nodejs/node/pull/43142)
121
+ * \[[`3e1ed1ee0c`](https://github.com/nodejs/node/commit/3e1ed1ee0c)] - **test**: improve code coverage for inspector connection errors (Kohei Ueno) [#42310](https://github.com/nodejs/node/pull/42310)
122
+ * \[[`d7ca2234dc`](https://github.com/nodejs/node/commit/d7ca2234dc)] - **test**: use mustSucceed instead of mustCall with assert.ifError (MURAKAMI Masahiko) [#43188](https://github.com/nodejs/node/pull/43188)
123
+ * \[[`9cc5ce6a24`](https://github.com/nodejs/node/commit/9cc5ce6a24)] - **test**: improve readline/emitKeypressEvents.js coverage (OneNail) [#42908](https://github.com/nodejs/node/pull/42908)
124
+ * \[[`447bbd0d66`](https://github.com/nodejs/node/commit/447bbd0d66)] - **tls**: fix convertALPNProtocols accepting ArrayBufferViews (LiviaMedeiros) [#43211](https://github.com/nodejs/node/pull/43211)
125
+ * \[[`df691464aa`](https://github.com/nodejs/node/commit/df691464aa)] - **tools**: update lint-md-dependencies to rollup\@2.75.1 (Node.js GitHub Bot) [#43230](https://github.com/nodejs/node/pull/43230)
126
+ * \[[`d9fb25c936`](https://github.com/nodejs/node/commit/d9fb25c936)] - **tools**: refactor build-addons.js to ESM (Feng Yu) [#43099](https://github.com/nodejs/node/pull/43099)
127
+ * \[[`0efeceb4a6`](https://github.com/nodejs/node/commit/0efeceb4a6)] - **tools**: update lint-md-dependencies to rollup\@2.74.1 (Node.js GitHub Bot) [#43172](https://github.com/nodejs/node/pull/43172)
128
+ * \[[`ed352a945c`](https://github.com/nodejs/node/commit/ed352a945c)] - **tools**: update eslint to 8.16.0 (Node.js GitHub Bot) [#43174](https://github.com/nodejs/node/pull/43174)
129
+ * \[[`1183058908`](https://github.com/nodejs/node/commit/1183058908)] - **tools**: refactor update-authors.js to ESM (Feng Yu) [#43098](https://github.com/nodejs/node/pull/43098)
130
+ * \[[`5228028962`](https://github.com/nodejs/node/commit/5228028962)] - **(SEMVER-MINOR)** **tools**: update V8 gypfiles for 10.2 (Michaël Zasso) [#42740](https://github.com/nodejs/node/pull/42740)
131
+ * \[[`d6cf409d78`](https://github.com/nodejs/node/commit/d6cf409d78)] - **(SEMVER-MINOR)** **util**: add parseArgs module (Benjamin Coe) [#42675](https://github.com/nodejs/node/pull/42675)
132
+ * \[[`d91b489784`](https://github.com/nodejs/node/commit/d91b489784)] - **worker**: fix heap snapshot crash on exit (Chengzhong Wu) [#43123](https://github.com/nodejs/node/pull/43123)
133
+
134
+ <a id="18.2.0"></a>
135
+
136
+ ## 2022-05-17, Version 18.2.0 (Current), @BethGriggs prepared by @RafaelGSS
137
+
138
+ ### Notable Changes
139
+
140
+ #### OpenSSL 3.0.3
141
+
142
+ This update can be treated as a security release as the issues addressed in OpenSSL 3.0.3 slightly affect Node.js 18.
143
+ See <https://nodejs.org/en/blog/vulnerability/openssl-fixes-in-regular-releases-may2022/> for more information on how the May 2022 OpenSSL releases affect other Node.js release lines.
144
+
145
+ * \[[`8e54c19a6e`](https://github.com/nodejs/node/commit/8e54c19a6e)] - **deps**: update archs files for quictls/openssl-3.0.3+quic (RafaelGSS) [#43022](https://github.com/nodejs/node/pull/43022)
146
+ * \[[`6365bf808e`](https://github.com/nodejs/node/commit/6365bf808e)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.3 (RafaelGSS) [#43022](https://github.com/nodejs/node/pull/43022)
147
+
148
+ #### Other Notable Changes
149
+
150
+ * \[[`13c333e533`](https://github.com/nodejs/node/commit/13c333e533)] - _**Revert**_ "**deps**: add template for generated headers" (Daniel Bevenius) [#42978](https://github.com/nodejs/node/pull/42978)
151
+ * \[[`d128356a7f`](https://github.com/nodejs/node/commit/d128356a7f)] - **deps**: update undici to 5.2.0 (Node.js GitHub Bot) [#43059](https://github.com/nodejs/node/pull/43059)
152
+ * \[[`2df1624f80`](https://github.com/nodejs/node/commit/2df1624f80)] - **deps**: upgrade npm to 8.9.0 (npm team) [#42968](https://github.com/nodejs/node/pull/42968)
153
+ * \[[`6365bf808e`](https://github.com/nodejs/node/commit/6365bf808e)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.3 (RafaelGSS) [#43022](https://github.com/nodejs/node/pull/43022)
154
+ * \[[`4a3f678e70`](https://github.com/nodejs/node/commit/4a3f678e70)] - **doc**: add LiviaMedeiros to collaborators (LiviaMedeiros) [#43039](https://github.com/nodejs/node/pull/43039)
155
+ * \[[`686c4c1f6f`](https://github.com/nodejs/node/commit/686c4c1f6f)] - **doc**: add release key for Juan Arboleda (Juan José) [#42961](https://github.com/nodejs/node/pull/42961)
156
+ * \[[`784d84cf34`](https://github.com/nodejs/node/commit/784d84cf34)] - **(SEMVER-MINOR)** **fs**: add `read(buffer[, options])` versions (LiviaMedeiros) [#42768](https://github.com/nodejs/node/pull/42768)
157
+ * \[[`2f192c4be0`](https://github.com/nodejs/node/commit/2f192c4be0)] - **(SEMVER-MINOR)** **http**: added connection closing methods (Paolo Insogna) [#42812](https://github.com/nodejs/node/pull/42812)
158
+ * \[[`c92e291beb`](https://github.com/nodejs/node/commit/c92e291beb)] - **(SEMVER-MINOR)** **perf\_hooks**: add PerformanceResourceTiming (RafaelGSS) [#42725](https://github.com/nodejs/node/pull/42725)
159
+
160
+ ### Commits
161
+
162
+ * \[[`7cac7bb806`](https://github.com/nodejs/node/commit/7cac7bb806)] - **assert**: fix CallTracker wraps the function causes the length to be lost (OneNail) [#42909](https://github.com/nodejs/node/pull/42909)
163
+ * \[[`e74a8da287`](https://github.com/nodejs/node/commit/e74a8da287)] - **assert**: make `assert.fail` less affected by prototype tampering (Antoine du Hamel) [#42918](https://github.com/nodejs/node/pull/42918)
164
+ * \[[`1146806673`](https://github.com/nodejs/node/commit/1146806673)] - **bootstrap**: stop delaying instantiation of maps in per-context scripts (Darshan Sen) [#42934](https://github.com/nodejs/node/pull/42934)
165
+ * \[[`a20310d171`](https://github.com/nodejs/node/commit/a20310d171)] - **bootstrap**: use a context snapshotted with primordials in workers (Joyee Cheung) [#42867](https://github.com/nodejs/node/pull/42867)
166
+ * \[[`9ee7d9eb15`](https://github.com/nodejs/node/commit/9ee7d9eb15)] - **bootstrap**: fix wasm\_web\_api external reference registration (Joyee Cheung) [#42903](https://github.com/nodejs/node/pull/42903)
167
+ * \[[`cec678a00e`](https://github.com/nodejs/node/commit/cec678a00e)] - **build**: set ASAN workaround (Richard Lau) [#43085](https://github.com/nodejs/node/pull/43085)
168
+ * \[[`7c4df42caa`](https://github.com/nodejs/node/commit/7c4df42caa)] - **build**: disable windows-2022 temporarily (Jiawen Geng) [#43093](https://github.com/nodejs/node/pull/43093)
169
+ * \[[`0eb32ed976`](https://github.com/nodejs/node/commit/0eb32ed976)] - **build**: fix various shared library build issues (William Marlow) [#41850](https://github.com/nodejs/node/pull/41850)
170
+ * \[[`48f4a714b2`](https://github.com/nodejs/node/commit/48f4a714b2)] - **build**: fix indeterminacy of icu\_locales value (Sergey Nazaryev) [#42865](https://github.com/nodejs/node/pull/42865)
171
+ * \[[`19c060fd84`](https://github.com/nodejs/node/commit/19c060fd84)] - **crypto**: adjust minimum length in generateKey('hmac', ...) (LiviaMedeiros) [#42944](https://github.com/nodejs/node/pull/42944)
172
+ * \[[`183bcc0699`](https://github.com/nodejs/node/commit/183bcc0699)] - **crypto**: clean up parameter validation in HKDF (Tobias Nießen) [#42924](https://github.com/nodejs/node/pull/42924)
173
+ * \[[`946f57c7bc`](https://github.com/nodejs/node/commit/946f57c7bc)] - **debugger**: fix inconsistent inspector output of exec new Map() (Kohei Ueno) [#42423](https://github.com/nodejs/node/pull/42423)
174
+ * \[[`d128356a7f`](https://github.com/nodejs/node/commit/d128356a7f)] - **deps**: update undici to 5.2.0 (Node.js GitHub Bot) [#43059](https://github.com/nodejs/node/pull/43059)
175
+ * \[[`a9703a55ef`](https://github.com/nodejs/node/commit/a9703a55ef)] - **deps**: remove opensslconf template headers (Daniel Bevenius) [#43035](https://github.com/nodejs/node/pull/43035)
176
+ * \[[`a4a4f7134b`](https://github.com/nodejs/node/commit/a4a4f7134b)] - **deps**: fix llhttp version number (Michael Dawson) [#43029](https://github.com/nodejs/node/pull/43029)
177
+ * \[[`8e54c19a6e`](https://github.com/nodejs/node/commit/8e54c19a6e)] - **deps**: update archs files for quictls/openssl-3.0.3+quic (RafaelGSS) [#43022](https://github.com/nodejs/node/pull/43022)
178
+ * \[[`6365bf808e`](https://github.com/nodejs/node/commit/6365bf808e)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.3 (RafaelGSS) [#43022](https://github.com/nodejs/node/pull/43022)
179
+ * \[[`e8121ae7fe`](https://github.com/nodejs/node/commit/e8121ae7fe)] - **deps**: regenerate OpenSSL archs files (Daniel Bevenius) [#42978](https://github.com/nodejs/node/pull/42978)
180
+ * \[[`13c333e533`](https://github.com/nodejs/node/commit/13c333e533)] - _**Revert**_ "**deps**: add template for generated headers" (Daniel Bevenius) [#42978](https://github.com/nodejs/node/pull/42978)
181
+ * \[[`2df1624f80`](https://github.com/nodejs/node/commit/2df1624f80)] - **deps**: upgrade npm to 8.9.0 (npm team) [#42968](https://github.com/nodejs/node/pull/42968)
182
+ * \[[`f53ed9d1bb`](https://github.com/nodejs/node/commit/f53ed9d1bb)] - **doc**: use serial comma in fs docs (Tobias Nießen) [#43104](https://github.com/nodejs/node/pull/43104)
183
+ * \[[`839824aca8`](https://github.com/nodejs/node/commit/839824aca8)] - **doc**: use serial comma in events docs (Tobias Nießen) [#43113](https://github.com/nodejs/node/pull/43113)
184
+ * \[[`9629c74080`](https://github.com/nodejs/node/commit/9629c74080)] - **doc**: use serial comma in modules docs (Tobias Nießen) [#43103](https://github.com/nodejs/node/pull/43103)
185
+ * \[[`76096c2d4a`](https://github.com/nodejs/node/commit/76096c2d4a)] - **doc**: use serial comma in util docs (Tobias Nießen) [#43063](https://github.com/nodejs/node/pull/43063)
186
+ * \[[`1e9de0dd5a`](https://github.com/nodejs/node/commit/1e9de0dd5a)] - **doc**: remove git:// protocol, adjust nits in onboarding.md (LiviaMedeiros) [#43045](https://github.com/nodejs/node/pull/43045)
187
+ * \[[`eb630d7ef9`](https://github.com/nodejs/node/commit/eb630d7ef9)] - **doc**: add maintaining info for shared libary option (Michael Dawson) [#42517](https://github.com/nodejs/node/pull/42517)
188
+ * \[[`3816a97bae`](https://github.com/nodejs/node/commit/3816a97bae)] - **doc**: add detail for how to update llhttp (Michael Dawson) [#43028](https://github.com/nodejs/node/pull/43028)
189
+ * \[[`330e267a57`](https://github.com/nodejs/node/commit/330e267a57)] - **doc**: use serial comma in buffer docs (Tobias Nießen) [#43048](https://github.com/nodejs/node/pull/43048)
190
+ * \[[`0957212390`](https://github.com/nodejs/node/commit/0957212390)] - **doc**: use consistent method symbol (Paolo Insogna) [#42974](https://github.com/nodejs/node/pull/42974)
191
+ * \[[`22cb7104cb`](https://github.com/nodejs/node/commit/22cb7104cb)] - **doc**: add Rafael to the security steward for NearForm (Matteo Collina) [#42966](https://github.com/nodejs/node/pull/42966)
192
+ * \[[`ef177da3f1`](https://github.com/nodejs/node/commit/ef177da3f1)] - **doc**: mark some node-api functions as experimental (NickNaso) [#42987](https://github.com/nodejs/node/pull/42987)
193
+ * \[[`4a3f678e70`](https://github.com/nodejs/node/commit/4a3f678e70)] - **doc**: add LiviaMedeiros to collaborators (LiviaMedeiros) [#43039](https://github.com/nodejs/node/pull/43039)
194
+ * \[[`c988a0ed26`](https://github.com/nodejs/node/commit/c988a0ed26)] - **doc**: use serial comma in http docs (Tobias Nießen) [#43026](https://github.com/nodejs/node/pull/43026)
195
+ * \[[`4de918b4c1`](https://github.com/nodejs/node/commit/4de918b4c1)] - **doc**: add the preferred name for @himself65 (Himself65) [#43024](https://github.com/nodejs/node/pull/43024)
196
+ * \[[`686c4c1f6f`](https://github.com/nodejs/node/commit/686c4c1f6f)] - **doc**: add release key for Juan Arboleda (Juan José) [#42961](https://github.com/nodejs/node/pull/42961)
197
+ * \[[`64e0aa116d`](https://github.com/nodejs/node/commit/64e0aa116d)] - **doc**: rename N-API to Node-API in test/README.md (Daeyeon Jeong) [#42946](https://github.com/nodejs/node/pull/42946)
198
+ * \[[`65d64553c0`](https://github.com/nodejs/node/commit/65d64553c0)] - **doc**: use serial comma in tls docs (Tobias Nießen) [#43001](https://github.com/nodejs/node/pull/43001)
199
+ * \[[`840e61e745`](https://github.com/nodejs/node/commit/840e61e745)] - **doc**: improve commit message example for releases (Juan José) [#42954](https://github.com/nodejs/node/pull/42954)
200
+ * \[[`ba3ad7c665`](https://github.com/nodejs/node/commit/ba3ad7c665)] - **doc**: use serial comma in cluster docs (Tobias Nießen) [#42989](https://github.com/nodejs/node/pull/42989)
201
+ * \[[`3ab3086008`](https://github.com/nodejs/node/commit/3ab3086008)] - **doc**: fix errors in Web Streams doc (OneNail) [#42862](https://github.com/nodejs/node/pull/42862)
202
+ * \[[`1fbfee2497`](https://github.com/nodejs/node/commit/1fbfee2497)] - **doc**: fix examples in cluster.md (OneNail) [#42889](https://github.com/nodejs/node/pull/42889)
203
+ * \[[`1237c742f4`](https://github.com/nodejs/node/commit/1237c742f4)] - **doc**: add additional step to security release process (Michael Dawson) [#42916](https://github.com/nodejs/node/pull/42916)
204
+ * \[[`88692d8fd6`](https://github.com/nodejs/node/commit/88692d8fd6)] - **doc**: add section regarding property definition in `primordials.md` (Antoine du Hamel) [#42921](https://github.com/nodejs/node/pull/42921)
205
+ * \[[`924670f3af`](https://github.com/nodejs/node/commit/924670f3af)] - **doc**: clarify some default values in `fs.md` (LiviaMedeiros) [#42892](https://github.com/nodejs/node/pull/42892)
206
+ * \[[`becca06f9b`](https://github.com/nodejs/node/commit/becca06f9b)] - **fs**: remove unnecessary ?? operator (Morgan Roderick) [#43073](https://github.com/nodejs/node/pull/43073)
207
+ * \[[`784d84cf34`](https://github.com/nodejs/node/commit/784d84cf34)] - **(SEMVER-MINOR)** **fs**: add `read(buffer[, options])` versions (LiviaMedeiros) [#42768](https://github.com/nodejs/node/pull/42768)
208
+ * \[[`2f192c4be0`](https://github.com/nodejs/node/commit/2f192c4be0)] - **(SEMVER-MINOR)** **http**: added connection closing methods (Paolo Insogna) [#42812](https://github.com/nodejs/node/pull/42812)
209
+ * \[[`bfbf965eb0`](https://github.com/nodejs/node/commit/bfbf965eb0)] - **http2**: compat support for array headers (OneNail) [#42901](https://github.com/nodejs/node/pull/42901)
210
+ * \[[`46a44b3011`](https://github.com/nodejs/node/commit/46a44b3011)] - **lib**: move WebAssembly Web API into separate file (Tobias Nießen) [#42993](https://github.com/nodejs/node/pull/42993)
211
+ * \[[`c64b8d3282`](https://github.com/nodejs/node/commit/c64b8d3282)] - **lib,test**: enable wasm/webapi/empty-body WPT (Tobias Nießen) [#42960](https://github.com/nodejs/node/pull/42960)
212
+ * \[[`ddd271ec2b`](https://github.com/nodejs/node/commit/ddd271ec2b)] - **meta**: add mailmap entry for ShogunPanda (Paolo Insogna) [#43094](https://github.com/nodejs/node/pull/43094)
213
+ * \[[`174ff972f0`](https://github.com/nodejs/node/commit/174ff972f0)] - **meta**: update .mailmap for recent README name change (Rich Trott) [#43027](https://github.com/nodejs/node/pull/43027)
214
+ * \[[`16df8ad7c3`](https://github.com/nodejs/node/commit/16df8ad7c3)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#43004](https://github.com/nodejs/node/pull/43004)
215
+ * \[[`0ec32d0715`](https://github.com/nodejs/node/commit/0ec32d0715)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#42937](https://github.com/nodejs/node/pull/42937)
216
+ * \[[`037ff3da6d`](https://github.com/nodejs/node/commit/037ff3da6d)] - **node-api**: explicitly set \_\_cdecl for API functions (Vladimir Morozov) [#42780](https://github.com/nodejs/node/pull/42780)
217
+ * \[[`e2462a2f98`](https://github.com/nodejs/node/commit/e2462a2f98)] - **node-api**: fix napi\_get\_all\_property\_names (Vladimir Morozov) [#42463](https://github.com/nodejs/node/pull/42463)
218
+ * \[[`c92e291beb`](https://github.com/nodejs/node/commit/c92e291beb)] - **(SEMVER-MINOR)** **perf\_hooks**: add PerformanceResourceTiming (RafaelGSS) [#42725](https://github.com/nodejs/node/pull/42725)
219
+ * \[[`c535db1195`](https://github.com/nodejs/node/commit/c535db1195)] - **src**: delete AllocatedBuffer (Darshan Sen) [#43008](https://github.com/nodejs/node/pull/43008)
220
+ * \[[`5dc79298e1`](https://github.com/nodejs/node/commit/5dc79298e1)] - **src**: remove unnecessary comment (Kohei Ueno) [#42952](https://github.com/nodejs/node/pull/42952)
221
+ * \[[`38e4c15534`](https://github.com/nodejs/node/commit/38e4c15534)] - **src**: always signal V8 for intercepted properties (Michaël Zasso) [#42963](https://github.com/nodejs/node/pull/42963)
222
+ * \[[`cacff07e75`](https://github.com/nodejs/node/commit/cacff07e75)] - **src**: fix memory leak for v8.serialize (liuxingbaoyu) [#42695](https://github.com/nodejs/node/pull/42695)
223
+ * \[[`8cfc18e4db`](https://github.com/nodejs/node/commit/8cfc18e4db)] - **src,crypto**: remove uses of AllocatedBuffer from crypto\_rsa.cc (Darshan Sen) [#42852](https://github.com/nodejs/node/pull/42852)
224
+ * \[[`0670843b24`](https://github.com/nodejs/node/commit/0670843b24)] - **test**: fix dangerous .map in `test/parallel/test-http-set-trailers.js` (LiviaMedeiros) [#43087](https://github.com/nodejs/node/pull/43087)
225
+ * \[[`9eb8bf1d26`](https://github.com/nodejs/node/commit/9eb8bf1d26)] - **test**: reduce flakiness of `test-fs-read-position-validation.mjs` (LiviaMedeiros) [#42999](https://github.com/nodejs/node/pull/42999)
226
+ * \[[`41d2f6e8c5`](https://github.com/nodejs/node/commit/41d2f6e8c5)] - **test**: rename handlewrap.hasref tests (Daeyeon Jeong) [#42754](https://github.com/nodejs/node/pull/42754)
227
+ * \[[`e058f47277`](https://github.com/nodejs/node/commit/e058f47277)] - **test**: improve observable ICU behaviour coverage (LiviaMedeiros) [#42683](https://github.com/nodejs/node/pull/42683)
228
+ * \[[`d23debb4cb`](https://github.com/nodejs/node/commit/d23debb4cb)] - **test**: validate webstream encoder/decoder inspector (Yoshiki Kurihara) [#42747](https://github.com/nodejs/node/pull/42747)
229
+ * \[[`b1c18edaa9`](https://github.com/nodejs/node/commit/b1c18edaa9)] - **test**: use`mustSucceed` instead of `mustCall` with `assert.ifError` (MURAKAMI Masahiko) [#42806](https://github.com/nodejs/node/pull/42806)
230
+ * \[[`2dc795687a`](https://github.com/nodejs/node/commit/2dc795687a)] - **test**: improve `lib/internal/webstreams/readablestream.js` coverage (MURAKAMI Masahiko) [#42823](https://github.com/nodejs/node/pull/42823)
231
+ * \[[`d746207dc2`](https://github.com/nodejs/node/commit/d746207dc2)] - **test**: fix test-crypto-fips.js under shared OpenSSL (Vita Batrla) [#42947](https://github.com/nodejs/node/pull/42947)
232
+ * \[[`56c47b5101`](https://github.com/nodejs/node/commit/56c47b5101)] - **test**: use consistent timeouts (Paolo Insogna) [#42893](https://github.com/nodejs/node/pull/42893)
233
+ * \[[`68ed3c88d9`](https://github.com/nodejs/node/commit/68ed3c88d9)] - **test**: add test for position validation in fs.read() and fs.readSync() (LiviaMedeiros) [#42837](https://github.com/nodejs/node/pull/42837)
234
+ * \[[`72b90fd5f5`](https://github.com/nodejs/node/commit/72b90fd5f5)] - **test**: reduce impact of flaky HTTP server tests (Tobias Nießen) [#42926](https://github.com/nodejs/node/pull/42926)
235
+ * \[[`531a0a9980`](https://github.com/nodejs/node/commit/531a0a9980)] - **tools**: update lint-md-dependencies to rollup\@2.73.0 (Node.js GitHub Bot) [#43107](https://github.com/nodejs/node/pull/43107)
236
+ * \[[`64daaca46d`](https://github.com/nodejs/node/commit/64daaca46d)] - **tools**: update eslint to 8.15.0 (Node.js GitHub Bot) [#43005](https://github.com/nodejs/node/pull/43005)
237
+ * \[[`79872382ef`](https://github.com/nodejs/node/commit/79872382ef)] - **tools**: refactor lint-sh.js to esm module (Feng Yu) [#42942](https://github.com/nodejs/node/pull/42942)
238
+ * \[[`265ecdfe07`](https://github.com/nodejs/node/commit/265ecdfe07)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#43003](https://github.com/nodejs/node/pull/43003)
239
+ * \[[`e9e1f1e194`](https://github.com/nodejs/node/commit/e9e1f1e194)] - **typings**: fix `os.cpus` invalid return type (Himself65) [#43006](https://github.com/nodejs/node/pull/43006)
240
+ * \[[`55ef6e81cb`](https://github.com/nodejs/node/commit/55ef6e81cb)] - **wasm**: add missing init reported by coverity (Michael Dawson) [#42897](https://github.com/nodejs/node/pull/42897)
241
+ * \[[`5470578008`](https://github.com/nodejs/node/commit/5470578008)] - **worker**: fix stream racing with terminate (Keyhan Vakil) [#42874](https://github.com/nodejs/node/pull/42874)
242
+
243
+ <a id="18.1.0"></a>
244
+
245
+ ## 2022-05-03, Version 18.1.0 (Current), @targos
246
+
247
+ ### Notable Changes
248
+
249
+ * \[[`c46e7bbf69`](https://github.com/nodejs/node/commit/c46e7bbf69)] - **doc**: add @kuriyosh to collaborators (Yoshiki Kurihara) [#42824](https://github.com/nodejs/node/pull/42824)
250
+ * \[[`b0f7c4c8f9`](https://github.com/nodejs/node/commit/b0f7c4c8f9)] - **(SEMVER-MINOR)** **lib,src**: implement WebAssembly Web API (Tobias Nießen) [#42701](https://github.com/nodejs/node/pull/42701)
251
+ * \[[`78a860ae58`](https://github.com/nodejs/node/commit/78a860ae58)] - **(SEMVER-MINOR)** **test\_runner**: add initial CLI runner (Colin Ihrig) [#42658](https://github.com/nodejs/node/pull/42658)
252
+ * \[[`bf9240ae8c`](https://github.com/nodejs/node/commit/bf9240ae8c)] - **(SEMVER-MINOR)** **worker**: add hasRef() to MessagePort (Darshan Sen) [#42849](https://github.com/nodejs/node/pull/42849)
253
+
254
+ ### Commits
255
+
256
+ * \[[`4694f5bb96`](https://github.com/nodejs/node/commit/4694f5bb96)] - **async\_hooks**: avoid decrementing iterator after erase (Gabriel Bota) [#42749](https://github.com/nodejs/node/pull/42749)
257
+ * \[[`459546b4f0`](https://github.com/nodejs/node/commit/459546b4f0)] - **benchmark**: fix misc/startup failure (Antoine du Hamel) [#42746](https://github.com/nodejs/node/pull/42746)
258
+ * \[[`6bd24204ea`](https://github.com/nodejs/node/commit/6bd24204ea)] - **bootstrap**: use the isolate snapshot in workers (Joyee Cheung) [#42702](https://github.com/nodejs/node/pull/42702)
259
+ * \[[`29c8411f99`](https://github.com/nodejs/node/commit/29c8411f99)] - **bootstrap**: move embedded snapshot to SnapshotBuilder (Joyee Cheung) [#42702](https://github.com/nodejs/node/pull/42702)
260
+ * \[[`4050b0d64f`](https://github.com/nodejs/node/commit/4050b0d64f)] - **build**: enable V8's shared read-only heap (Michaël Zasso) [#42809](https://github.com/nodejs/node/pull/42809)
261
+ * \[[`f9994e2029`](https://github.com/nodejs/node/commit/f9994e2029)] - **build**: improve reliability of find\_python.cmd script (Luigi Pinca) [#42810](https://github.com/nodejs/node/pull/42810)
262
+ * \[[`5d15eb1a14`](https://github.com/nodejs/node/commit/5d15eb1a14)] - **build**: fix format-cpp (Darshan Sen) [#42764](https://github.com/nodejs/node/pull/42764)
263
+ * \[[`7c973474bf`](https://github.com/nodejs/node/commit/7c973474bf)] - **build**: improve the format-cpp error message (Darshan Sen) [#42765](https://github.com/nodejs/node/pull/42765)
264
+ * \[[`7681e60829`](https://github.com/nodejs/node/commit/7681e60829)] - **crypto**: validate `this` in all webcrypto methods and getters (Filip Skokan) [#42815](https://github.com/nodejs/node/pull/42815)
265
+ * \[[`2a4c8263c3`](https://github.com/nodejs/node/commit/2a4c8263c3)] - **deps**: update undici to 5.1.1 (Michaël Zasso) [#42939](https://github.com/nodejs/node/pull/42939)
266
+ * \[[`1102922ef9`](https://github.com/nodejs/node/commit/1102922ef9)] - **deps**: upgrade npm to 8.8.0 (npm team) [#42886](https://github.com/nodejs/node/pull/42886)
267
+ * \[[`279892987b`](https://github.com/nodejs/node/commit/279892987b)] - **deps**: remove linux-ppc64 architecture (Daniel Bevenius) [#42616](https://github.com/nodejs/node/pull/42616)
268
+ * \[[`4abe9879ae`](https://github.com/nodejs/node/commit/4abe9879ae)] - **deps**: remove linux-ppc architecture (Daniel Bevenius) [#42616](https://github.com/nodejs/node/pull/42616)
269
+ * \[[`8dc71f2266`](https://github.com/nodejs/node/commit/8dc71f2266)] - **deps**: remove aix-gcc architecture (Daniel Bevenius) [#42616](https://github.com/nodejs/node/pull/42616)
270
+ * \[[`6dc1f82384`](https://github.com/nodejs/node/commit/6dc1f82384)] - **deps**: remove archs/aix64-gcc (Daniel Bevenius) [#42616](https://github.com/nodejs/node/pull/42616)
271
+ * \[[`e8734a4771`](https://github.com/nodejs/node/commit/e8734a4771)] - **deps**: add note about removing asm archs (Daniel Bevenius) [#42616](https://github.com/nodejs/node/pull/42616)
272
+ * \[[`7fae2c9d6e`](https://github.com/nodejs/node/commit/7fae2c9d6e)] - **deps**: add template for generated headers (Daniel Bevenius) [#42616](https://github.com/nodejs/node/pull/42616)
273
+ * \[[`294664e32c`](https://github.com/nodejs/node/commit/294664e32c)] - **deps**: upgrade npm to 8.7.0 (npm team) [#42744](https://github.com/nodejs/node/pull/42744)
274
+ * \[[`60e461c45d`](https://github.com/nodejs/node/commit/60e461c45d)] - **doc**: reword "test directory" (LiviaMedeiros) [#42817](https://github.com/nodejs/node/pull/42817)
275
+ * \[[`227a45ba60`](https://github.com/nodejs/node/commit/227a45ba60)] - **doc**: remove legacy `-J` test.py option from BUILDING.md (LiviaMedeiros) [#42817](https://github.com/nodejs/node/pull/42817)
276
+ * \[[`e313dc6ed9`](https://github.com/nodejs/node/commit/e313dc6ed9)] - **doc**: http2.createServer `options` as optional (Daeyeon Jeong) [#42832](https://github.com/nodejs/node/pull/42832)
277
+ * \[[`8f2b2280cd`](https://github.com/nodejs/node/commit/8f2b2280cd)] - **doc**: record March 2022 security release steward (Richard Lau) [#42876](https://github.com/nodejs/node/pull/42876)
278
+ * \[[`e15d22c024`](https://github.com/nodejs/node/commit/e15d22c024)] - **doc**: initial version of security-model-strategy.md (Michael Dawson) [#42709](https://github.com/nodejs/node/pull/42709)
279
+ * \[[`fe65996790`](https://github.com/nodejs/node/commit/fe65996790)] - **doc**: clarify guide on testing internal errors (Livia Medeiros) [#42813](https://github.com/nodejs/node/pull/42813)
280
+ * \[[`2f849a460f`](https://github.com/nodejs/node/commit/2f849a460f)] - **doc**: fix markdown formatting in primordials.md (Tobias Nießen) [#42877](https://github.com/nodejs/node/pull/42877)
281
+ * \[[`cd2f5a4fd4`](https://github.com/nodejs/node/commit/cd2f5a4fd4)] - **doc**: add primordials guidelines (Antoine du Hamel) [#38635](https://github.com/nodejs/node/pull/38635)
282
+ * \[[`2d76f72665`](https://github.com/nodejs/node/commit/2d76f72665)] - **doc**: elevate node-clinic diagnostic tier (RafaelGSS) [#42802](https://github.com/nodejs/node/pull/42802)
283
+ * \[[`9b61ac2617`](https://github.com/nodejs/node/commit/9b61ac2617)] - **doc**: update WebAssembly strategy with Wasm Web API (Tobias Nießen) [#42836](https://github.com/nodejs/node/pull/42836)
284
+ * \[[`c6c1dc5833`](https://github.com/nodejs/node/commit/c6c1dc5833)] - **doc**: order `vm.Module` linker arguments correctly (Simen Bekkhus) [#42797](https://github.com/nodejs/node/pull/42797)
285
+ * \[[`c46e7bbf69`](https://github.com/nodejs/node/commit/c46e7bbf69)] - **doc**: add @kuriyosh to collaborators (Yoshiki Kurihara) [#42824](https://github.com/nodejs/node/pull/42824)
286
+ * \[[`59da1339b4`](https://github.com/nodejs/node/commit/59da1339b4)] - **doc**: add maintaining-webassembly.md (Michael Dawson) [#42660](https://github.com/nodejs/node/pull/42660)
287
+ * \[[`d9f3f05cab`](https://github.com/nodejs/node/commit/d9f3f05cab)] - **doc**: fix outdated documentation for `family` property (Antoine du Hamel) [#42789](https://github.com/nodejs/node/pull/42789)
288
+ * \[[`6fa080cb48`](https://github.com/nodejs/node/commit/6fa080cb48)] - **doc**: delete heapdump from diagnostic tooling support tiers (Tony Gorez) [#42783](https://github.com/nodejs/node/pull/42783)
289
+ * \[[`c32f76d49e`](https://github.com/nodejs/node/commit/c32f76d49e)] - **doc**: fix example in assert.md (Livia Medeiros) [#42786](https://github.com/nodejs/node/pull/42786)
290
+ * \[[`6225370b2e`](https://github.com/nodejs/node/commit/6225370b2e)] - **doc**: fix version history for Loaders API (Antoine du Hamel) [#42778](https://github.com/nodejs/node/pull/42778)
291
+ * \[[`3d65a3b13e`](https://github.com/nodejs/node/commit/3d65a3b13e)] - **doc**: add `node:` prefix for all core modules (Antoine du Hamel) [#42752](https://github.com/nodejs/node/pull/42752)
292
+ * \[[`46c880b99b`](https://github.com/nodejs/node/commit/46c880b99b)] - **doc**: clarify core modules that can be loaded without a prefix (Antoine du Hamel) [#42753](https://github.com/nodejs/node/pull/42753)
293
+ * \[[`025b3e786a`](https://github.com/nodejs/node/commit/025b3e786a)] - **doc**: consolidate use of multiple-byte units (Antoine du Hamel) [#42587](https://github.com/nodejs/node/pull/42587)
294
+ * \[[`962d80b7a1`](https://github.com/nodejs/node/commit/962d80b7a1)] - **doc**: add documentation for inherited methods (Luigi Pinca) [#42691](https://github.com/nodejs/node/pull/42691)
295
+ * \[[`222b3e6674`](https://github.com/nodejs/node/commit/222b3e6674)] - **doc**: close tag in n-api.md (Livia Medeiros) [#42751](https://github.com/nodejs/node/pull/42751)
296
+ * \[[`4c30936065`](https://github.com/nodejs/node/commit/4c30936065)] - **doc**: copyedit http.OutgoingMessage documentation (Luigi Pinca) [#42733](https://github.com/nodejs/node/pull/42733)
297
+ * \[[`d77c59d0f2`](https://github.com/nodejs/node/commit/d77c59d0f2)] - **doc**: improve fragment (`:target`) anchors behavior on HTML version (Antoine du Hamel) [#42739](https://github.com/nodejs/node/pull/42739)
298
+ * \[[`c50309cb39`](https://github.com/nodejs/node/commit/c50309cb39)] - **doc**: fix `added:` info for `outgoingMessage.writable*` (Luigi Pinca) [#42737](https://github.com/nodejs/node/pull/42737)
299
+ * \[[`6b7c35e807`](https://github.com/nodejs/node/commit/6b7c35e807)] - **doc**: delete mdb\_v8 from diagnostic tooling support tiers (Tony Gorez) [#42626](https://github.com/nodejs/node/pull/42626)
300
+ * \[[`2a07a9fc3a`](https://github.com/nodejs/node/commit/2a07a9fc3a)] - **doc**: document the 'close' and 'finish' events (Luigi Pinca) [#42704](https://github.com/nodejs/node/pull/42704)
301
+ * \[[`ef5ab8179b`](https://github.com/nodejs/node/commit/ef5ab8179b)] - **doc**: fix `added:` info for `outgoingMessage.{,un}cork()` (Luigi Pinca) [#42711](https://github.com/nodejs/node/pull/42711)
302
+ * \[[`a6e1e7a5d7`](https://github.com/nodejs/node/commit/a6e1e7a5d7)] - **doc,test**: add tests and docs for duplex.fromWeb and duplex.toWeb (Erick Wendel) [#42738](https://github.com/nodejs/node/pull/42738)
303
+ * \[[`336242a7c6`](https://github.com/nodejs/node/commit/336242a7c6)] - **errors,console**: refactor to use ES2021 syntax (小菜) [#42872](https://github.com/nodejs/node/pull/42872)
304
+ * \[[`0e16120d0d`](https://github.com/nodejs/node/commit/0e16120d0d)] - **errors,vm**: update error and use cause (Gus Caplan) [#42820](https://github.com/nodejs/node/pull/42820)
305
+ * \[[`a0638a23b0`](https://github.com/nodejs/node/commit/a0638a23b0)] - **esm**: fix imports from non-file module (Antoine du Hamel) [#42881](https://github.com/nodejs/node/pull/42881)
306
+ * \[[`dab15f69e3`](https://github.com/nodejs/node/commit/dab15f69e3)] - **esm**: graduate top-level-await to stable (Antoine du Hamel) [#42875](https://github.com/nodejs/node/pull/42875)
307
+ * \[[`48bbb73f36`](https://github.com/nodejs/node/commit/48bbb73f36)] - **fs**: fix mkdirSync so ENOSPC is correctly reported (Santiago Gimeno) [#42811](https://github.com/nodejs/node/pull/42811)
308
+ * \[[`d33cbabd79`](https://github.com/nodejs/node/commit/d33cbabd79)] - **lib**: remove experimental warning from FormData (Xuguang Mei) [#42807](https://github.com/nodejs/node/pull/42807)
309
+ * \[[`ad8269450a`](https://github.com/nodejs/node/commit/ad8269450a)] - **lib,src**: use Response URL as WebAssembly location (Tobias Nießen) [#42842](https://github.com/nodejs/node/pull/42842)
310
+ * \[[`b0f7c4c8f9`](https://github.com/nodejs/node/commit/b0f7c4c8f9)] - **(SEMVER-MINOR)** **lib,src**: implement WebAssembly Web API (Tobias Nießen) [#42701](https://github.com/nodejs/node/pull/42701)
311
+ * \[[`fdc65032a7`](https://github.com/nodejs/node/commit/fdc65032a7)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#42848](https://github.com/nodejs/node/pull/42848)
312
+ * \[[`33ac027fdf`](https://github.com/nodejs/node/commit/33ac027fdf)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#42769](https://github.com/nodejs/node/pull/42769)
313
+ * \[[`14893c5984`](https://github.com/nodejs/node/commit/14893c5984)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#42760](https://github.com/nodejs/node/pull/42760)
314
+ * \[[`2f38b4812c`](https://github.com/nodejs/node/commit/2f38b4812c)] - **meta**: move mmarchini to emeritus (mary marchini) [#42750](https://github.com/nodejs/node/pull/42750)
315
+ * \[[`718d11fdb0`](https://github.com/nodejs/node/commit/718d11fdb0)] - **perf\_hooks**: return different functions in timerify (Himself65) [#42854](https://github.com/nodejs/node/pull/42854)
316
+ * \[[`e8083664e1`](https://github.com/nodejs/node/commit/e8083664e1)] - **src**: turn SSL\_CTX\_new CHECK/segfault into JS exception (Anna Henningsen) [#42799](https://github.com/nodejs/node/pull/42799)
317
+ * \[[`37ca1102c4`](https://github.com/nodejs/node/commit/37ca1102c4)] - **src**: make --no-node-snapshot a per-process option (Joyee Cheung) [#42864](https://github.com/nodejs/node/pull/42864)
318
+ * \[[`1976284a92`](https://github.com/nodejs/node/commit/1976284a92)] - **src**: define fs.constants.S\_IWUSR & S\_IRUSR for Win (Liviu Ionescu) [#42757](https://github.com/nodejs/node/pull/42757)
319
+ * \[[`b7e9dd0278`](https://github.com/nodejs/node/commit/b7e9dd0278)] - **src**: use `node:` prefix in example (Antoine du Hamel) [#42794](https://github.com/nodejs/node/pull/42794)
320
+ * \[[`1a7af6364d`](https://github.com/nodejs/node/commit/1a7af6364d)] - **src**: large page attributing an id on Linux (David CARLIER) [#42644](https://github.com/nodejs/node/pull/42644)
321
+ * \[[`494650c09f`](https://github.com/nodejs/node/commit/494650c09f)] - **src,crypto**: remove uses of AllocatedBuffer from crypto\_ec.cc (Darshan Sen) [#42766](https://github.com/nodejs/node/pull/42766)
322
+ * \[[`8e0e576669`](https://github.com/nodejs/node/commit/8e0e576669)] - **test**: add tests for extracting function name (Kohei Ueno) [#42399](https://github.com/nodejs/node/pull/42399)
323
+ * \[[`fbda87d966`](https://github.com/nodejs/node/commit/fbda87d966)] - **test**: simplify test-gc-{http-client,net}-\* (Luigi Pinca) [#42782](https://github.com/nodejs/node/pull/42782)
324
+ * \[[`3c796f8328`](https://github.com/nodejs/node/commit/3c796f8328)] - **test**: fix `parallel/test-dgram-udp6-link-local-address` (Antoine du Hamel) [#42795](https://github.com/nodejs/node/pull/42795)
325
+ * \[[`b85a11c28e`](https://github.com/nodejs/node/commit/b85a11c28e)] - **test**: improve lib/internal/test\_runner/test.js coverage (MURAKAMI Masahiko) [#42745](https://github.com/nodejs/node/pull/42745)
326
+ * \[[`59c07a99fb`](https://github.com/nodejs/node/commit/59c07a99fb)] - **test**: check ecdsa psychic signature (Filip Skokan) [#42863](https://github.com/nodejs/node/pull/42863)
327
+ * \[[`0725064695`](https://github.com/nodejs/node/commit/0725064695)] - **test**: fix port in net-perf\_hooks (Livia Medeiros) [#42761](https://github.com/nodejs/node/pull/42761)
328
+ * \[[`7b701442de`](https://github.com/nodejs/node/commit/7b701442de)] - **test**: skip test that cannot pass under --node-builtin-modules-path (Geoffrey Booth) [#42834](https://github.com/nodejs/node/pull/42834)
329
+ * \[[`37364abc58`](https://github.com/nodejs/node/commit/37364abc58)] - **test**: fix flaky HTTP server tests (Tobias Nießen) [#42846](https://github.com/nodejs/node/pull/42846)
330
+ * \[[`8476ffb85a`](https://github.com/nodejs/node/commit/8476ffb85a)] - **test**: use `assert.match()` instead of `assert(regex.test())` (Antoine du Hamel) [#42803](https://github.com/nodejs/node/pull/42803)
331
+ * \[[`d311916f37`](https://github.com/nodejs/node/commit/d311916f37)] - **test**: fix calculations in test-worker-resource-limits (Joyee Cheung) [#42702](https://github.com/nodejs/node/pull/42702)
332
+ * \[[`deb3cf49c7`](https://github.com/nodejs/node/commit/deb3cf49c7)] - **test**: remove the legacy url parser function (Kohei Ueno) [#42656](https://github.com/nodejs/node/pull/42656)
333
+ * \[[`be44b1ffcb`](https://github.com/nodejs/node/commit/be44b1ffcb)] - **test**: improve test coverage of internal/blob (Yoshiki Kurihara) [#41513](https://github.com/nodejs/node/pull/41513)
334
+ * \[[`78a860ae58`](https://github.com/nodejs/node/commit/78a860ae58)] - **(SEMVER-MINOR)** **test\_runner**: add initial CLI runner (Colin Ihrig) [#42658](https://github.com/nodejs/node/pull/42658)
335
+ * \[[`1e7479d34c`](https://github.com/nodejs/node/commit/1e7479d34c)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#42932](https://github.com/nodejs/node/pull/42932)
336
+ * \[[`c3c5fe78dc`](https://github.com/nodejs/node/commit/c3c5fe78dc)] - **tools**: bump jsdoccomment from 0.22.1 to 0.29.0 (Rich Trott) [#42857](https://github.com/nodejs/node/pull/42857)
337
+ * \[[`97fc00a06e`](https://github.com/nodejs/node/commit/97fc00a06e)] - **tools**: update eslint to 8.14.0 (Node.js GitHub Bot) [#42845](https://github.com/nodejs/node/pull/42845)
338
+ * \[[`93fd77a16f`](https://github.com/nodejs/node/commit/93fd77a16f)] - **tools**: update doc to highlight.js\@11.5.1 (Node.js GitHub Bot) [#42758](https://github.com/nodejs/node/pull/42758)
339
+ * \[[`47c04813f7`](https://github.com/nodejs/node/commit/47c04813f7)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#42759](https://github.com/nodejs/node/pull/42759)
340
+ * \[[`18ae2c39d5`](https://github.com/nodejs/node/commit/18ae2c39d5)] - **tools**: lint osx shell scripts (Livia Medeiros) [#42712](https://github.com/nodejs/node/pull/42712)
341
+ * \[[`4af0fbd41e`](https://github.com/nodejs/node/commit/4af0fbd41e)] - **v8**: export cpu\_profiler\_metadata\_size in getHeapCodeStatistics (theanarkh) [#42818](https://github.com/nodejs/node/pull/42818)
342
+ * \[[`a19fb609d8`](https://github.com/nodejs/node/commit/a19fb609d8)] - **v8**: export more fields in getHeapStatistics (theanarkh) [#42784](https://github.com/nodejs/node/pull/42784)
343
+ * \[[`1b5856a2a9`](https://github.com/nodejs/node/commit/1b5856a2a9)] - **wasi**: remove unecessary null check (Michael Dawson) [#42819](https://github.com/nodejs/node/pull/42819)
344
+ * \[[`bf9240ae8c`](https://github.com/nodejs/node/commit/bf9240ae8c)] - **(SEMVER-MINOR)** **worker**: add hasRef() to MessagePort (Darshan Sen) [#42849](https://github.com/nodejs/node/pull/42849)
345
+ * \[[`c3922afa1c`](https://github.com/nodejs/node/commit/c3922afa1c)] - **worker**: add hasRef() to the handle object (Darshan Sen) [#42756](https://github.com/nodejs/node/pull/42756)
346
+
36
347
  <a id="18.0.0"></a>
37
348
 
38
349
  ## 2022-04-19, Version 18.0.0 (Current), @BethGriggs
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) -
@@ -331,7 +329,7 @@ For information about the governance of the Node.js project, see
331
329
  * [HarshithaKP](https://github.com/HarshithaKP) -
332
330
  **Harshitha K P** <<harshitha014@gmail.com>> (she/her)
333
331
  * [himself65](https://github.com/himself65) -
334
- **Zeyu Yang** <<himself65@outlook.com>> (he/him)
332
+ **Zeyu "Alex" Yang** <<himself65@outlook.com>> (he/him)
335
333
  * [hiroppy](https://github.com/hiroppy) -
336
334
  **Yuta Hiroto** <<hello@hiroppy.me>> (he/him)
337
335
  * [iansu](https://github.com/iansu) -
@@ -354,12 +352,16 @@ For information about the governance of the Node.js project, see
354
352
  **Juan José Arboleda** <<soyjuanarbol@gmail.com>> (he/him)
355
353
  * [JungMinu](https://github.com/JungMinu) -
356
354
  **Minwoo Jung** <<nodecorelab@gmail.com>> (he/him)
355
+ * [kuriyosh](https://github.com/kuriyosh) -
356
+ **Yoshiki Kurihara** <<yosyos0306@gmail.com>> (he/him)
357
357
  * [legendecas](https://github.com/legendecas) -
358
358
  **Chengzhong Wu** <<legendecas@gmail.com>> (he/him)
359
359
  * [Leko](https://github.com/Leko) -
360
360
  **Shingo Inoue** <<leko.noor@gmail.com>> (he/him)
361
361
  * [linkgoron](https://github.com/linkgoron) -
362
362
  **Nitzan Uziely** <<linkgoron@gmail.com>>
363
+ * [LiviaMedeiros](https://github.com/LiviaMedeiros) -
364
+ **LiviaMedeiros** <<livia@cirno.name>>
363
365
  * [lpinca](https://github.com/lpinca) -
364
366
  **Luigi Pinca** <<luigipinca@gmail.com>> (he/him)
365
367
  * [lundibundi](https://github.com/lundibundi) -
@@ -380,8 +382,6 @@ For information about the governance of the Node.js project, see
380
382
  **Milad Fa** <<mfarazma@redhat.com>> (he/him)
381
383
  * [mildsunrise](https://github.com/mildsunrise) -
382
384
  **Alba Mendez** <<me@alba.sh>> (she/her)
383
- * [mmarchini](https://github.com/mmarchini) -
384
- **Mary Marchini** <<oss@mmarchini.me>> (she/her)
385
385
  * [mscdex](https://github.com/mscdex) -
386
386
  **Brian White** <<mscdex@mscdex.net>>
387
387
  * [MylesBorins](https://github.com/MylesBorins) -
@@ -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) -
@@ -552,6 +552,8 @@ For information about the governance of the Node.js project, see
552
552
  **Mikeal Rogers** <<mikeal.rogers@gmail.com>>
553
553
  * [misterdjules](https://github.com/misterdjules) -
554
554
  **Julien Gilli** <<jgilli@netflix.com>>
555
+ * [mmarchini](https://github.com/mmarchini) -
556
+ **Mary Marchini** <<oss@mmarchini.me>> (she/her)
555
557
  * [monsanto](https://github.com/monsanto) -
556
558
  **Christopher Monsanto** <<chris@monsan.to>>
557
559
  * [MoonBall](https://github.com/MoonBall) -
@@ -630,6 +632,8 @@ For information about the governance of the Node.js project, see
630
632
  **Yihong Wang** <<yh.wang@ibm.com>>
631
633
  * [yorkie](https://github.com/yorkie) -
632
634
  **Yorkie Liu** <<yorkiefixer@gmail.com>>
635
+ * [yosuke-furukawa](https://github.com/yosuke-furukawa) -
636
+ **Yosuke Furukawa** <<yosuke.furukawa@gmail.com>>
633
637
 
634
638
  </details>
635
639
 
@@ -673,10 +677,14 @@ Primary GPG keys for Node.js Releasers (some Releasers sign with subkeys):
673
677
  `74F12602B6F1C4E913FAA37AD3A89613643B6201`
674
678
  * **James M Snell** <<jasnell@keybase.io>>
675
679
  `71DCFD284A79C3B38668286BC97EC7A07EDE3FC1`
680
+ * **Juan José Arboleda** <<soyjuanarbol@gmail.com>>
681
+ `61FC681DFB92A079F1685E77973F295594EC4689`
676
682
  * **Michaël Zasso** <<targos@protonmail.com>>
677
683
  `8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600`
678
684
  * **Myles Borins** <<myles.borins@gmail.com>>
679
685
  `C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8`
686
+ * **RafaelGSS** <<rafael.nunu@hotmail.com>>
687
+ `890C08DB8579162FEE0DF9DB8BEAB4DFCF555EF4`
680
688
  * **Richard Lau** <<rlau@redhat.com>>
681
689
  `C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C`
682
690
  * **Rod Vagg** <<rod@vagg.org>>
@@ -697,8 +705,10 @@ gpg --keyserver hkps://keys.openpgp.org --recv-keys 141F07595B7B3FFE74309A937405
697
705
  gpg --keyserver hkps://keys.openpgp.org --recv-keys 94AE36675C464D64BAFA68DD7434390BDBE9B9C5
698
706
  gpg --keyserver hkps://keys.openpgp.org --recv-keys 74F12602B6F1C4E913FAA37AD3A89613643B6201
699
707
  gpg --keyserver hkps://keys.openpgp.org --recv-keys 71DCFD284A79C3B38668286BC97EC7A07EDE3FC1
708
+ gpg --keyserver hkps://keys.openpgp.org --recv-keys 61FC681DFB92A079F1685E77973F295594EC4689
700
709
  gpg --keyserver hkps://keys.openpgp.org --recv-keys 8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600
701
710
  gpg --keyserver hkps://keys.openpgp.org --recv-keys C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8
711
+ gpg --keyserver hkps://keys.openpgp.org --recv-keys 890C08DB8579162FEE0DF9DB8BEAB4DFCF555EF4
702
712
  gpg --keyserver hkps://keys.openpgp.org --recv-keys C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C
703
713
  gpg --keyserver hkps://keys.openpgp.org --recv-keys DD8F2338BAE7501E3DD5AC78C273792F7D83545D
704
714
  gpg --keyserver hkps://keys.openpgp.org --recv-keys A48C2BEE680E841632CD4E44F07496B3EB3C1762
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.13',
39
+ 'v8_embedder_string': '-node.8',
40
40
 
41
41
  ##### V8 defaults for Node.js #####
42
42
 
@@ -132,6 +132,7 @@
132
132
  'lib/internal/net.js',
133
133
  'lib/internal/v8_prof_polyfill.js',
134
134
  'lib/internal/freeze_intrinsics.js',
135
+ 'lib/internal/wasm_web_api.js',
135
136
  'lib/internal/errors.js',
136
137
  'lib/internal/socketaddress.js',
137
138
  'lib/internal/repl.js',
@@ -211,6 +212,7 @@
211
212
  'lib/internal/test_runner/harness.js',
212
213
  'lib/internal/test_runner/test.js',
213
214
  'lib/internal/test_runner/tap_stream.js',
215
+ 'lib/internal/test_runner/utils.js',
214
216
  'lib/internal/process/worker_thread_only.js',
215
217
  'lib/internal/process/execution.js',
216
218
  'lib/internal/process/signal.js',
@@ -236,6 +238,8 @@
236
238
  'lib/internal/util/debuglog.js',
237
239
  'lib/internal/util/types.js',
238
240
  'lib/internal/util/inspect.js',
241
+ 'lib/internal/util/parse_args/utils.js',
242
+ 'lib/internal/util/parse_args/parse_args.js',
239
243
  'lib/internal/source_map/source_map_cache.js',
240
244
  'lib/internal/source_map/source_map.js',
241
245
  'lib/internal/source_map/prepare_stack_trace.js',
@@ -251,6 +255,7 @@
251
255
  'lib/internal/main/prof_process.js',
252
256
  'lib/internal/main/mksnapshot.js',
253
257
  'lib/internal/main/inspect.js',
258
+ 'lib/internal/main/test_runner.js',
254
259
  'lib/internal/main/check_syntax.js',
255
260
  'lib/internal/main/repl.js',
256
261
  'lib/internal/repl/history.js',
@@ -265,6 +270,7 @@
265
270
  'lib/internal/perf/performance.js',
266
271
  'lib/internal/perf/timerify.js',
267
272
  'lib/internal/perf/event_loop_utilization.js',
273
+ 'lib/internal/perf/resource_timing.js',
268
274
  'lib/internal/crypto/keygen.js',
269
275
  'lib/internal/crypto/cipher.js',
270
276
  'lib/internal/crypto/keys.js',
@@ -345,6 +351,7 @@
345
351
  'v8_enable_lite_mode': 0,
346
352
  'v8_enable_object_print': 1,
347
353
  'v8_enable_pointer_compression': 0,
354
+ 'v8_enable_shared_ro_heap': 1,
348
355
  'v8_enable_webassembly': 1,
349
356
  'v8_no_strict_aliasing': 1,
350
357
  'v8_optimized_debug': 1,