node-linux-s390x 17.7.0 → 17.9.1

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 (525) hide show
  1. package/CHANGELOG.md +257 -0
  2. package/README.md +13 -19
  3. package/bin/node +0 -0
  4. package/include/node/common.gypi +6 -2
  5. package/include/node/config.gypi +210 -213
  6. package/include/node/js_native_api.h +35 -46
  7. package/include/node/js_native_api_types.h +3 -6
  8. package/include/node/node_api.h +53 -60
  9. package/include/node/node_api_types.h +1 -2
  10. package/include/node/node_version.h +2 -2
  11. package/include/node/openssl/archs/BSD-x86/asm/crypto/buildinf.h +1 -1
  12. package/include/node/openssl/archs/BSD-x86/asm/include/openssl/bio.h +3 -1
  13. package/include/node/openssl/archs/BSD-x86/asm/include/openssl/crypto.h +4 -2
  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 +15 -1
  16. package/include/node/openssl/archs/BSD-x86/asm/include/openssl/x509.h +4 -4
  17. package/include/node/openssl/archs/BSD-x86/asm/include/progs.h +1 -1
  18. package/include/node/openssl/archs/BSD-x86/asm_avx2/crypto/buildinf.h +1 -1
  19. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/bio.h +3 -1
  20. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/crypto.h +4 -2
  21. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/opensslv.h +5 -5
  22. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/ssl.h +15 -1
  23. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/x509.h +4 -4
  24. package/include/node/openssl/archs/BSD-x86/asm_avx2/include/progs.h +1 -1
  25. package/include/node/openssl/archs/BSD-x86/no-asm/crypto/buildinf.h +1 -1
  26. package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/bio.h +3 -1
  27. package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/crypto.h +4 -2
  28. package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/opensslv.h +5 -5
  29. package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/ssl.h +15 -1
  30. package/include/node/openssl/archs/BSD-x86/no-asm/include/openssl/x509.h +4 -4
  31. package/include/node/openssl/archs/BSD-x86/no-asm/include/progs.h +1 -1
  32. package/include/node/openssl/archs/BSD-x86_64/asm/crypto/buildinf.h +1 -1
  33. package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/bio.h +3 -1
  34. package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/crypto.h +4 -2
  35. package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/opensslv.h +5 -5
  36. package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/ssl.h +15 -1
  37. package/include/node/openssl/archs/BSD-x86_64/asm/include/openssl/x509.h +4 -4
  38. package/include/node/openssl/archs/BSD-x86_64/asm/include/progs.h +1 -1
  39. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/crypto/buildinf.h +1 -1
  40. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/bio.h +3 -1
  41. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/crypto.h +4 -2
  42. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/opensslv.h +5 -5
  43. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/ssl.h +15 -1
  44. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/openssl/x509.h +4 -4
  45. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/include/progs.h +1 -1
  46. package/include/node/openssl/archs/BSD-x86_64/no-asm/crypto/buildinf.h +1 -1
  47. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/bio.h +3 -1
  48. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/crypto.h +4 -2
  49. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/opensslv.h +5 -5
  50. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/ssl.h +15 -1
  51. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/openssl/x509.h +4 -4
  52. package/include/node/openssl/archs/BSD-x86_64/no-asm/include/progs.h +1 -1
  53. package/include/node/openssl/archs/VC-WIN32/asm/crypto/buildinf.h +1 -1
  54. package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/bio.h +3 -1
  55. package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/crypto.h +4 -2
  56. package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/opensslv.h +5 -5
  57. package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/ssl.h +15 -1
  58. package/include/node/openssl/archs/VC-WIN32/asm/include/openssl/x509.h +4 -4
  59. package/include/node/openssl/archs/VC-WIN32/asm/include/progs.h +1 -1
  60. package/include/node/openssl/archs/VC-WIN32/asm_avx2/crypto/buildinf.h +1 -1
  61. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/bio.h +3 -1
  62. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/crypto.h +4 -2
  63. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/opensslv.h +5 -5
  64. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/ssl.h +15 -1
  65. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/openssl/x509.h +4 -4
  66. package/include/node/openssl/archs/VC-WIN32/asm_avx2/include/progs.h +1 -1
  67. package/include/node/openssl/archs/VC-WIN32/no-asm/crypto/buildinf.h +1 -1
  68. package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/bio.h +3 -1
  69. package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/crypto.h +4 -2
  70. package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/opensslv.h +5 -5
  71. package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/ssl.h +15 -1
  72. package/include/node/openssl/archs/VC-WIN32/no-asm/include/openssl/x509.h +4 -4
  73. package/include/node/openssl/archs/VC-WIN32/no-asm/include/progs.h +1 -1
  74. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/crypto/buildinf.h +1 -1
  75. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/bio.h +3 -1
  76. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/crypto.h +4 -2
  77. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/opensslv.h +5 -5
  78. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/ssl.h +15 -1
  79. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/openssl/x509.h +4 -4
  80. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/include/progs.h +1 -1
  81. package/include/node/openssl/archs/VC-WIN64A/asm/crypto/buildinf.h +1 -1
  82. package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/bio.h +3 -1
  83. package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/crypto.h +4 -2
  84. package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/opensslv.h +5 -5
  85. package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/ssl.h +15 -1
  86. package/include/node/openssl/archs/VC-WIN64A/asm/include/openssl/x509.h +4 -4
  87. package/include/node/openssl/archs/VC-WIN64A/asm/include/progs.h +1 -1
  88. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/crypto/buildinf.h +1 -1
  89. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/bio.h +3 -1
  90. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/crypto.h +4 -2
  91. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/opensslv.h +5 -5
  92. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/ssl.h +15 -1
  93. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/openssl/x509.h +4 -4
  94. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/include/progs.h +1 -1
  95. package/include/node/openssl/archs/VC-WIN64A/no-asm/crypto/buildinf.h +1 -1
  96. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/bio.h +3 -1
  97. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/crypto.h +4 -2
  98. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/opensslv.h +5 -5
  99. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/ssl.h +15 -1
  100. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/openssl/x509.h +4 -4
  101. package/include/node/openssl/archs/VC-WIN64A/no-asm/include/progs.h +1 -1
  102. package/include/node/openssl/archs/aix-gcc/asm/crypto/buildinf.h +1 -1
  103. package/include/node/openssl/archs/aix-gcc/asm/include/openssl/bio.h +3 -1
  104. package/include/node/openssl/archs/aix-gcc/asm/include/openssl/crypto.h +4 -2
  105. package/include/node/openssl/archs/aix-gcc/asm/include/openssl/opensslv.h +5 -5
  106. package/include/node/openssl/archs/aix-gcc/asm/include/openssl/ssl.h +15 -1
  107. package/include/node/openssl/archs/aix-gcc/asm/include/openssl/x509.h +4 -4
  108. package/include/node/openssl/archs/aix-gcc/asm/include/progs.h +1 -1
  109. package/include/node/openssl/archs/aix-gcc/asm_avx2/crypto/buildinf.h +1 -1
  110. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/bio.h +3 -1
  111. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/crypto.h +4 -2
  112. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/opensslv.h +5 -5
  113. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/ssl.h +15 -1
  114. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/openssl/x509.h +4 -4
  115. package/include/node/openssl/archs/aix-gcc/asm_avx2/include/progs.h +1 -1
  116. package/include/node/openssl/archs/aix-gcc/no-asm/crypto/buildinf.h +1 -1
  117. package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/bio.h +3 -1
  118. package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/crypto.h +4 -2
  119. package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/opensslv.h +5 -5
  120. package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/ssl.h +15 -1
  121. package/include/node/openssl/archs/aix-gcc/no-asm/include/openssl/x509.h +4 -4
  122. package/include/node/openssl/archs/aix-gcc/no-asm/include/progs.h +1 -1
  123. package/include/node/openssl/archs/aix64-gcc-as/asm/crypto/buildinf.h +1 -1
  124. package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/bio.h +3 -1
  125. package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/crypto.h +4 -2
  126. package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/opensslv.h +5 -5
  127. package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/ssl.h +15 -1
  128. package/include/node/openssl/archs/aix64-gcc-as/asm/include/openssl/x509.h +4 -4
  129. package/include/node/openssl/archs/aix64-gcc-as/asm/include/progs.h +1 -1
  130. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/crypto/buildinf.h +1 -1
  131. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/bio.h +3 -1
  132. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/crypto.h +4 -2
  133. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/opensslv.h +5 -5
  134. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/ssl.h +15 -1
  135. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/openssl/x509.h +4 -4
  136. package/include/node/openssl/archs/aix64-gcc-as/asm_avx2/include/progs.h +1 -1
  137. package/include/node/openssl/archs/aix64-gcc-as/no-asm/crypto/buildinf.h +1 -1
  138. package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/bio.h +3 -1
  139. package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/crypto.h +4 -2
  140. package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/opensslv.h +5 -5
  141. package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/ssl.h +15 -1
  142. package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/openssl/x509.h +4 -4
  143. package/include/node/openssl/archs/aix64-gcc-as/no-asm/include/progs.h +1 -1
  144. package/include/node/openssl/archs/darwin-i386-cc/asm/crypto/buildinf.h +1 -1
  145. package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/bio.h +3 -1
  146. package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/crypto.h +4 -2
  147. package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/opensslv.h +5 -5
  148. package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/ssl.h +15 -1
  149. package/include/node/openssl/archs/darwin-i386-cc/asm/include/openssl/x509.h +4 -4
  150. package/include/node/openssl/archs/darwin-i386-cc/asm/include/progs.h +1 -1
  151. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/crypto/buildinf.h +1 -1
  152. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/bio.h +3 -1
  153. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/crypto.h +4 -2
  154. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/opensslv.h +5 -5
  155. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/ssl.h +15 -1
  156. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/openssl/x509.h +4 -4
  157. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/include/progs.h +1 -1
  158. package/include/node/openssl/archs/darwin-i386-cc/no-asm/crypto/buildinf.h +1 -1
  159. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/bio.h +3 -1
  160. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/crypto.h +4 -2
  161. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/opensslv.h +5 -5
  162. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/ssl.h +15 -1
  163. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/openssl/x509.h +4 -4
  164. package/include/node/openssl/archs/darwin-i386-cc/no-asm/include/progs.h +1 -1
  165. package/include/node/openssl/archs/darwin64-arm64-cc/asm/crypto/buildinf.h +1 -1
  166. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/bio.h +3 -1
  167. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/crypto.h +4 -2
  168. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/opensslv.h +5 -5
  169. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/ssl.h +15 -1
  170. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/openssl/x509.h +4 -4
  171. package/include/node/openssl/archs/darwin64-arm64-cc/asm/include/progs.h +1 -1
  172. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/crypto/buildinf.h +1 -1
  173. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/bio.h +3 -1
  174. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/crypto.h +4 -2
  175. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/opensslv.h +5 -5
  176. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/ssl.h +15 -1
  177. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/openssl/x509.h +4 -4
  178. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/include/progs.h +1 -1
  179. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/crypto/buildinf.h +1 -1
  180. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/bio.h +3 -1
  181. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/crypto.h +4 -2
  182. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/opensslv.h +5 -5
  183. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/ssl.h +15 -1
  184. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/openssl/x509.h +4 -4
  185. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/include/progs.h +1 -1
  186. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/crypto/buildinf.h +1 -1
  187. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/bio.h +3 -1
  188. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/crypto.h +4 -2
  189. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/opensslv.h +5 -5
  190. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/ssl.h +15 -1
  191. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/openssl/x509.h +4 -4
  192. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/include/progs.h +1 -1
  193. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/crypto/buildinf.h +1 -1
  194. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/bio.h +3 -1
  195. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/crypto.h +4 -2
  196. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/opensslv.h +5 -5
  197. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/ssl.h +15 -1
  198. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/x509.h +4 -4
  199. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/include/progs.h +1 -1
  200. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/crypto/buildinf.h +1 -1
  201. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/bio.h +3 -1
  202. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/crypto.h +4 -2
  203. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/opensslv.h +5 -5
  204. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/ssl.h +15 -1
  205. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/openssl/x509.h +4 -4
  206. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/include/progs.h +1 -1
  207. package/include/node/openssl/archs/linux-aarch64/asm/crypto/buildinf.h +1 -1
  208. package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/bio.h +3 -1
  209. package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/crypto.h +4 -2
  210. package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/opensslv.h +5 -5
  211. package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/ssl.h +15 -1
  212. package/include/node/openssl/archs/linux-aarch64/asm/include/openssl/x509.h +4 -4
  213. package/include/node/openssl/archs/linux-aarch64/asm/include/progs.h +1 -1
  214. package/include/node/openssl/archs/linux-aarch64/asm_avx2/crypto/buildinf.h +1 -1
  215. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/bio.h +3 -1
  216. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/crypto.h +4 -2
  217. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/opensslv.h +5 -5
  218. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/ssl.h +15 -1
  219. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/openssl/x509.h +4 -4
  220. package/include/node/openssl/archs/linux-aarch64/asm_avx2/include/progs.h +1 -1
  221. package/include/node/openssl/archs/linux-aarch64/no-asm/crypto/buildinf.h +1 -1
  222. package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/bio.h +3 -1
  223. package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/crypto.h +4 -2
  224. package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/opensslv.h +5 -5
  225. package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/ssl.h +15 -1
  226. package/include/node/openssl/archs/linux-aarch64/no-asm/include/openssl/x509.h +4 -4
  227. package/include/node/openssl/archs/linux-aarch64/no-asm/include/progs.h +1 -1
  228. package/include/node/openssl/archs/linux-armv4/asm/crypto/buildinf.h +1 -1
  229. package/include/node/openssl/archs/linux-armv4/asm/include/openssl/bio.h +3 -1
  230. package/include/node/openssl/archs/linux-armv4/asm/include/openssl/crypto.h +4 -2
  231. package/include/node/openssl/archs/linux-armv4/asm/include/openssl/opensslv.h +5 -5
  232. package/include/node/openssl/archs/linux-armv4/asm/include/openssl/ssl.h +15 -1
  233. package/include/node/openssl/archs/linux-armv4/asm/include/openssl/x509.h +4 -4
  234. package/include/node/openssl/archs/linux-armv4/asm/include/progs.h +1 -1
  235. package/include/node/openssl/archs/linux-armv4/asm_avx2/crypto/buildinf.h +1 -1
  236. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/bio.h +3 -1
  237. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/crypto.h +4 -2
  238. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/opensslv.h +5 -5
  239. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/ssl.h +15 -1
  240. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/openssl/x509.h +4 -4
  241. package/include/node/openssl/archs/linux-armv4/asm_avx2/include/progs.h +1 -1
  242. package/include/node/openssl/archs/linux-armv4/no-asm/crypto/buildinf.h +1 -1
  243. package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/bio.h +3 -1
  244. package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/crypto.h +4 -2
  245. package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/opensslv.h +5 -5
  246. package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/ssl.h +15 -1
  247. package/include/node/openssl/archs/linux-armv4/no-asm/include/openssl/x509.h +4 -4
  248. package/include/node/openssl/archs/linux-armv4/no-asm/include/progs.h +1 -1
  249. package/include/node/openssl/archs/linux-elf/asm/crypto/buildinf.h +1 -1
  250. package/include/node/openssl/archs/linux-elf/asm/include/openssl/bio.h +3 -1
  251. package/include/node/openssl/archs/linux-elf/asm/include/openssl/crypto.h +4 -2
  252. package/include/node/openssl/archs/linux-elf/asm/include/openssl/opensslv.h +5 -5
  253. package/include/node/openssl/archs/linux-elf/asm/include/openssl/ssl.h +15 -1
  254. package/include/node/openssl/archs/linux-elf/asm/include/openssl/x509.h +4 -4
  255. package/include/node/openssl/archs/linux-elf/asm/include/progs.h +1 -1
  256. package/include/node/openssl/archs/linux-elf/asm_avx2/crypto/buildinf.h +1 -1
  257. package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/bio.h +3 -1
  258. package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/crypto.h +4 -2
  259. package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/opensslv.h +5 -5
  260. package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/ssl.h +15 -1
  261. package/include/node/openssl/archs/linux-elf/asm_avx2/include/openssl/x509.h +4 -4
  262. package/include/node/openssl/archs/linux-elf/asm_avx2/include/progs.h +1 -1
  263. package/include/node/openssl/archs/linux-elf/no-asm/crypto/buildinf.h +1 -1
  264. package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/bio.h +3 -1
  265. package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/crypto.h +4 -2
  266. package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/opensslv.h +5 -5
  267. package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/ssl.h +15 -1
  268. package/include/node/openssl/archs/linux-elf/no-asm/include/openssl/x509.h +4 -4
  269. package/include/node/openssl/archs/linux-elf/no-asm/include/progs.h +1 -1
  270. package/include/node/openssl/archs/linux-ppc/asm/crypto/buildinf.h +1 -1
  271. package/include/node/openssl/archs/linux-ppc/asm/include/openssl/bio.h +3 -1
  272. package/include/node/openssl/archs/linux-ppc/asm/include/openssl/crypto.h +4 -2
  273. package/include/node/openssl/archs/linux-ppc/asm/include/openssl/opensslv.h +5 -5
  274. package/include/node/openssl/archs/linux-ppc/asm/include/openssl/ssl.h +15 -1
  275. package/include/node/openssl/archs/linux-ppc/asm/include/openssl/x509.h +4 -4
  276. package/include/node/openssl/archs/linux-ppc/asm/include/progs.h +1 -1
  277. package/include/node/openssl/archs/linux-ppc/asm_avx2/crypto/buildinf.h +1 -1
  278. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/bio.h +3 -1
  279. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/crypto.h +4 -2
  280. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/opensslv.h +5 -5
  281. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/ssl.h +15 -1
  282. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/openssl/x509.h +4 -4
  283. package/include/node/openssl/archs/linux-ppc/asm_avx2/include/progs.h +1 -1
  284. package/include/node/openssl/archs/linux-ppc/no-asm/crypto/buildinf.h +1 -1
  285. package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/bio.h +3 -1
  286. package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/crypto.h +4 -2
  287. package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/opensslv.h +5 -5
  288. package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/ssl.h +15 -1
  289. package/include/node/openssl/archs/linux-ppc/no-asm/include/openssl/x509.h +4 -4
  290. package/include/node/openssl/archs/linux-ppc/no-asm/include/progs.h +1 -1
  291. package/include/node/openssl/archs/linux-ppc64/asm/crypto/buildinf.h +1 -1
  292. package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/bio.h +3 -1
  293. package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/crypto.h +4 -2
  294. package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/opensslv.h +5 -5
  295. package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/ssl.h +15 -1
  296. package/include/node/openssl/archs/linux-ppc64/asm/include/openssl/x509.h +4 -4
  297. package/include/node/openssl/archs/linux-ppc64/asm/include/progs.h +1 -1
  298. package/include/node/openssl/archs/linux-ppc64/asm_avx2/crypto/buildinf.h +1 -1
  299. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/bio.h +3 -1
  300. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/crypto.h +4 -2
  301. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/opensslv.h +5 -5
  302. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/ssl.h +15 -1
  303. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/openssl/x509.h +4 -4
  304. package/include/node/openssl/archs/linux-ppc64/asm_avx2/include/progs.h +1 -1
  305. package/include/node/openssl/archs/linux-ppc64/no-asm/crypto/buildinf.h +1 -1
  306. package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/bio.h +3 -1
  307. package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/crypto.h +4 -2
  308. package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/opensslv.h +5 -5
  309. package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/ssl.h +15 -1
  310. package/include/node/openssl/archs/linux-ppc64/no-asm/include/openssl/x509.h +4 -4
  311. package/include/node/openssl/archs/linux-ppc64/no-asm/include/progs.h +1 -1
  312. package/include/node/openssl/archs/linux-ppc64le/asm/crypto/buildinf.h +1 -1
  313. package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/bio.h +3 -1
  314. package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/crypto.h +4 -2
  315. package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/opensslv.h +5 -5
  316. package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/ssl.h +15 -1
  317. package/include/node/openssl/archs/linux-ppc64le/asm/include/openssl/x509.h +4 -4
  318. package/include/node/openssl/archs/linux-ppc64le/asm/include/progs.h +1 -1
  319. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/crypto/buildinf.h +1 -1
  320. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/bio.h +3 -1
  321. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/crypto.h +4 -2
  322. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/opensslv.h +5 -5
  323. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/ssl.h +15 -1
  324. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/openssl/x509.h +4 -4
  325. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/include/progs.h +1 -1
  326. package/include/node/openssl/archs/linux-ppc64le/no-asm/crypto/buildinf.h +1 -1
  327. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/bio.h +3 -1
  328. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/crypto.h +4 -2
  329. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/opensslv.h +5 -5
  330. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/ssl.h +15 -1
  331. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/openssl/x509.h +4 -4
  332. package/include/node/openssl/archs/linux-ppc64le/no-asm/include/progs.h +1 -1
  333. package/include/node/openssl/archs/linux-x86_64/asm/crypto/buildinf.h +1 -1
  334. package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/bio.h +3 -1
  335. package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/crypto.h +4 -2
  336. package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/opensslv.h +5 -5
  337. package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/ssl.h +15 -1
  338. package/include/node/openssl/archs/linux-x86_64/asm/include/openssl/x509.h +4 -4
  339. package/include/node/openssl/archs/linux-x86_64/asm/include/progs.h +1 -1
  340. package/include/node/openssl/archs/linux-x86_64/asm_avx2/crypto/buildinf.h +1 -1
  341. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/bio.h +3 -1
  342. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/crypto.h +4 -2
  343. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/opensslv.h +5 -5
  344. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/ssl.h +15 -1
  345. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/openssl/x509.h +4 -4
  346. package/include/node/openssl/archs/linux-x86_64/asm_avx2/include/progs.h +1 -1
  347. package/include/node/openssl/archs/linux-x86_64/no-asm/crypto/buildinf.h +1 -1
  348. package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/bio.h +3 -1
  349. package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/crypto.h +4 -2
  350. package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/opensslv.h +5 -5
  351. package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/ssl.h +15 -1
  352. package/include/node/openssl/archs/linux-x86_64/no-asm/include/openssl/x509.h +4 -4
  353. package/include/node/openssl/archs/linux-x86_64/no-asm/include/progs.h +1 -1
  354. package/include/node/openssl/archs/linux32-s390x/asm/crypto/buildinf.h +1 -1
  355. package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/bio.h +3 -1
  356. package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/crypto.h +4 -2
  357. package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/opensslv.h +5 -5
  358. package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/ssl.h +15 -1
  359. package/include/node/openssl/archs/linux32-s390x/asm/include/openssl/x509.h +4 -4
  360. package/include/node/openssl/archs/linux32-s390x/asm/include/progs.h +1 -1
  361. package/include/node/openssl/archs/linux32-s390x/asm_avx2/crypto/buildinf.h +1 -1
  362. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/bio.h +3 -1
  363. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/crypto.h +4 -2
  364. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/opensslv.h +5 -5
  365. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/ssl.h +15 -1
  366. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/openssl/x509.h +4 -4
  367. package/include/node/openssl/archs/linux32-s390x/asm_avx2/include/progs.h +1 -1
  368. package/include/node/openssl/archs/linux32-s390x/no-asm/crypto/buildinf.h +1 -1
  369. package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/bio.h +3 -1
  370. package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/crypto.h +4 -2
  371. package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/opensslv.h +5 -5
  372. package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/ssl.h +15 -1
  373. package/include/node/openssl/archs/linux32-s390x/no-asm/include/openssl/x509.h +4 -4
  374. package/include/node/openssl/archs/linux32-s390x/no-asm/include/progs.h +1 -1
  375. package/include/node/openssl/archs/linux64-mips64/asm/crypto/buildinf.h +1 -1
  376. package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/bio.h +3 -1
  377. package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/crypto.h +4 -2
  378. package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/opensslv.h +5 -5
  379. package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/ssl.h +15 -1
  380. package/include/node/openssl/archs/linux64-mips64/asm/include/openssl/x509.h +4 -4
  381. package/include/node/openssl/archs/linux64-mips64/asm/include/progs.h +1 -1
  382. package/include/node/openssl/archs/linux64-mips64/asm_avx2/crypto/buildinf.h +1 -1
  383. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/bio.h +3 -1
  384. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/crypto.h +4 -2
  385. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/opensslv.h +5 -5
  386. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/ssl.h +15 -1
  387. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/openssl/x509.h +4 -4
  388. package/include/node/openssl/archs/linux64-mips64/asm_avx2/include/progs.h +1 -1
  389. package/include/node/openssl/archs/linux64-mips64/no-asm/crypto/buildinf.h +1 -1
  390. package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/bio.h +3 -1
  391. package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/crypto.h +4 -2
  392. package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/opensslv.h +5 -5
  393. package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/ssl.h +15 -1
  394. package/include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/x509.h +4 -4
  395. package/include/node/openssl/archs/linux64-mips64/no-asm/include/progs.h +1 -1
  396. package/include/node/openssl/archs/linux64-riscv64/no-asm/crypto/buildinf.h +1 -1
  397. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/bio.h +3 -1
  398. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/crypto.h +4 -2
  399. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/opensslv.h +5 -5
  400. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/ssl.h +15 -1
  401. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/x509.h +4 -4
  402. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/progs.h +1 -1
  403. package/include/node/openssl/archs/linux64-s390x/asm/crypto/buildinf.h +1 -1
  404. package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/bio.h +3 -1
  405. package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/crypto.h +4 -2
  406. package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/opensslv.h +5 -5
  407. package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/ssl.h +15 -1
  408. package/include/node/openssl/archs/linux64-s390x/asm/include/openssl/x509.h +4 -4
  409. package/include/node/openssl/archs/linux64-s390x/asm/include/progs.h +1 -1
  410. package/include/node/openssl/archs/linux64-s390x/asm_avx2/crypto/buildinf.h +1 -1
  411. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/bio.h +3 -1
  412. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/crypto.h +4 -2
  413. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/opensslv.h +5 -5
  414. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/ssl.h +15 -1
  415. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/openssl/x509.h +4 -4
  416. package/include/node/openssl/archs/linux64-s390x/asm_avx2/include/progs.h +1 -1
  417. package/include/node/openssl/archs/linux64-s390x/no-asm/crypto/buildinf.h +1 -1
  418. package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/bio.h +3 -1
  419. package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/crypto.h +4 -2
  420. package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/opensslv.h +5 -5
  421. package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/ssl.h +15 -1
  422. package/include/node/openssl/archs/linux64-s390x/no-asm/include/openssl/x509.h +4 -4
  423. package/include/node/openssl/archs/linux64-s390x/no-asm/include/progs.h +1 -1
  424. package/include/node/openssl/archs/solaris-x86-gcc/asm/crypto/buildinf.h +1 -1
  425. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/bio.h +3 -1
  426. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/crypto.h +4 -2
  427. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/opensslv.h +5 -5
  428. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/ssl.h +15 -1
  429. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/openssl/x509.h +4 -4
  430. package/include/node/openssl/archs/solaris-x86-gcc/asm/include/progs.h +1 -1
  431. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/crypto/buildinf.h +1 -1
  432. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/bio.h +3 -1
  433. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/crypto.h +4 -2
  434. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/opensslv.h +5 -5
  435. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/ssl.h +15 -1
  436. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/openssl/x509.h +4 -4
  437. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/include/progs.h +1 -1
  438. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/crypto/buildinf.h +1 -1
  439. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/bio.h +3 -1
  440. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/crypto.h +4 -2
  441. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/opensslv.h +5 -5
  442. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/ssl.h +15 -1
  443. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/openssl/x509.h +4 -4
  444. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/include/progs.h +1 -1
  445. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/crypto/buildinf.h +1 -1
  446. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/bio.h +3 -1
  447. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/crypto.h +4 -2
  448. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/opensslv.h +5 -5
  449. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/ssl.h +15 -1
  450. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/openssl/x509.h +4 -4
  451. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/include/progs.h +1 -1
  452. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/crypto/buildinf.h +1 -1
  453. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/bio.h +3 -1
  454. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/crypto.h +4 -2
  455. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/opensslv.h +5 -5
  456. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/ssl.h +15 -1
  457. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/openssl/x509.h +4 -4
  458. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/include/progs.h +1 -1
  459. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/crypto/buildinf.h +1 -1
  460. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/bio.h +3 -1
  461. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/crypto.h +4 -2
  462. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/opensslv.h +5 -5
  463. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/ssl.h +15 -1
  464. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/openssl/x509.h +4 -4
  465. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/include/progs.h +1 -1
  466. package/include/node/openssl/asn1_asm.h +2 -0
  467. package/include/node/openssl/asn1_no-asm.h +2 -0
  468. package/include/node/openssl/asn1t_asm.h +2 -0
  469. package/include/node/openssl/asn1t_no-asm.h +2 -0
  470. package/include/node/openssl/bio_asm.h +2 -0
  471. package/include/node/openssl/bio_no-asm.h +2 -0
  472. package/include/node/openssl/bn_conf_asm.h +2 -0
  473. package/include/node/openssl/bn_conf_no-asm.h +2 -0
  474. package/include/node/openssl/cmp_asm.h +2 -0
  475. package/include/node/openssl/cmp_no-asm.h +2 -0
  476. package/include/node/openssl/cms_asm.h +2 -0
  477. package/include/node/openssl/cms_no-asm.h +2 -0
  478. package/include/node/openssl/conf_asm.h +2 -0
  479. package/include/node/openssl/conf_no-asm.h +2 -0
  480. package/include/node/openssl/configuration_asm.h +2 -0
  481. package/include/node/openssl/configuration_no-asm.h +2 -0
  482. package/include/node/openssl/crmf_asm.h +2 -0
  483. package/include/node/openssl/crmf_no-asm.h +2 -0
  484. package/include/node/openssl/crypto_asm.h +2 -0
  485. package/include/node/openssl/crypto_no-asm.h +2 -0
  486. package/include/node/openssl/ct_asm.h +2 -0
  487. package/include/node/openssl/ct_no-asm.h +2 -0
  488. package/include/node/openssl/dso_conf_asm.h +2 -0
  489. package/include/node/openssl/dso_conf_no-asm.h +2 -0
  490. package/include/node/openssl/ec.h +4 -1
  491. package/include/node/openssl/ecerr.h +2 -1
  492. package/include/node/openssl/engine.h +2 -1
  493. package/include/node/openssl/err_asm.h +2 -0
  494. package/include/node/openssl/err_no-asm.h +2 -0
  495. package/include/node/openssl/ess_asm.h +2 -0
  496. package/include/node/openssl/ess_no-asm.h +2 -0
  497. package/include/node/openssl/evp.h +3 -3
  498. package/include/node/openssl/fipskey_asm.h +2 -0
  499. package/include/node/openssl/fipskey_no-asm.h +2 -0
  500. package/include/node/openssl/lhash_asm.h +2 -0
  501. package/include/node/openssl/lhash_no-asm.h +2 -0
  502. package/include/node/openssl/ocsp_asm.h +2 -0
  503. package/include/node/openssl/ocsp_no-asm.h +2 -0
  504. package/include/node/openssl/opensslv_asm.h +2 -0
  505. package/include/node/openssl/opensslv_no-asm.h +2 -0
  506. package/include/node/openssl/pkcs12_asm.h +2 -0
  507. package/include/node/openssl/pkcs12_no-asm.h +2 -0
  508. package/include/node/openssl/pkcs7_asm.h +2 -0
  509. package/include/node/openssl/pkcs7_no-asm.h +2 -0
  510. package/include/node/openssl/safestack_asm.h +2 -0
  511. package/include/node/openssl/safestack_no-asm.h +2 -0
  512. package/include/node/openssl/self_test.h +4 -5
  513. package/include/node/openssl/srp_asm.h +2 -0
  514. package/include/node/openssl/srp_no-asm.h +2 -0
  515. package/include/node/openssl/ssl_asm.h +2 -0
  516. package/include/node/openssl/ssl_no-asm.h +2 -0
  517. package/include/node/openssl/ui_asm.h +2 -0
  518. package/include/node/openssl/ui_no-asm.h +2 -0
  519. package/include/node/openssl/x509_asm.h +2 -0
  520. package/include/node/openssl/x509_no-asm.h +2 -0
  521. package/include/node/openssl/x509_vfy_asm.h +2 -0
  522. package/include/node/openssl/x509_vfy_no-asm.h +2 -0
  523. package/include/node/openssl/x509v3_asm.h +2 -0
  524. package/include/node/openssl/x509v3_no-asm.h +2 -0
  525. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -8,6 +8,11 @@
8
8
  </tr>
9
9
  <tr>
10
10
  <td>
11
+ <a href="#17.9.1">17.9.1</a><br/>
12
+ <a href="#17.9.0">17.9.0</a><br/>
13
+ <a href="#17.8.0">17.8.0</a><br/>
14
+ <a href="#17.7.2">17.7.2</a><br/>
15
+ <a href="#17.7.1">17.7.1</a><br/>
11
16
  <a href="#17.7.0">17.7.0</a><br/>
12
17
  <a href="#17.6.0">17.6.0</a><br/>
13
18
  <a href="#17.5.0">17.5.0</a><br/>
@@ -41,6 +46,258 @@
41
46
  * [io.js](CHANGELOG_IOJS.md)
42
47
  * [Archive](CHANGELOG_ARCHIVE.md)
43
48
 
49
+ <a id="17.9.1"></a>
50
+
51
+ ## 2022-06-01, Version 17.9.1 (Current), @ruyadorno
52
+
53
+ ### Notable Changes
54
+
55
+ * Upgrade npm to 8.11.0
56
+
57
+ #### Update to OpenSSL 3.0.3
58
+
59
+ This update can be treated as a security release as the issues addressed in OpenSSL 3.0.3 slightly affect Node.js 17.
60
+ 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.
61
+
62
+ ### Commits
63
+
64
+ * \[[`17fef6ed54`](https://github.com/nodejs/node/commit/17fef6ed54)] - **deps**: upgrade npm to 8.11.0 (npm team) [#43210](https://github.com/nodejs/node/pull/43210)
65
+ * \[[`d0b53c0557`](https://github.com/nodejs/node/commit/d0b53c0557)] - **deps**: upgrade npm to 8.10.0 (npm team) [#43061](https://github.com/nodejs/node/pull/43061)
66
+ * \[[`72630d176f`](https://github.com/nodejs/node/commit/72630d176f)] - **deps**: upgrade npm to 8.9.0 (npm team) [#42968](https://github.com/nodejs/node/pull/42968)
67
+ * \[[`93d58c361e`](https://github.com/nodejs/node/commit/93d58c361e)] - **deps**: upgrade npm to 8.8.0 (npm team) [#42886](https://github.com/nodejs/node/pull/42886)
68
+ * \[[`34e6edd421`](https://github.com/nodejs/node/commit/34e6edd421)] - **deps**: upgrade npm to 8.7.0 (npm team) [#42744](https://github.com/nodejs/node/pull/42744)
69
+ * \[[`02f8b0cdad`](https://github.com/nodejs/node/commit/02f8b0cdad)] - **deps**: upgrade npm to 8.6.0 (npm team) [#42550](https://github.com/nodejs/node/pull/42550)
70
+ * \[[`871eace946`](https://github.com/nodejs/node/commit/871eace946)] - **deps**: update archs files for quictls/openssl-3.0.3 (RafaelGSS) [#43025](https://github.com/nodejs/node/pull/43025)
71
+ * \[[`05fb807ab0`](https://github.com/nodejs/node/commit/05fb807ab0)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.3 (RafaelGSS) [#43025](https://github.com/nodejs/node/pull/43025)
72
+
73
+ <a id="17.9.0"></a>
74
+
75
+ ## 2022-04-07, Version 17.9.0 (Current), @BethGriggs prepared by @juanarbol
76
+
77
+ ### Notable Changes
78
+
79
+ * \[[`7124f91cbf`](https://github.com/nodejs/node/commit/7124f91cbf)] - **(SEMVER-MINOR)** **crypto**: make authTagLength optional for CC20P1305 (Tobias Nießen) [#42427](https://github.com/nodejs/node/pull/42427)
80
+ * \[[`30dc6dd3fb`](https://github.com/nodejs/node/commit/30dc6dd3fb)] - **deps**: update undici to 4.16.0 (Node.js GitHub Bot) [#42414](https://github.com/nodejs/node/pull/42414)
81
+ * \[[`f0fc2744a5`](https://github.com/nodejs/node/commit/f0fc2744a5)] - **doc**: add @meixg to collaborators (Xuguang Mei) [#42576](https://github.com/nodejs/node/pull/42576)
82
+
83
+ ### Commits
84
+
85
+ * \[[`bb71433334`](https://github.com/nodejs/node/commit/bb71433334)] - **async\_hooks**: remove destroyed symbol on Promises (Gerhard Stöbich) [#42402](https://github.com/nodejs/node/pull/42402)
86
+ * \[[`b48a6cb3f9`](https://github.com/nodejs/node/commit/b48a6cb3f9)] - **bootstrap**: reset process.\_exit and process.exitCode in pre-execution (Joyee Cheung) [#42466](https://github.com/nodejs/node/pull/42466)
87
+ * \[[`b89f038537`](https://github.com/nodejs/node/commit/b89f038537)] - **bootstrap**: run inspector and event loop in snapshot builder (Joyee Cheung) [#42466](https://github.com/nodejs/node/pull/42466)
88
+ * \[[`177558600e`](https://github.com/nodejs/node/commit/177558600e)] - **bootstrap**: make I/O streams work with user-land snapshot (Joyee Cheung) [#42466](https://github.com/nodejs/node/pull/42466)
89
+ * \[[`e3683cb34d`](https://github.com/nodejs/node/commit/e3683cb34d)] - **bootstrap**: refresh options in pre-execution (Joyee Cheung) [#42466](https://github.com/nodejs/node/pull/42466)
90
+ * \[[`d302d2f0d2`](https://github.com/nodejs/node/commit/d302d2f0d2)] - **bootstrap**: use SnapshotData to pass snapshot data around (Joyee Cheung) [#42360](https://github.com/nodejs/node/pull/42360)
91
+ * \[[`eb3dfc00f0`](https://github.com/nodejs/node/commit/eb3dfc00f0)] - **buffer**: improve Blob constructor error message when passing a string (Xuguang Mei) [#42338](https://github.com/nodejs/node/pull/42338)
92
+ * \[[`f45d5537c1`](https://github.com/nodejs/node/commit/f45d5537c1)] - **buffer**: fix `atob` input validation (Antoine du Hamel) [#42539](https://github.com/nodejs/node/pull/42539)
93
+ * \[[`fb6a5ba8d7`](https://github.com/nodejs/node/commit/fb6a5ba8d7)] - **build**: remove precompiled header and debug information for host builds (Niyas Sait) [#42538](https://github.com/nodejs/node/pull/42538)
94
+ * \[[`1f7d2e800c`](https://github.com/nodejs/node/commit/1f7d2e800c)] - **build**: windows/arm64 native compilation support (Niyas Sait) [#42408](https://github.com/nodejs/node/pull/42408)
95
+ * \[[`d9a1d7866c`](https://github.com/nodejs/node/commit/d9a1d7866c)] - **build**: consolidate JS and md linting GitHub Actions (Rich Trott) [#42572](https://github.com/nodejs/node/pull/42572)
96
+ * \[[`ecb5be845d`](https://github.com/nodejs/node/commit/ecb5be845d)] - **build**: set stale action back to running nightly (Michael Dawson) [#42549](https://github.com/nodejs/node/pull/42549)
97
+ * \[[`f9fb7f6d96`](https://github.com/nodejs/node/commit/f9fb7f6d96)] - **build**: add --node-snapshot-main configure option (Joyee Cheung) [#42466](https://github.com/nodejs/node/pull/42466)
98
+ * \[[`c6808f088b`](https://github.com/nodejs/node/commit/c6808f088b)] - **build**: bump actions/checkout (Eliaz Bobadilla) [#42460](https://github.com/nodejs/node/pull/42460)
99
+ * \[[`9a54acb7c6`](https://github.com/nodejs/node/commit/9a54acb7c6)] - **child\_process**: add env contents types in JSDoc (Rich Trott) [#42494](https://github.com/nodejs/node/pull/42494)
100
+ * \[[`a2f07380ea`](https://github.com/nodejs/node/commit/a2f07380ea)] - **crypto**: do not add undefined hash in webcrypto normalizeAlgorithm (Filip Skokan) [#42559](https://github.com/nodejs/node/pull/42559)
101
+ * \[[`9b4bd7d031`](https://github.com/nodejs/node/commit/9b4bd7d031)] - **crypto**: cleanup webcrypto jwk code (Filip Skokan) [#42562](https://github.com/nodejs/node/pull/42562)
102
+ * \[[`541a1328b0`](https://github.com/nodejs/node/commit/541a1328b0)] - **crypto**: fix webcrypto derive key lengths (Filip Skokan) [#42542](https://github.com/nodejs/node/pull/42542)
103
+ * \[[`7124f91cbf`](https://github.com/nodejs/node/commit/7124f91cbf)] - **(SEMVER-MINOR)** **crypto**: make authTagLength optional for CC20P1305 (Tobias Nießen) [#42427](https://github.com/nodejs/node/pull/42427)
104
+ * \[[`30dc6dd3fb`](https://github.com/nodejs/node/commit/30dc6dd3fb)] - **deps**: update undici to 4.16.0 (Node.js GitHub Bot) [#42414](https://github.com/nodejs/node/pull/42414)
105
+ * \[[`6e56924274`](https://github.com/nodejs/node/commit/6e56924274)] - **doc**: simplify Http2Stream encoding text (Rich Trott) [#42597](https://github.com/nodejs/node/pull/42597)
106
+ * \[[`261672b1da`](https://github.com/nodejs/node/commit/261672b1da)] - **doc**: remove obsolete stream API selection text (Rich Trott) [#42586](https://github.com/nodejs/node/pull/42586)
107
+ * \[[`beffed1880`](https://github.com/nodejs/node/commit/beffed1880)] - **doc**: remove faulty justification for 128-bit AES (Tobias Nießen) [#42578](https://github.com/nodejs/node/pull/42578)
108
+ * \[[`71f4a39086`](https://github.com/nodejs/node/commit/71f4a39086)] - **doc**: fix documentation of `FileHandle.prototype.appendFile` (Antoine du Hamel) [#42588](https://github.com/nodejs/node/pull/42588)
109
+ * \[[`c83ea22f7c`](https://github.com/nodejs/node/commit/c83ea22f7c)] - **doc**: change "OCSP Request" to "OCSP request" (Tobias Nießen) [#42582](https://github.com/nodejs/node/pull/42582)
110
+ * \[[`71ab0dea35`](https://github.com/nodejs/node/commit/71ab0dea35)] - **doc**: aes webcrypto unwrap is not a node-specific extensions (Filip Skokan) [#42561](https://github.com/nodejs/node/pull/42561)
111
+ * \[[`1c614184da`](https://github.com/nodejs/node/commit/1c614184da)] - **doc**: simplify recommendations in process.md (Rich Trott) [#42556](https://github.com/nodejs/node/pull/42556)
112
+ * \[[`c036800ddc`](https://github.com/nodejs/node/commit/c036800ddc)] - **doc**: clarify recommendations in stream.md (Rich Trott) [#42555](https://github.com/nodejs/node/pull/42555)
113
+ * \[[`dcf0abf8c7`](https://github.com/nodejs/node/commit/dcf0abf8c7)] - **doc**: simplify recommendation in webcrypto.md (Rich Trott) [#42554](https://github.com/nodejs/node/pull/42554)
114
+ * \[[`8333fa063b`](https://github.com/nodejs/node/commit/8333fa063b)] - **doc**: update DEP0102 text (Rich Trott) [#42553](https://github.com/nodejs/node/pull/42553)
115
+ * \[[`8b08bff682`](https://github.com/nodejs/node/commit/8b08bff682)] - **doc**: remove util.promisify() content in readline.md (Rich Trott) [#42552](https://github.com/nodejs/node/pull/42552)
116
+ * \[[`94492424ba`](https://github.com/nodejs/node/commit/94492424ba)] - **doc**: add introduction sentence for CJS (Antoine du Hamel) [#42491](https://github.com/nodejs/node/pull/42491)
117
+ * \[[`f0fc2744a5`](https://github.com/nodejs/node/commit/f0fc2744a5)] - **doc**: add @meixg to collaborators (Xuguang Mei) [#42576](https://github.com/nodejs/node/pull/42576)
118
+ * \[[`d935fef594`](https://github.com/nodejs/node/commit/d935fef594)] - **doc**: consolidate CI sections (Rich Trott) [#42534](https://github.com/nodejs/node/pull/42534)
119
+ * \[[`fd45df314b`](https://github.com/nodejs/node/commit/fd45df314b)] - **doc**: document breaking change in `http.IncomingMessage` `'close'` event (Paolo Insogna) [#42521](https://github.com/nodejs/node/pull/42521)
120
+ * \[[`53584fa750`](https://github.com/nodejs/node/commit/53584fa750)] - **doc**: remove extraneous comma (Rich Trott) [#42548](https://github.com/nodejs/node/pull/42548)
121
+ * \[[`b819af6509`](https://github.com/nodejs/node/commit/b819af6509)] - **doc**: guide towards x509.fingerprint256 (Tobias Nießen) [#42516](https://github.com/nodejs/node/pull/42516)
122
+ * \[[`f2355e41ed`](https://github.com/nodejs/node/commit/f2355e41ed)] - **doc**: fix internal link in collaborator-guide.md (Daeyeon Jeong) [#42551](https://github.com/nodejs/node/pull/42551)
123
+ * \[[`ffc6776996`](https://github.com/nodejs/node/commit/ffc6776996)] - **doc**: add suggestion for OpenSSL only sec releases (Michael Dawson) [#42456](https://github.com/nodejs/node/pull/42456)
124
+ * \[[`1454c0297d`](https://github.com/nodejs/node/commit/1454c0297d)] - **doc**: fix comment text in async\_hooks example (Rich Trott) [#42499](https://github.com/nodejs/node/pull/42499)
125
+ * \[[`b9ab9867f4`](https://github.com/nodejs/node/commit/b9ab9867f4)] - **doc**: add `stability` class to legacy status description (Daniel Roe) [#42525](https://github.com/nodejs/node/pull/42525)
126
+ * \[[`6c13988d53`](https://github.com/nodejs/node/commit/6c13988d53)] - **doc**: suggest checkHost in checkServerIdentity docs (Tobias Nießen) [#42495](https://github.com/nodejs/node/pull/42495)
127
+ * \[[`28665a9dd6`](https://github.com/nodejs/node/commit/28665a9dd6)] - **doc**: update security release onboarding (Joe Sepi) [#42333](https://github.com/nodejs/node/pull/42333)
128
+ * \[[`d335addf0c`](https://github.com/nodejs/node/commit/d335addf0c)] - **doc**: fix question promise API example (Xuguang Mei) [#42465](https://github.com/nodejs/node/pull/42465)
129
+ * \[[`7cf9febcb4`](https://github.com/nodejs/node/commit/7cf9febcb4)] - **doc**: remove comma splice in events.md (Rich Trott) [#42484](https://github.com/nodejs/node/pull/42484)
130
+ * \[[`3c3684d9f1`](https://github.com/nodejs/node/commit/3c3684d9f1)] - **doc**: clarify napi\_finalize behavior (Alba Mendez) [#42461](https://github.com/nodejs/node/pull/42461)
131
+ * \[[`334cc1936b`](https://github.com/nodejs/node/commit/334cc1936b)] - **doc**: expand history for conditional exports changes in v12 (Greg Poole) [#42339](https://github.com/nodejs/node/pull/42339)
132
+ * \[[`fb146f9eaf`](https://github.com/nodejs/node/commit/fb146f9eaf)] - **doc**: change comma-splice to two sentences (Rich Trott) [#42455](https://github.com/nodejs/node/pull/42455)
133
+ * \[[`ce4b823946`](https://github.com/nodejs/node/commit/ce4b823946)] - **doc**: add link to section (Rich Trott) [#42428](https://github.com/nodejs/node/pull/42428)
134
+ * \[[`5869275479`](https://github.com/nodejs/node/commit/5869275479)] - **doc**: fix typo in async\_context.md (Anupama Codippily) [#42444](https://github.com/nodejs/node/pull/42444)
135
+ * \[[`48bd9fa2c7`](https://github.com/nodejs/node/commit/48bd9fa2c7)] - **doc**: add `trace_gc` to diagnostic tooling support document (Tony Gorez) [#42346](https://github.com/nodejs/node/pull/42346)
136
+ * \[[`00f693b6b1`](https://github.com/nodejs/node/commit/00f693b6b1)] - **doc**: make header smaller and dropdown click-driven when JS is on (Paolo Insogna) [#42165](https://github.com/nodejs/node/pull/42165)
137
+ * \[[`abbb23620a`](https://github.com/nodejs/node/commit/abbb23620a)] - **doc**: standardize typography for \_semantic versioning\_ (Rich Trott) [#42401](https://github.com/nodejs/node/pull/42401)
138
+ * \[[`e763e575c6`](https://github.com/nodejs/node/commit/e763e575c6)] - **doc**: unify import order in CCM example (Tobias Nießen) [#42394](https://github.com/nodejs/node/pull/42394)
139
+ * \[[`10d638a735`](https://github.com/nodejs/node/commit/10d638a735)] - **doc**: update property name (Rich Trott) [#42398](https://github.com/nodejs/node/pull/42398)
140
+ * \[[`5589a448b7`](https://github.com/nodejs/node/commit/5589a448b7)] - **doc,test**: clarify ChaCha20-Poly1305 usage (Tobias Nießen) [#42323](https://github.com/nodejs/node/pull/42323)
141
+ * \[[`902776e674`](https://github.com/nodejs/node/commit/902776e674)] - **esm**: emit experimental warnings in common place (Jacob Smith) [#42314](https://github.com/nodejs/node/pull/42314)
142
+ * \[[`8009cb0a78`](https://github.com/nodejs/node/commit/8009cb0a78)] - **fs**: fix write methods param validation and docs (Livia Medeiros) [#42631](https://github.com/nodejs/node/pull/42631)
143
+ * \[[`a9dc3a92d9`](https://github.com/nodejs/node/commit/a9dc3a92d9)] - **lib**: prepare files for no-var lint rule (Rich Trott) [#42573](https://github.com/nodejs/node/pull/42573)
144
+ * \[[`3306fee824`](https://github.com/nodejs/node/commit/3306fee824)] - **lib**: source maps filter null prefix (Fabian Cook) [#42522](https://github.com/nodejs/node/pull/42522)
145
+ * \[[`3bac969655`](https://github.com/nodejs/node/commit/3bac969655)] - **lib**: improve the coverage of the validator (mawaregetsuka) [#42443](https://github.com/nodejs/node/pull/42443)
146
+ * \[[`b74de21cc3`](https://github.com/nodejs/node/commit/b74de21cc3)] - **lib**: update JSDoc for linting (Rich Trott) [#42489](https://github.com/nodejs/node/pull/42489)
147
+ * \[[`7766bf954f`](https://github.com/nodejs/node/commit/7766bf954f)] - **meta**: update .mailmap and AUTHORS (Rich Trott) [#42602](https://github.com/nodejs/node/pull/42602)
148
+ * \[[`93ffc5535a`](https://github.com/nodejs/node/commit/93ffc5535a)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#42500](https://github.com/nodejs/node/pull/42500)
149
+ * \[[`256509056d`](https://github.com/nodejs/node/commit/256509056d)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#42585](https://github.com/nodejs/node/pull/42585)
150
+ * \[[`41c2a32390`](https://github.com/nodejs/node/commit/41c2a32390)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#42488](https://github.com/nodejs/node/pull/42488)
151
+ * \[[`b71a8107c0`](https://github.com/nodejs/node/commit/b71a8107c0)] - **net,dns**: trace tcp connection and dns by perf\_hooks (theanarkh) [#42390](https://github.com/nodejs/node/pull/42390)
152
+ * \[[`f9f3b6e45d`](https://github.com/nodejs/node/commit/f9f3b6e45d)] - **node-api**: format Node-API related code (Vladimir Morozov) [#42396](https://github.com/nodejs/node/pull/42396)
153
+ * \[[`0bd9d9e24f`](https://github.com/nodejs/node/commit/0bd9d9e24f)] - **os**: avoid unnecessary usage of var (Mohammed Keyvanzadeh) [#42563](https://github.com/nodejs/node/pull/42563)
154
+ * \[[`e798e26dfd`](https://github.com/nodejs/node/commit/e798e26dfd)] - **src**: add proper mutexes for accessing FIPS state (Anna Henningsen) [#42278](https://github.com/nodejs/node/pull/42278)
155
+ * \[[`a1fe0d2222`](https://github.com/nodejs/node/commit/a1fe0d2222)] - **src**: fix typo in InspectorIoDelegate constructor (Kohei Ueno) [#42520](https://github.com/nodejs/node/pull/42520)
156
+ * \[[`0c54f3637b`](https://github.com/nodejs/node/commit/0c54f3637b)] - **src**: remove unnecessary static qualifier in crypto\_dh.cc (Darshan Sen) [#42492](https://github.com/nodejs/node/pull/42492)
157
+ * \[[`2e6a66d7d7`](https://github.com/nodejs/node/commit/2e6a66d7d7)] - **src**: address 3 useless call coverity warnings (Michael Dawson) [#42426](https://github.com/nodejs/node/pull/42426)
158
+ * \[[`ce9d840079`](https://github.com/nodejs/node/commit/ce9d840079)] - **src**: properly report exceptions from AddressToJS() (Darshan Sen) [#42054](https://github.com/nodejs/node/pull/42054)
159
+ * \[[`c6a558c61b`](https://github.com/nodejs/node/commit/c6a558c61b)] - **src**: suppress false coverity warning (Michael Dawson) [#42284](https://github.com/nodejs/node/pull/42284)
160
+ * \[[`878148c266`](https://github.com/nodejs/node/commit/878148c266)] - **src**: refactor IsSupportedAuthenticatedMode (Tobias Nießen) [#42368](https://github.com/nodejs/node/pull/42368)
161
+ * \[[`970483ffd3`](https://github.com/nodejs/node/commit/970483ffd3)] - **src,crypto**: handle empty maybe correctly in crypto\_dh.cc (Darshan Sen) [#42492](https://github.com/nodejs/node/pull/42492)
162
+ * \[[`a348f8ac1a`](https://github.com/nodejs/node/commit/a348f8ac1a)] - **src,crypto**: remove uses of AllocatedBuffer from crypto\_dh.cc (Darshan Sen) [#42492](https://github.com/nodejs/node/pull/42492)
163
+ * \[[`fb25ba435c`](https://github.com/nodejs/node/commit/fb25ba435c)] - **test**: improve lib/internal/readline/promises.js coverage (MURAKAMI Masahiko) [#42420](https://github.com/nodejs/node/pull/42420)
164
+ * \[[`4cbb1ea910`](https://github.com/nodejs/node/commit/4cbb1ea910)] - **test**: remove hack for `atob` and `btoa` WPT tests (Antoine du Hamel) [#42540](https://github.com/nodejs/node/pull/42540)
165
+ * \[[`f41a4780d5`](https://github.com/nodejs/node/commit/f41a4780d5)] - **test**: pass data into napi\_create\_external (Joyee Cheung) [#42532](https://github.com/nodejs/node/pull/42532)
166
+ * \[[`90554572b5`](https://github.com/nodejs/node/commit/90554572b5)] - **test**: improve `FileHandle.prototype.write` coverage (Antoine du Hamel) [#42541](https://github.com/nodejs/node/pull/42541)
167
+ * \[[`797994e4c0`](https://github.com/nodejs/node/commit/797994e4c0)] - **test**: add test for exception handlings in debugger (Kohei Ueno) [#42327](https://github.com/nodejs/node/pull/42327)
168
+ * \[[`8c9b5e9a36`](https://github.com/nodejs/node/commit/8c9b5e9a36)] - **test**: fix typo in common/wpt.js (Ikko Ashimine) [#42567](https://github.com/nodejs/node/pull/42567)
169
+ * \[[`2f682091cd`](https://github.com/nodejs/node/commit/2f682091cd)] - **test**: fix typos in test/parallel (Daeyeon Jeong) [#42502](https://github.com/nodejs/node/pull/42502)
170
+ * \[[`52d1c8d6d9`](https://github.com/nodejs/node/commit/52d1c8d6d9)] - **test**: add trace-gc flag test (Tony Gorez) [#42471](https://github.com/nodejs/node/pull/42471)
171
+ * \[[`19c933c79a`](https://github.com/nodejs/node/commit/19c933c79a)] - **test,fs**: add fs.rm() tests for .git directories (Darshan Sen) [#42410](https://github.com/nodejs/node/pull/42410)
172
+ * \[[`d64c4fb94d`](https://github.com/nodejs/node/commit/d64c4fb94d)] - **tools**: enable no-var ESLint rule for lib (Rich Trott) [#42573](https://github.com/nodejs/node/pull/42573)
173
+ * \[[`a9f2636d12`](https://github.com/nodejs/node/commit/a9f2636d12)] - **tools**: fixed bug causing JSON format to be broken (mawaregetsuka) [#41565](https://github.com/nodejs/node/pull/41565)
174
+ * \[[`bff9cae16a`](https://github.com/nodejs/node/commit/bff9cae16a)] - **tools**: update GHA actions version (Antoine du Hamel) [#42498](https://github.com/nodejs/node/pull/42498)
175
+ * \[[`c6bfb225cd`](https://github.com/nodejs/node/commit/c6bfb225cd)] - **tools**: update eslint to 8.12.0 (Node.js GitHub Bot) [#42489](https://github.com/nodejs/node/pull/42489)
176
+ * \[[`464e57ffc7`](https://github.com/nodejs/node/commit/464e57ffc7)] - **tools**: update lint-md-dependencies to vfile-reporter\@7.0.4 (Node.js GitHub Bot) [#42487](https://github.com/nodejs/node/pull/42487)
177
+ * \[[`13dd8e73df`](https://github.com/nodejs/node/commit/13dd8e73df)] - **tools**: refloat 7 Node.js patches to cpplint.py (Rich Trott) [#42416](https://github.com/nodejs/node/pull/42416)
178
+ * \[[`3a1b0e5b87`](https://github.com/nodejs/node/commit/3a1b0e5b87)] - **tools**: bump cpplint to 1.6.0 (Rich Trott) [#42416](https://github.com/nodejs/node/pull/42416)
179
+ * \[[`9344a06d9c`](https://github.com/nodejs/node/commit/9344a06d9c)] - **tools**: fix skip PR if CI is still running (Xuguang Mei) [#42377](https://github.com/nodejs/node/pull/42377)
180
+
181
+ <a id="17.8.0"></a>
182
+
183
+ ## 2022-03-22, Version 17.8.0 (Current), @bengl
184
+
185
+ ### Notable Changes
186
+
187
+ * \[[`3bd0078457`](https://github.com/nodejs/node/commit/3bd0078457)] - **doc**: add @ShogunPanda to collaborators (Shogun) [#42362](https://github.com/nodejs/node/pull/42362)
188
+ * \[[`23354673be`](https://github.com/nodejs/node/commit/23354673be)] - **doc**: deprecate string coercion in `fs.write`, `fs.writeFileSync` (Livia Medeiros) [#42149](https://github.com/nodejs/node/pull/42149)
189
+ * \[[`da42ffb85e`](https://github.com/nodejs/node/commit/da42ffb85e)] - **(SEMVER-MINOR)** **http**: trace http client by perf\_hooks (theanarkh) [#42345](https://github.com/nodejs/node/pull/42345)
190
+ * \[[`84fd6e54b0`](https://github.com/nodejs/node/commit/84fd6e54b0)] - **deps**: upgrade npm to 8.5.5 (npm team) [#42382](https://github.com/nodejs/node/pull/42382)
191
+ * \[[`b60262ee9f`](https://github.com/nodejs/node/commit/b60262ee9f)] - **deps**: update undici to 4.15.1 (Michaël Zasso) [#42246](https://github.com/nodejs/node/pull/42246)
192
+
193
+ ### Commits
194
+
195
+ * \[[`1796f035c7`](https://github.com/nodejs/node/commit/1796f035c7)] - **build**: rename tools workflow and add undici to it (Michaël Zasso) [#42246](https://github.com/nodejs/node/pull/42246)
196
+ * \[[`f27bcec2ea`](https://github.com/nodejs/node/commit/f27bcec2ea)] - **build**: use ccache in make-v8.sh on ppc64le and s390x (Richard Lau) [#42204](https://github.com/nodejs/node/pull/42204)
197
+ * \[[`f48c3baf5a`](https://github.com/nodejs/node/commit/f48c3baf5a)] - **crypto**: fix auth tag length error when mode != GCM (Tobias Nießen) [#42383](https://github.com/nodejs/node/pull/42383)
198
+ * \[[`1d0468f749`](https://github.com/nodejs/node/commit/1d0468f749)] - **crypto**: fix fingerprint string size calculation (Tobias Nießen) [#42175](https://github.com/nodejs/node/pull/42175)
199
+ * \[[`a4632a3dc2`](https://github.com/nodejs/node/commit/a4632a3dc2)] - **crypto**: add CHECKs to remaining BIO\_s\_mem allocs (Tobias Nießen) [#42155](https://github.com/nodejs/node/pull/42155)
200
+ * \[[`3b55946452`](https://github.com/nodejs/node/commit/3b55946452)] - **debugger**: correct typo in inspect\_repl.js (Kohei Ueno) [#42267](https://github.com/nodejs/node/pull/42267)
201
+ * \[[`84fd6e54b0`](https://github.com/nodejs/node/commit/84fd6e54b0)] - **deps**: upgrade npm to 8.5.5 (npm team) [#42382](https://github.com/nodejs/node/pull/42382)
202
+ * \[[`f2178fcc1a`](https://github.com/nodejs/node/commit/f2178fcc1a)] - **deps**: cares: cherry-pick b5a3d96 (bradh352) [#42216](https://github.com/nodejs/node/pull/42216)
203
+ * \[[`063ff08cb1`](https://github.com/nodejs/node/commit/063ff08cb1)] - **deps**: V8: cherry-pick c6f6626deb14 (Lu Yahan) [#42240](https://github.com/nodejs/node/pull/42240)
204
+ * \[[`b60262ee9f`](https://github.com/nodejs/node/commit/b60262ee9f)] - **deps**: update undici to 4.15.1 (Michaël Zasso) [#42246](https://github.com/nodejs/node/pull/42246)
205
+ * \[[`70c0758308`](https://github.com/nodejs/node/commit/70c0758308)] - **deps**: upgrade npm to 8.5.3 (npm team) [#42205](https://github.com/nodejs/node/pull/42205)
206
+ * \[[`fd51e78963`](https://github.com/nodejs/node/commit/fd51e78963)] - **doc**: fix version history for `net.Socket` and `net.Server` (Antoine du Hamel) [#42268](https://github.com/nodejs/node/pull/42268)
207
+ * \[[`db83c4d6dc`](https://github.com/nodejs/node/commit/db83c4d6dc)] - **doc**: improve README.md usability (Rich Trott) [#42378](https://github.com/nodejs/node/pull/42378)
208
+ * \[[`88d3401329`](https://github.com/nodejs/node/commit/88d3401329)] - **doc**: add that chacha20-poly1305 is IETF version (Tobias Nießen) [#42370](https://github.com/nodejs/node/pull/42370)
209
+ * \[[`04a7c0061b`](https://github.com/nodejs/node/commit/04a7c0061b)] - **doc**: update instructions for openssl updates (Michael Dawson) [#42353](https://github.com/nodejs/node/pull/42353)
210
+ * \[[`78b858dd4b`](https://github.com/nodejs/node/commit/78b858dd4b)] - **doc**: document goal to have examples (Michael Dawson) [#42274](https://github.com/nodejs/node/pull/42274)
211
+ * \[[`a5e42f0113`](https://github.com/nodejs/node/commit/a5e42f0113)] - **doc**: fix Embedder's Guide link to V8 official docs (Aroyan) [#42373](https://github.com/nodejs/node/pull/42373)
212
+ * \[[`6c265e7243`](https://github.com/nodejs/node/commit/6c265e7243)] - **doc**: remove unneeded lint disable comment (Rich Trott) [#42374](https://github.com/nodejs/node/pull/42374)
213
+ * \[[`46d3d23e64`](https://github.com/nodejs/node/commit/46d3d23e64)] - **doc**: revise async\_hooks docs (Rich Trott) [#42337](https://github.com/nodejs/node/pull/42337)
214
+ * \[[`3bd0078457`](https://github.com/nodejs/node/commit/3bd0078457)] - **doc**: add @ShogunPanda to collaborators (Shogun) [#42362](https://github.com/nodejs/node/pull/42362)
215
+ * \[[`e7e8eb9f03`](https://github.com/nodejs/node/commit/e7e8eb9f03)] - **doc**: update base branch name for `nodejs/nodejs.org` (Danielle Adams) [#42355](https://github.com/nodejs/node/pull/42355)
216
+ * \[[`fd7e4ab654`](https://github.com/nodejs/node/commit/fd7e4ab654)] - **doc**: fix async iterable pipeline signal examples (Randall Leeds) [#42258](https://github.com/nodejs/node/pull/42258)
217
+ * \[[`96dc591b55`](https://github.com/nodejs/node/commit/96dc591b55)] - **doc**: clarify path search in `child_process.spawn` (Damjan Cvetko) [#41418](https://github.com/nodejs/node/pull/41418)
218
+ * \[[`72dd50016a`](https://github.com/nodejs/node/commit/72dd50016a)] - **doc**: clarify the meaning of legacy status (Darshan Sen) [#42269](https://github.com/nodejs/node/pull/42269)
219
+ * \[[`8b99099063`](https://github.com/nodejs/node/commit/8b99099063)] - **doc**: improve pipe description (Mikael Finstad) [#42295](https://github.com/nodejs/node/pull/42295)
220
+ * \[[`701dc14fdf`](https://github.com/nodejs/node/commit/701dc14fdf)] - **doc**: remove outdated timeout.unref content (Xuguang Mei) [#42241](https://github.com/nodejs/node/pull/42241)
221
+ * \[[`23354673be`](https://github.com/nodejs/node/commit/23354673be)] - **doc**: deprecate string coercion in `fs.write`, `fs.writeFileSync` (Livia Medeiros) [#42149](https://github.com/nodejs/node/pull/42149)
222
+ * \[[`f3c6c00963`](https://github.com/nodejs/node/commit/f3c6c00963)] - **doc**: remove refs to old OpenSSL list-\* commands (Tobias Nießen) [#42235](https://github.com/nodejs/node/pull/42235)
223
+ * \[[`19851f8d2d`](https://github.com/nodejs/node/commit/19851f8d2d)] - **doc**: readline `'line'` event emits final line (Matt Probert) [#42214](https://github.com/nodejs/node/pull/42214)
224
+ * \[[`e55283b978`](https://github.com/nodejs/node/commit/e55283b978)] - **esm**: make extension-less errors in type:module actionable (Bradley Farias) [#42301](https://github.com/nodejs/node/pull/42301)
225
+ * \[[`e17db8f0fa`](https://github.com/nodejs/node/commit/e17db8f0fa)] - **esm**: improve typings and code coverage (Bradley Farias) [#42305](https://github.com/nodejs/node/pull/42305)
226
+ * \[[`4829a1047f`](https://github.com/nodejs/node/commit/4829a1047f)] - **esm**: add runtime warning for specifier resolution flag (Geoffrey Booth) [#42252](https://github.com/nodejs/node/pull/42252)
227
+ * \[[`da42ffb85e`](https://github.com/nodejs/node/commit/da42ffb85e)] - **(SEMVER-MINOR)** **http**: trace http client by perf\_hooks (theanarkh) [#42345](https://github.com/nodejs/node/pull/42345)
228
+ * \[[`88dee3c6b5`](https://github.com/nodejs/node/commit/88dee3c6b5)] - **http2**: fix potential integer overflow (Michael Dawson) [#42248](https://github.com/nodejs/node/pull/42248)
229
+ * \[[`1fe0b69c31`](https://github.com/nodejs/node/commit/1fe0b69c31)] - **lib**: refactor to use primordials in `lib/assert.js` (Akhil Marsonya) [#41702](https://github.com/nodejs/node/pull/41702)
230
+ * \[[`69a3792540`](https://github.com/nodejs/node/commit/69a3792540)] - **lib**: fix AsyncResource.bind not using 'this' from the caller by default (Roch Devost) [#42177](https://github.com/nodejs/node/pull/42177)
231
+ * \[[`1c87ce6a32`](https://github.com/nodejs/node/commit/1c87ce6a32)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#42404](https://github.com/nodejs/node/pull/42404)
232
+ * \[[`e7b8d83acd`](https://github.com/nodejs/node/commit/e7b8d83acd)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#42317](https://github.com/nodejs/node/pull/42317)
233
+ * \[[`7fc4b9f08d`](https://github.com/nodejs/node/commit/7fc4b9f08d)] - **meta**: add dependencies label to label-pr-config (Mestery) [#42129](https://github.com/nodejs/node/pull/42129)
234
+ * \[[`e96042442b`](https://github.com/nodejs/node/commit/e96042442b)] - **src**: convert hex2bin() into a regular function (Darshan Sen) [#42321](https://github.com/nodejs/node/pull/42321)
235
+ * \[[`21198c1407`](https://github.com/nodejs/node/commit/21198c1407)] - **src**: fix coverity warnings in node\_file.cc (Michael Dawson) [#42272](https://github.com/nodejs/node/pull/42272)
236
+ * \[[`846b074075`](https://github.com/nodejs/node/commit/846b074075)] - **src**: check EC\_POINT\_get\_affine\_coordinates result (Tobias Nießen) [#42304](https://github.com/nodejs/node/pull/42304)
237
+ * \[[`8b84e68cbd`](https://github.com/nodejs/node/commit/8b84e68cbd)] - **src**: simplify bound check in ParseArrayIndex (Tobias Nießen) [#42306](https://github.com/nodejs/node/pull/42306)
238
+ * \[[`9500e5862e`](https://github.com/nodejs/node/commit/9500e5862e)] - **src**: avoid returning invalid value from hex2bin (Tobias Nießen) [#42307](https://github.com/nodejs/node/pull/42307)
239
+ * \[[`08e2d8ab86`](https://github.com/nodejs/node/commit/08e2d8ab86)] - **src**: check return value of HMAC\_Final (Tobias Nießen) [#42303](https://github.com/nodejs/node/pull/42303)
240
+ * \[[`9fc4b9b04e`](https://github.com/nodejs/node/commit/9fc4b9b04e)] - **src**: include internal/options in the snapshot (Joyee Cheung) [#42203](https://github.com/nodejs/node/pull/42203)
241
+ * \[[`e43aa30982`](https://github.com/nodejs/node/commit/e43aa30982)] - **src**: remove redundant buffer size check (Tobias Nießen) [#42257](https://github.com/nodejs/node/pull/42257)
242
+ * \[[`d06e92dba0`](https://github.com/nodejs/node/commit/d06e92dba0)] - **src**: perform minor cleanups on zlib code (Anna Henningsen) [#42247](https://github.com/nodejs/node/pull/42247)
243
+ * \[[`9af908305d`](https://github.com/nodejs/node/commit/9af908305d)] - **src**: use `emplace_back` instead of `push_back` (Yash Ladha) [#42159](https://github.com/nodejs/node/pull/42159)
244
+ * \[[`62d9a7f5db`](https://github.com/nodejs/node/commit/62d9a7f5db)] - **src**: fix unchecked return warning from coverity (Michael Dawson) [#42176](https://github.com/nodejs/node/pull/42176)
245
+ * \[[`58763d7f9d`](https://github.com/nodejs/node/commit/58763d7f9d)] - **src,crypto**: avoid tristate Maybe\<bool> in ExportJWKEcKey() (Darshan Sen) [#42223](https://github.com/nodejs/node/pull/42223)
246
+ * \[[`5367002bc8`](https://github.com/nodejs/node/commit/5367002bc8)] - **stream**: do cleanup when iterator is destroyed (Khoo Hao Yit) [#42320](https://github.com/nodejs/node/pull/42320)
247
+ * \[[`3492a0eb1e`](https://github.com/nodejs/node/commit/3492a0eb1e)] - **string\_decoder**: fix crash when calling \_\_proto\_\_.write() (Darshan Sen) [#42062](https://github.com/nodejs/node/pull/42062)
248
+ * \[[`d9a5c2b284`](https://github.com/nodejs/node/commit/d9a5c2b284)] - **test**: give slow tests more time on Rasberry PIs (Michael Dawson) [#42380](https://github.com/nodejs/node/pull/42380)
249
+ * \[[`b82bac09ff`](https://github.com/nodejs/node/commit/b82bac09ff)] - **test**: improve https\_renew\_cert.sh script (Tobias Nießen) [#42343](https://github.com/nodejs/node/pull/42343)
250
+ * \[[`dfdce7c182`](https://github.com/nodejs/node/commit/dfdce7c182)] - **test**: improve \_http\_incoming.js coverage (Yoshiki Kurihara) [#42211](https://github.com/nodejs/node/pull/42211)
251
+ * \[[`4941791f29`](https://github.com/nodejs/node/commit/4941791f29)] - **test**: improve \_http\_outgoing coverage (Yoshiki Kurihara) [#42213](https://github.com/nodejs/node/pull/42213)
252
+ * \[[`94e5eaa7e9`](https://github.com/nodejs/node/commit/94e5eaa7e9)] - **test**: add test case for reverted 17.7 regression (Rich Trott) [#42283](https://github.com/nodejs/node/pull/42283)
253
+ * \[[`a4aa9eb97f`](https://github.com/nodejs/node/commit/a4aa9eb97f)] - **test**: use global webcrypto for WPT tests (Antoine du Hamel) [#42236](https://github.com/nodejs/node/pull/42236)
254
+ * \[[`26d4a2d489`](https://github.com/nodejs/node/commit/26d4a2d489)] - **test,crypto**: add and update empty passphrase regression tests (Darshan Sen) [#42319](https://github.com/nodejs/node/pull/42319)
255
+ * \[[`4fd2aff42e`](https://github.com/nodejs/node/commit/4fd2aff42e)] - **tools**: make update-undici script executable (Michaël Zasso) [#42406](https://github.com/nodejs/node/pull/42406)
256
+ * \[[`38e7681ac7`](https://github.com/nodejs/node/commit/38e7681ac7)] - **tools**: update lint-md-dependencies to rollup\@2.70.1 (Node.js GitHub Bot) [#42403](https://github.com/nodejs/node/pull/42403)
257
+ * \[[`b7a4b4b1fd`](https://github.com/nodejs/node/commit/b7a4b4b1fd)] - **tools**: update doc to highlight.js\@11.5.0 unified\@10.1.2 (Node.js GitHub Bot) [#42315](https://github.com/nodejs/node/pull/42315)
258
+ * \[[`30ea1889d5`](https://github.com/nodejs/node/commit/30ea1889d5)] - **tools**: update lint-md-dependencies to rollup\@2.70.0 unified\@10.1.2 (Node.js GitHub Bot) [#42316](https://github.com/nodejs/node/pull/42316)
259
+ * \[[`eb0e1a1147`](https://github.com/nodejs/node/commit/eb0e1a1147)] - **tools**: update eslint to 8.11.0 (Node.js GitHub Bot) [#42318](https://github.com/nodejs/node/pull/42318)
260
+ * \[[`e95426fd3a`](https://github.com/nodejs/node/commit/e95426fd3a)] - **tools**: fix web streams API links (Brian White) [#42153](https://github.com/nodejs/node/pull/42153)
261
+ * \[[`fe01940f35`](https://github.com/nodejs/node/commit/fe01940f35)] - **url**: preserve null char in WHATWG URL errors (Rich Trott) [#42263](https://github.com/nodejs/node/pull/42263)
262
+ * \[[`b89f4d5c17`](https://github.com/nodejs/node/commit/b89f4d5c17)] - **url**: trim leading and trailing C0 control chars (Rich Trott) [#42196](https://github.com/nodejs/node/pull/42196)
263
+ * \[[`229fb40edc`](https://github.com/nodejs/node/commit/229fb40edc)] - **worker**: do not send message if port is closing (Rich Trott) [#42357](https://github.com/nodejs/node/pull/42357)
264
+
265
+ <a id="17.7.2"></a>
266
+
267
+ ## 2022-03-17, Version 17.7.2 (Current), @richardlau
268
+
269
+ This is a security release.
270
+
271
+ ### Notable Changes
272
+
273
+ Update to OpenSSL 3.0.2, which addresses the following vulnerability:
274
+
275
+ * Infinite loop in `BN_mod_sqrt()` reachable when parsing certificates (High)(CVE-2022-0778)
276
+ More details are available at <https://www.openssl.org/news/secadv/20220315.txt>
277
+
278
+ ### Commits
279
+
280
+ * \[[`55e293e05f`](https://github.com/nodejs/node/commit/55e293e05f)] - **deps**: update archs files for quictls/openssl-3.0.2+quic (Hassaan Pasha) [#42356](https://github.com/nodejs/node/pull/42356)
281
+ * \[[`b8d090603d`](https://github.com/nodejs/node/commit/b8d090603d)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.2+quic (Hassaan Pasha) [#42356](https://github.com/nodejs/node/pull/42356)
282
+ * \[[`c8b6d92af0`](https://github.com/nodejs/node/commit/c8b6d92af0)] - **test**: fix tests affected by OpenSSL update (Michael Dawson) [#42356](https://github.com/nodejs/node/pull/42356)
283
+ * \[[`457e31ea09`](https://github.com/nodejs/node/commit/457e31ea09)] - **test**: renew certificates for specific test (Luigi Pinca) [#42342](https://github.com/nodejs/node/pull/42342)
284
+
285
+ <a id="17.7.1"></a>
286
+
287
+ ## 2022-03-10, Version 17.7.1 (Current), @BethGriggs prepared by @sxa
288
+
289
+ ### Notable Changes
290
+
291
+ #### Fixed regression in url.resolve()
292
+
293
+ This release fixes an issue introduced in Node.js v17.7.0 with some URLs
294
+ that contain `@`. This issue affected yarn 1. This version reverts the
295
+ change that introduced the regression.
296
+
297
+ ### Commits
298
+
299
+ * \[[`96a9e00fb3`](https://github.com/nodejs/node/commit/96a9e00fb3)] - **url**: revert fix url.parse() for `@hostname` (Antoine du Hamel) [#42280](https://github.com/nodejs/node/pull/42280)
300
+
44
301
  <a id="17.7.0"></a>
45
302
 
46
303
  ## 2022-03-09, Version 17.7.0 (Current), @BethGriggs prepared by @sxa
package/README.md CHANGED
@@ -1,14 +1,4 @@
1
- <!--lint disable no-literal-urls-->
2
-
3
- <p align="center">
4
- <a href="https://nodejs.org/">
5
- <img
6
- alt="Node.js"
7
- src="https://nodejs.org/static/images/logo-light.svg"
8
- width="400"
9
- />
10
- </a>
11
- </p>
1
+ # Node.js
12
2
 
13
3
  Node.js is an open-source, cross-platform, JavaScript runtime environment.
14
4
 
@@ -19,7 +9,7 @@ The Node.js project uses an [open governance model](./GOVERNANCE.md). The
19
9
 
20
10
  **This project has a [Code of Conduct][].**
21
11
 
22
- # Table of contents
12
+ ## Table of contents
23
13
 
24
14
  * [Support](#support)
25
15
  * [Release types](#release-types)
@@ -61,7 +51,7 @@ Looking for help? Check out the
61
51
  * **Nightly**: Code from the Current branch built every 24-hours when there are
62
52
  changes. Use with caution.
63
53
 
64
- Current and LTS releases follow [Semantic Versioning](https://semver.org). A
54
+ Current and LTS releases follow [semantic versioning](https://semver.org). A
65
55
  member of the Release Team [signs](#release-keys) each Current and LTS release.
66
56
  For more information, see the
67
57
  [Release README](https://github.com/nodejs/Release#readme).
@@ -123,7 +113,7 @@ import the keys:
123
113
  $ gpg --keyserver hkps://keys.openpgp.org --recv-keys DD8F2338BAE7501E3DD5AC78C273792F7D83545D
124
114
  ```
125
115
 
126
- See the bottom of this README for a full script to import active release keys.
116
+ See [Release keys](#release-keys) for a script to import active release keys.
127
117
 
128
118
  Next, download the `SHASUMS256.txt.sig` for the release:
129
119
 
@@ -342,8 +332,6 @@ For information about the governance of the Node.js project, see
342
332
  **Guy Bedford** <<guybedford@gmail.com>> (he/him)
343
333
  * [HarshithaKP](https://github.com/HarshithaKP) -
344
334
  **Harshitha K P** <<harshitha014@gmail.com>> (she/her)
345
- * [hashseed](https://github.com/hashseed) -
346
- **Yang Guo** <<yangguo@chromium.org>> (he/him)
347
335
  * [himself65](https://github.com/himself65) -
348
336
  **Zeyu Yang** <<himself65@outlook.com>> (he/him)
349
337
  * [hiroppy](https://github.com/hiroppy) -
@@ -384,6 +372,8 @@ For information about the governance of the Node.js project, see
384
372
  **Akhil Marsonya** <<akhil.marsonya27@gmail.com>> (he/him)
385
373
  * [mcollina](https://github.com/mcollina) -
386
374
  **Matteo Collina** <<matteo.collina@gmail.com>> (he/him)
375
+ * [meixg](https://github.com/meixg) -
376
+ **Xuguang Mei** <<meixuguang@gmail.com>> (he/him)
387
377
  * [Mesteery](https://github.com/Mesteery) -
388
378
  **Mestery** <<mestery@protonmail.com>> (he/him)
389
379
  * [mhdawson](https://github.com/mhdawson) -
@@ -428,6 +418,8 @@ For information about the governance of the Node.js project, see
428
418
  **Santiago Gimeno** <<santiago.gimeno@gmail.com>>
429
419
  * [shisama](https://github.com/shisama) -
430
420
  **Masashi Hirano** <<shisama07@gmail.com>> (he/him)
421
+ * [ShogunPanda](https://github.com/ShogunPanda) -
422
+ **Paolo Insogna** <<paolo@cowtech.it>> (he/him)
431
423
  * [srl295](https://github.com/srl295) -
432
424
  **Steven R Loomis** <<srloomis@us.ibm.com>>
433
425
  * [starkwang](https://github.com/starkwang) -
@@ -510,6 +502,8 @@ For information about the governance of the Node.js project, see
510
502
  **Gibson Fahnestock** <<gibfahn@gmail.com>> (he/him)
511
503
  * [glentiki](https://github.com/glentiki) -
512
504
  **Glen Keane** <<glenkeane.94@gmail.com>> (he/him)
505
+ * [hashseed](https://github.com/hashseed) -
506
+ **Yang Guo** <<yangguo@chromium.org>> (he/him)
513
507
  * [iarna](https://github.com/iarna) -
514
508
  **Rebecca Turner** <<me@re-becca.org>>
515
509
  * [imran-iq](https://github.com/imran-iq) -
@@ -653,7 +647,7 @@ maintaining the Node.js project.
653
647
  * [marsonya](https://github.com/marsonya) -
654
648
  **Akhil Marsonya** <<akhil.marsonya27@gmail.com>> (he/him)
655
649
  * [meixg](https://github.com/meixg) -
656
- **Xuguang Mei** <<meixg@foxmail.com>> (he/him)
650
+ **Xuguang Mei** <<meixuguang@gmail.com>> (he/him)
657
651
  * [Mesteery](https://github.com/Mesteery) -
658
652
  **Mestery** <<mestery@protonmail.com>> (he/him)
659
653
  * [PoojaDurgad](https://github.com/PoojaDurgad) -
@@ -710,8 +704,8 @@ gpg --keyserver hkps://keys.openpgp.org --recv-keys 108F52B48DB57BB0CC439B2997B0
710
704
  gpg --keyserver hkps://keys.openpgp.org --recv-keys B9E2F5981AA6E0CD28160D9FF13993A75599653C
711
705
  ```
712
706
 
713
- See the section above on [Verifying binaries](#verifying-binaries) for how to
714
- use these keys to verify a downloaded file.
707
+ See [Verifying binaries](#verifying-binaries) for how to use these keys to
708
+ verify a downloaded file.
715
709
 
716
710
  <details>
717
711
 
package/bin/node CHANGED
Binary file
@@ -36,7 +36,7 @@
36
36
 
37
37
  # Reset this number to 0 on major V8 upgrades.
38
38
  # Increment by one for each non-official patch applied to deps/v8.
39
- 'v8_embedder_string': '-node.15',
39
+ 'v8_embedder_string': '-node.16',
40
40
 
41
41
  ##### V8 defaults for Node.js #####
42
42
 
@@ -280,7 +280,11 @@
280
280
  '-std:c++17'
281
281
  ],
282
282
  'BufferSecurityCheck': 'true',
283
- 'DebugInformationFormat': 1, # /Z7 embed info in .obj files
283
+ 'target_conditions': [
284
+ ['_toolset=="target"', {
285
+ 'DebugInformationFormat': 1 # /Z7 embed info in .obj files
286
+ }],
287
+ ],
284
288
  'ExceptionHandling': 0, # /EHsc
285
289
  'MultiProcessorCompilation': 'true',
286
290
  'StringPooling': 'true', # pool string literals