node-aix-ppc64 16.14.2 → 16.16.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 (144) hide show
  1. package/CHANGELOG.md +354 -0
  2. package/LICENSE +25 -0
  3. package/README.md +35 -31
  4. package/bin/node +0 -0
  5. package/include/node/common.gypi +6 -7
  6. package/include/node/config.gypi +5 -1
  7. package/include/node/js_native_api.h +6 -0
  8. package/include/node/node.exp +34 -18
  9. package/include/node/node.h +6 -1
  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_avx2/crypto/buildinf.h +1 -1
  13. package/include/node/openssl/archs/BSD-x86/no-asm/crypto/buildinf.h +1 -1
  14. package/include/node/openssl/archs/BSD-x86_64/asm/crypto/buildinf.h +1 -1
  15. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/crypto/buildinf.h +1 -1
  16. package/include/node/openssl/archs/BSD-x86_64/no-asm/crypto/buildinf.h +1 -1
  17. package/include/node/openssl/archs/VC-WIN32/asm/crypto/buildinf.h +1 -1
  18. package/include/node/openssl/archs/VC-WIN32/asm_avx2/crypto/buildinf.h +1 -1
  19. package/include/node/openssl/archs/VC-WIN32/no-asm/crypto/buildinf.h +1 -1
  20. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/crypto/buildinf.h +1 -1
  21. package/include/node/openssl/archs/VC-WIN64A/asm/crypto/buildinf.h +1 -1
  22. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/crypto/buildinf.h +1 -1
  23. package/include/node/openssl/archs/VC-WIN64A/no-asm/crypto/buildinf.h +1 -1
  24. package/include/node/openssl/archs/aix-gcc/asm/crypto/buildinf.h +1 -1
  25. package/include/node/openssl/archs/aix-gcc/asm_avx2/crypto/buildinf.h +1 -1
  26. package/include/node/openssl/archs/aix-gcc/no-asm/crypto/buildinf.h +1 -1
  27. package/include/node/openssl/archs/aix64-gcc/asm/crypto/buildinf.h +1 -1
  28. package/include/node/openssl/archs/aix64-gcc/asm_avx2/crypto/buildinf.h +1 -1
  29. package/include/node/openssl/archs/aix64-gcc/no-asm/crypto/buildinf.h +1 -1
  30. package/include/node/openssl/archs/darwin-i386-cc/asm/crypto/buildinf.h +1 -1
  31. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/crypto/buildinf.h +1 -1
  32. package/include/node/openssl/archs/darwin-i386-cc/no-asm/crypto/buildinf.h +1 -1
  33. package/include/node/openssl/archs/darwin64-arm64-cc/asm/crypto/buildinf.h +1 -1
  34. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/crypto/buildinf.h +1 -1
  35. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/crypto/buildinf.h +1 -1
  36. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/crypto/buildinf.h +1 -1
  37. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/crypto/buildinf.h +1 -1
  38. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/crypto/buildinf.h +1 -1
  39. package/include/node/openssl/archs/linux-aarch64/asm/crypto/buildinf.h +1 -1
  40. package/include/node/openssl/archs/linux-aarch64/asm_avx2/crypto/buildinf.h +1 -1
  41. package/include/node/openssl/archs/linux-aarch64/no-asm/crypto/buildinf.h +1 -1
  42. package/include/node/openssl/archs/linux-armv4/asm/crypto/buildinf.h +1 -1
  43. package/include/node/openssl/archs/linux-armv4/asm_avx2/crypto/buildinf.h +1 -1
  44. package/include/node/openssl/archs/linux-armv4/no-asm/crypto/buildinf.h +1 -1
  45. package/include/node/openssl/archs/linux-elf/asm/crypto/buildinf.h +1 -1
  46. package/include/node/openssl/archs/linux-elf/asm_avx2/crypto/buildinf.h +1 -1
  47. package/include/node/openssl/archs/linux-elf/no-asm/crypto/buildinf.h +1 -1
  48. package/include/node/openssl/archs/linux-ppc/asm/crypto/buildinf.h +1 -1
  49. package/include/node/openssl/archs/linux-ppc/asm_avx2/crypto/buildinf.h +1 -1
  50. package/include/node/openssl/archs/linux-ppc/no-asm/crypto/buildinf.h +1 -1
  51. package/include/node/openssl/archs/linux-ppc64/asm/crypto/buildinf.h +1 -1
  52. package/include/node/openssl/archs/linux-ppc64/asm_avx2/crypto/buildinf.h +1 -1
  53. package/include/node/openssl/archs/linux-ppc64/no-asm/crypto/buildinf.h +1 -1
  54. package/include/node/openssl/archs/linux-ppc64le/asm/crypto/buildinf.h +1 -1
  55. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/crypto/buildinf.h +1 -1
  56. package/include/node/openssl/archs/linux-ppc64le/no-asm/crypto/buildinf.h +1 -1
  57. package/include/node/openssl/archs/linux-x86_64/asm/crypto/buildinf.h +1 -1
  58. package/include/node/openssl/archs/linux-x86_64/asm_avx2/crypto/buildinf.h +1 -1
  59. package/include/node/openssl/archs/linux-x86_64/no-asm/crypto/buildinf.h +1 -1
  60. package/include/node/openssl/archs/linux32-s390x/asm/crypto/buildinf.h +1 -1
  61. package/include/node/openssl/archs/linux32-s390x/asm_avx2/crypto/buildinf.h +1 -1
  62. package/include/node/openssl/archs/linux32-s390x/no-asm/crypto/buildinf.h +1 -1
  63. package/include/node/openssl/archs/linux64-mips64/asm/crypto/buildinf.h +1 -1
  64. package/include/node/openssl/archs/linux64-mips64/asm_avx2/crypto/buildinf.h +1 -1
  65. package/include/node/openssl/archs/linux64-mips64/no-asm/crypto/buildinf.h +1 -1
  66. package/include/node/openssl/archs/linux64-riscv64/no-asm/crypto/buildinf.h +1 -1
  67. package/include/node/openssl/archs/linux64-s390x/asm/crypto/buildinf.h +1 -1
  68. package/include/node/openssl/archs/linux64-s390x/asm_avx2/crypto/buildinf.h +1 -1
  69. package/include/node/openssl/archs/linux64-s390x/no-asm/crypto/buildinf.h +1 -1
  70. package/include/node/openssl/archs/solaris-x86-gcc/asm/crypto/buildinf.h +1 -1
  71. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/crypto/buildinf.h +1 -1
  72. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/crypto/buildinf.h +1 -1
  73. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/crypto/buildinf.h +1 -1
  74. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/crypto/buildinf.h +1 -1
  75. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/crypto/buildinf.h +1 -1
  76. package/include/node/openssl/asn1_asm.h +57 -0
  77. package/include/node/openssl/asn1_no-asm.h +59 -0
  78. package/include/node/openssl/asn1t_asm.h +57 -0
  79. package/include/node/openssl/asn1t_no-asm.h +59 -0
  80. package/include/node/openssl/bio_asm.h +57 -0
  81. package/include/node/openssl/bio_no-asm.h +59 -0
  82. package/include/node/openssl/bn_conf_asm.h +0 -2
  83. package/include/node/openssl/bn_conf_no-asm.h +0 -2
  84. package/include/node/openssl/cmp_asm.h +57 -0
  85. package/include/node/openssl/cmp_no-asm.h +59 -0
  86. package/include/node/openssl/cms_asm.h +57 -0
  87. package/include/node/openssl/cms_no-asm.h +59 -0
  88. package/include/node/openssl/conf_asm.h +57 -0
  89. package/include/node/openssl/conf_no-asm.h +59 -0
  90. package/include/node/openssl/configuration_asm.h +57 -0
  91. package/include/node/openssl/configuration_no-asm.h +59 -0
  92. package/include/node/openssl/crmf_asm.h +57 -0
  93. package/include/node/openssl/crmf_no-asm.h +59 -0
  94. package/include/node/openssl/crypto_asm.h +57 -0
  95. package/include/node/openssl/crypto_no-asm.h +59 -0
  96. package/include/node/openssl/ct_asm.h +57 -0
  97. package/include/node/openssl/ct_no-asm.h +59 -0
  98. package/include/node/openssl/dso_conf_asm.h +0 -2
  99. package/include/node/openssl/dso_conf_no-asm.h +0 -2
  100. package/include/node/openssl/err_asm.h +57 -0
  101. package/include/node/openssl/err_no-asm.h +59 -0
  102. package/include/node/openssl/ess_asm.h +57 -0
  103. package/include/node/openssl/ess_no-asm.h +59 -0
  104. package/include/node/openssl/fipskey_asm.h +57 -0
  105. package/include/node/openssl/fipskey_no-asm.h +59 -0
  106. package/include/node/openssl/lhash_asm.h +57 -0
  107. package/include/node/openssl/lhash_no-asm.h +59 -0
  108. package/include/node/openssl/ocsp_asm.h +57 -0
  109. package/include/node/openssl/ocsp_no-asm.h +59 -0
  110. package/include/node/openssl/opensslconf_asm.h +0 -2
  111. package/include/node/openssl/opensslconf_no-asm.h +0 -2
  112. package/include/node/openssl/opensslv.h +3 -3
  113. package/include/node/openssl/opensslv_asm.h +57 -0
  114. package/include/node/openssl/opensslv_no-asm.h +59 -0
  115. package/include/node/openssl/pkcs12_asm.h +57 -0
  116. package/include/node/openssl/pkcs12_no-asm.h +59 -0
  117. package/include/node/openssl/pkcs7_asm.h +57 -0
  118. package/include/node/openssl/pkcs7_no-asm.h +59 -0
  119. package/include/node/openssl/safestack_asm.h +57 -0
  120. package/include/node/openssl/safestack_no-asm.h +59 -0
  121. package/include/node/openssl/srp_asm.h +57 -0
  122. package/include/node/openssl/srp_no-asm.h +59 -0
  123. package/include/node/openssl/ssl.h +11 -1
  124. package/include/node/openssl/ssl_asm.h +57 -0
  125. package/include/node/openssl/ssl_no-asm.h +59 -0
  126. package/include/node/openssl/ui_asm.h +57 -0
  127. package/include/node/openssl/ui_no-asm.h +59 -0
  128. package/include/node/openssl/x509_asm.h +57 -0
  129. package/include/node/openssl/x509_no-asm.h +59 -0
  130. package/include/node/openssl/x509_vfy_asm.h +57 -0
  131. package/include/node/openssl/x509_vfy_no-asm.h +59 -0
  132. package/include/node/openssl/x509v3_asm.h +57 -0
  133. package/include/node/openssl/x509v3_no-asm.h +59 -0
  134. package/package.json +1 -1
  135. package/share/man/man1/node.1 +9 -3
  136. package/include/node/openssl/archs/linux-x32/asm/crypto/include/internal/bn_conf.h +0 -28
  137. package/include/node/openssl/archs/linux-x32/asm/crypto/include/internal/dso_conf.h +0 -17
  138. package/include/node/openssl/archs/linux-x32/asm/include/openssl/opensslconf.h +0 -200
  139. package/include/node/openssl/archs/linux-x32/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
  140. package/include/node/openssl/archs/linux-x32/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
  141. package/include/node/openssl/archs/linux-x32/asm_avx2/include/openssl/opensslconf.h +0 -200
  142. package/include/node/openssl/archs/linux-x32/no-asm/crypto/include/internal/bn_conf.h +0 -28
  143. package/include/node/openssl/archs/linux-x32/no-asm/crypto/include/internal/dso_conf.h +0 -17
  144. package/include/node/openssl/archs/linux-x32/no-asm/include/openssl/opensslconf.h +0 -203
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)
@@ -120,7 +110,7 @@ For Current and LTS, the GPG detached signature of `SHASUMS256.txt` is in
120
110
  import the keys:
121
111
 
122
112
  ```console
123
- $ gpg --keyserver pool.sks-keyservers.net --recv-keys DD8F2338BAE7501E3DD5AC78C273792F7D83545D
113
+ $ gpg --keyserver hkps://keys.openpgp.org --recv-keys DD8F2338BAE7501E3DD5AC78C273792F7D83545D
124
114
  ```
125
115
 
126
116
  See the bottom of this README for a full script to import active release keys.
@@ -294,6 +284,8 @@ For information about the governance of the Node.js project, see
294
284
  **Bradley Farias** <<bradley.meck@gmail.com>>
295
285
  * [bnb](https://github.com/bnb) -
296
286
  **Tierney Cyren** <<hello@bnb.im>> (they/he)
287
+ * [bnoordhuis](https://github.com/bnoordhuis) -
288
+ **Ben Noordhuis** <<info@bnoordhuis.nl>>
297
289
  * [boneskull](https://github.com/boneskull) -
298
290
  **Christopher Hiller** <<boneskull@boneskull.com>> (he/him)
299
291
  * [BridgeAR](https://github.com/BridgeAR) -
@@ -312,8 +304,6 @@ For information about the governance of the Node.js project, see
312
304
  **Daniel Bevenius** <<daniel.bevenius@gmail.com>> (he/him)
313
305
  * [danielleadams](https://github.com/danielleadams) -
314
306
  **Danielle Adams** <<adamzdanielle@gmail.com>> (she/her)
315
- * [DerekNonGeneric](https://github.com/DerekNonGeneric) -
316
- **Derek Lewis** <<DerekNonGeneric@inf.is>> (he/him)
317
307
  * [devnexen](https://github.com/devnexen) -
318
308
  **David Carlier** <<devnexen@gmail.com>>
319
309
  * [devsnek](https://github.com/devsnek) -
@@ -354,12 +344,14 @@ For information about the governance of the Node.js project, see
354
344
  **Fedor Indutny** <<fedor@indutny.com>>
355
345
  * [JacksonTian](https://github.com/JacksonTian) -
356
346
  **Jackson Tian** <<shyvo1987@gmail.com>>
347
+ * [JakobJingleheimer](https://github.com/JakobJingleheimer) -
348
+ **Jacob Smith** <<jacob@frende.me>> (he/him)
357
349
  * [jasnell](https://github.com/jasnell) -
358
350
  **James M Snell** <<jasnell@gmail.com>> (he/him)
359
351
  * [jkrems](https://github.com/jkrems) -
360
352
  **Jan Krems** <<jan.krems@gmail.com>> (he/him)
361
- * [joaocgreis](https://github.com/joaocgreis) -
362
- **João Reis** <<reis@janeasystems.com>>
353
+ * [joesepi](https://github.com/joesepi) -
354
+ **Joe Sepi** <<sepi@joesepi.com>> (he/him)
363
355
  * [joyeecheung](https://github.com/joyeecheung) -
364
356
  **Joyee Cheung** <<joyeec9h3@gmail.com>> (she/her)
365
357
  * [juanarbol](https://github.com/juanarbol) -
@@ -378,6 +370,8 @@ For information about the governance of the Node.js project, see
378
370
  **Denys Otrishko** <<shishugi@gmail.com>> (he/him)
379
371
  * [Lxxyx](https://github.com/Lxxyx) -
380
372
  **Zijian Liu** <<lxxyxzj@gmail.com>> (he/him)
373
+ * [marsonya](https://github.com/marsonya) -
374
+ **Akhil Marsonya** <<akhil.marsonya27@gmail.com>> (he/him)
381
375
  * [mcollina](https://github.com/mcollina) -
382
376
  **Matteo Collina** <<matteo.collina@gmail.com>> (he/him)
383
377
  * [Mesteery](https://github.com/Mesteery) -
@@ -424,6 +418,8 @@ For information about the governance of the Node.js project, see
424
418
  **Santiago Gimeno** <<santiago.gimeno@gmail.com>>
425
419
  * [shisama](https://github.com/shisama) -
426
420
  **Masashi Hirano** <<shisama07@gmail.com>> (he/him)
421
+ * [ShogunPanda](https://github.com/ShogunPanda) -
422
+ **Paolo Insogna** <<paolo@cowtech.it>> (he/him)
427
423
  * [srl295](https://github.com/srl295) -
428
424
  **Steven R Loomis** <<srloomis@us.ibm.com>>
429
425
  * [starkwang](https://github.com/starkwang) -
@@ -474,8 +470,6 @@ For information about the governance of the Node.js project, see
474
470
  **Alexey Orlenko** <<eaglexrlnk@gmail.com>> (he/him)
475
471
  * [bmeurer](https://github.com/bmeurer) -
476
472
  **Benedikt Meurer** <<benedikt.meurer@gmail.com>>
477
- * [bnoordhuis](https://github.com/bnoordhuis) -
478
- **Ben Noordhuis** <<info@bnoordhuis.nl>>
479
473
  * [brendanashworth](https://github.com/brendanashworth) -
480
474
  **Brendan Ashworth** <<brendan.ashworth@me.com>>
481
475
  * [calvinmetcalf](https://github.com/calvinmetcalf) -
@@ -526,6 +520,8 @@ For information about the governance of the Node.js project, see
526
520
  **John-David Dalton** <<john.david.dalton@gmail.com>>
527
521
  * [jhamhader](https://github.com/jhamhader) -
528
522
  **Yuval Brik** <<yuval@brik.org.il>>
523
+ * [joaocgreis](https://github.com/joaocgreis) -
524
+ **João Reis** <<reis@janeasystems.com>>
529
525
  * [joshgav](https://github.com/joshgav) -
530
526
  **Josh Gavant** <<josh.gavant@outlook.com>>
531
527
  * [julianduque](https://github.com/julianduque) -
@@ -648,6 +644,8 @@ maintaining the Node.js project.
648
644
  **Frank Qiu** <<iam.frankqiu@gmail.com>> (he/him)
649
645
  * [marsonya](https://github.com/marsonya) -
650
646
  **Akhil Marsonya** <<akhil.marsonya27@gmail.com>> (he/him)
647
+ * [meixg](https://github.com/meixg) -
648
+ **Xuguang Mei** <<meixg@foxmail.com>> (he/him)
651
649
  * [Mesteery](https://github.com/Mesteery) -
652
650
  **Mestery** <<mestery@protonmail.com>> (he/him)
653
651
  * [PoojaDurgad](https://github.com/PoojaDurgad) -
@@ -671,10 +669,14 @@ Primary GPG keys for Node.js Releasers (some Releasers sign with subkeys):
671
669
  `74F12602B6F1C4E913FAA37AD3A89613643B6201`
672
670
  * **James M Snell** <<jasnell@keybase.io>>
673
671
  `71DCFD284A79C3B38668286BC97EC7A07EDE3FC1`
672
+ * **Juan José Arboleda** <<soyjuanarbol@gmail.com>>
673
+ `61FC681DFB92A079F1685E77973F295594EC4689`
674
674
  * **Michaël Zasso** <<targos@protonmail.com>>
675
675
  `8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600`
676
676
  * **Myles Borins** <<myles.borins@gmail.com>>
677
677
  `C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8`
678
+ * **RafaelGSS** <<rafael.nunu@hotmail.com>>
679
+ `890C08DB8579162FEE0DF9DB8BEAB4DFCF555EF4`
678
680
  * **Richard Lau** <<rlau@redhat.com>>
679
681
  `C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C`
680
682
  * **Rod Vagg** <<rod@vagg.org>>
@@ -690,18 +692,20 @@ To import the full set of trusted release keys (including subkeys possibly used
690
692
  to sign releases):
691
693
 
692
694
  ```bash
693
- gpg --keyserver pool.sks-keyservers.net --recv-keys 4ED778F539E3634C779C87C6D7062848A1AB005C
694
- gpg --keyserver pool.sks-keyservers.net --recv-keys 141F07595B7B3FFE74309A937405533BE57C7D57
695
- gpg --keyserver pool.sks-keyservers.net --recv-keys 94AE36675C464D64BAFA68DD7434390BDBE9B9C5
696
- gpg --keyserver pool.sks-keyservers.net --recv-keys 74F12602B6F1C4E913FAA37AD3A89613643B6201
697
- gpg --keyserver pool.sks-keyservers.net --recv-keys 71DCFD284A79C3B38668286BC97EC7A07EDE3FC1
698
- gpg --keyserver pool.sks-keyservers.net --recv-keys 8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600
699
- gpg --keyserver pool.sks-keyservers.net --recv-keys C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8
700
- gpg --keyserver pool.sks-keyservers.net --recv-keys C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C
701
- gpg --keyserver pool.sks-keyservers.net --recv-keys DD8F2338BAE7501E3DD5AC78C273792F7D83545D
702
- gpg --keyserver pool.sks-keyservers.net --recv-keys A48C2BEE680E841632CD4E44F07496B3EB3C1762
703
- gpg --keyserver pool.sks-keyservers.net --recv-keys 108F52B48DB57BB0CC439B2997B01419BD92F80A
704
- gpg --keyserver pool.sks-keyservers.net --recv-keys B9E2F5981AA6E0CD28160D9FF13993A75599653C
695
+ gpg --keyserver hkps://keys.openpgp.org --recv-keys 4ED778F539E3634C779C87C6D7062848A1AB005C
696
+ gpg --keyserver hkps://keys.openpgp.org --recv-keys 141F07595B7B3FFE74309A937405533BE57C7D57
697
+ gpg --keyserver hkps://keys.openpgp.org --recv-keys 94AE36675C464D64BAFA68DD7434390BDBE9B9C5
698
+ gpg --keyserver hkps://keys.openpgp.org --recv-keys 74F12602B6F1C4E913FAA37AD3A89613643B6201
699
+ gpg --keyserver hkps://keys.openpgp.org --recv-keys 71DCFD284A79C3B38668286BC97EC7A07EDE3FC1
700
+ gpg --keyserver hkps://keys.openpgp.org --recv-keys 61FC681DFB92A079F1685E77973F295594EC4689
701
+ gpg --keyserver hkps://keys.openpgp.org --recv-keys 8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600
702
+ gpg --keyserver hkps://keys.openpgp.org --recv-keys C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8
703
+ gpg --keyserver hkps://keys.openpgp.org --recv-keys 890C08DB8579162FEE0DF9DB8BEAB4DFCF555EF4
704
+ gpg --keyserver hkps://keys.openpgp.org --recv-keys C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C
705
+ gpg --keyserver hkps://keys.openpgp.org --recv-keys DD8F2338BAE7501E3DD5AC78C273792F7D83545D
706
+ gpg --keyserver hkps://keys.openpgp.org --recv-keys A48C2BEE680E841632CD4E44F07496B3EB3C1762
707
+ gpg --keyserver hkps://keys.openpgp.org --recv-keys 108F52B48DB57BB0CC439B2997B01419BD92F80A
708
+ gpg --keyserver hkps://keys.openpgp.org --recv-keys B9E2F5981AA6E0CD28160D9FF13993A75599653C
705
709
  ```
706
710
 
707
711
  See the section above on [Verifying binaries](#verifying-binaries) for how to
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.20',
39
+ 'v8_embedder_string': '-node.21',
40
40
 
41
41
  ##### V8 defaults for Node.js #####
42
42
 
@@ -70,6 +70,9 @@
70
70
  # See https://github.com/v8/v8/wiki/Untrusted-code-mitigations
71
71
  'v8_untrusted_code_mitigations': 0,
72
72
 
73
+ # Disable v8 hugepage by default.
74
+ 'v8_enable_hugepage%': 0,
75
+
73
76
  # This is more of a V8 dev setting
74
77
  # https://github.com/nodejs/node/pull/22920/files#r222779926
75
78
  'v8_enable_fast_mksnapshot': 0,
@@ -109,7 +112,7 @@
109
112
  'v8_base': '<(PRODUCT_DIR)/libv8_snapshot.a',
110
113
  }],
111
114
  # V8 pointer compression only supports 64bit architectures.
112
- ['target_arch in "arm ia32 mips mipsel ppc x32"', {
115
+ ['target_arch in "arm ia32 mips mipsel ppc"', {
113
116
  'v8_enable_pointer_compression': 0,
114
117
  'v8_enable_31bit_smis_on_64bit_arch': 0,
115
118
  }],
@@ -417,10 +420,6 @@
417
420
  'cflags': [ '-m32' ],
418
421
  'ldflags': [ '-m32' ],
419
422
  }],
420
- [ 'target_arch=="x32"', {
421
- 'cflags': [ '-mx32' ],
422
- 'ldflags': [ '-mx32' ],
423
- }],
424
423
  [ 'target_arch=="x64"', {
425
424
  'cflags': [ '-m64' ],
426
425
  'ldflags': [ '-m64' ],
@@ -622,7 +621,7 @@
622
621
  '-q64',
623
622
  ],
624
623
  # for addons due to v8config.h include of "zos-base.h":
625
- 'include_dirs': ['$(ZOSLIB_INCLUDES)'],
624
+ 'include_dirs': ['<(zoslib_include_dir)'],
626
625
  }],
627
626
  ],
628
627
  }
@@ -1,7 +1,7 @@
1
1
  # Do not edit. Generated by the configure script.
2
2
  { 'target_defaults': { 'cflags': [],
3
3
  'default_configuration': 'Release',
4
- 'defines': [],
4
+ 'defines': ['NODE_OPENSSL_CONF_NAME=nodejs_conf'],
5
5
  'include_dirs': [],
6
6
  'libraries': []},
7
7
  'variables': { 'asan': 0,
@@ -206,6 +206,8 @@
206
206
  'lib/internal/modules/cjs/loader.js',
207
207
  'lib/internal/modules/esm/assert.js',
208
208
  'lib/internal/modules/esm/create_dynamic_module.js',
209
+ 'lib/internal/modules/esm/fetch_module.js',
210
+ 'lib/internal/modules/esm/formats.js',
209
211
  'lib/internal/modules/esm/get_format.js',
210
212
  'lib/internal/modules/esm/get_source.js',
211
213
  'lib/internal/modules/esm/handle_process_exit.js',
@@ -281,6 +283,7 @@
281
283
  'lib/internal/util/types.js',
282
284
  'lib/internal/vm/module.js',
283
285
  'lib/internal/webstreams/adapters.js',
286
+ 'lib/internal/webstreams/compression.js',
284
287
  'lib/internal/webstreams/encoding.js',
285
288
  'lib/internal/webstreams/queuingstrategies.js',
286
289
  'lib/internal/webstreams/readablestream.js',
@@ -330,6 +333,7 @@
330
333
  'target_arch': 'ppc64',
331
334
  'v8_enable_31bit_smis_on_64bit_arch': 0,
332
335
  'v8_enable_gdbjit': 0,
336
+ 'v8_enable_hugepage': 0,
333
337
  'v8_enable_i18n_support': 1,
334
338
  'v8_enable_inspector': 1,
335
339
  'v8_enable_lite_mode': 0,
@@ -93,6 +93,12 @@ NAPI_EXTERN napi_status napi_create_string_utf16(napi_env env,
93
93
  NAPI_EXTERN napi_status napi_create_symbol(napi_env env,
94
94
  napi_value description,
95
95
  napi_value* result);
96
+ #ifdef NAPI_EXPERIMENTAL
97
+ NAPI_EXTERN napi_status node_api_symbol_for(napi_env env,
98
+ const char* utf8description,
99
+ size_t length,
100
+ napi_value* result);
101
+ #endif // NAPI_EXPERIMENTAL
96
102
  NAPI_EXTERN napi_status napi_create_function(napi_env env,
97
103
  const char* utf8name,
98
104
  size_t length,
@@ -4900,15 +4900,15 @@ _GLOBAL__F__ZN2v88internal6torque4TypeC2ERKS2_
4900
4900
  _GLOBAL__F__ZN2v88internal6torque5Block13SetInputTypesERKNS1_5StackIPKNS1_4TypeEEE
4901
4901
  _GLOBAL__F__ZNK2v88internal6torque3cpp8Function22PrintDeclarationHeaderERSoi
4902
4902
  _GLOBAL__F__ZNK2v88internal6torque4Rule9RunActionEPKNS1_4ItemERKNS1_11LexerResultE
4903
- _GLOBAL__I_65535_0_.._deps_v8_src_diagnostics_gdb_jit.cc_FB5499C7_0x833dace4c9143b3e
4904
- _GLOBAL__I_65535_0_.._deps_v8_src_diagnostics_objects_debug.cc_FB5499C7_0xccc6bd3873542a19
4905
- _GLOBAL__I_65535_0_.._deps_v8_src_execution_simulator_base.cc_DFF67DD7_0xdb86cc4954edd18f
4906
- _GLOBAL__I_65535_0_.._deps_v8_src_heap_factory_base.cc_DFF67DD7_0x8991a852c06e77a1
4907
- _GLOBAL__I_65535_0_.._deps_v8_src_heap_objects_visiting.cc_87E8306D_0xe09b9b97e34509c9
4908
- _GLOBAL__I_65535_0_.._deps_v8_src_objects_tagged_impl.cc_87E8306D_0x3e1171e30e137d42
4909
- _GLOBAL__I_65535_0_.._deps_v8_src_runtime_runtime_trace.cc_FB5499C7_0x242985e190c5b66c
4910
- _GLOBAL__I_65535_0_.._deps_v8_src_strings_string_case.cc_DFF67DD7_0xb33ee1c5cbfa97a6
4911
- _GLOBAL__I_65535_0_.._src_connection_wrap.cc_FB5499C7_0x614b71ef709f7dd1
4903
+ _GLOBAL__I_65535_0_.._deps_v8_src_diagnostics_gdb_jit.cc_FB5499C7_0xd7838858fb9af7fe
4904
+ _GLOBAL__I_65535_0_.._deps_v8_src_diagnostics_objects_debug.cc_FB5499C7_0x6624621cb4f0bcdf
4905
+ _GLOBAL__I_65535_0_.._deps_v8_src_execution_simulator_base.cc_DFF67DD7_0x61b07a26d60d9d6e
4906
+ _GLOBAL__I_65535_0_.._deps_v8_src_heap_factory_base.cc_DFF67DD7_0x5cba2875728c374f
4907
+ _GLOBAL__I_65535_0_.._deps_v8_src_heap_objects_visiting.cc_87E8306D_0x7a90a9c5aa619065
4908
+ _GLOBAL__I_65535_0_.._deps_v8_src_objects_tagged_impl.cc_87E8306D_0x8a6e8c01b23aa207
4909
+ _GLOBAL__I_65535_0_.._deps_v8_src_runtime_runtime_trace.cc_FB5499C7_0xf821287c9463d94f
4910
+ _GLOBAL__I_65535_0_.._deps_v8_src_strings_string_case.cc_DFF67DD7_0xcec5ce84763cdcb4
4911
+ _GLOBAL__I_65535_0_.._src_connection_wrap.cc_FB5499C7_0xd998ad98c2e103f4
4912
4912
  _GLOBAL__I_65535_0_OPENSSL_ppccap_P
4913
4913
  _GLOBAL__I_65535_0__Z16_register_configv
4914
4914
  _GLOBAL__I_65535_0__Z17_register_symbolsv
@@ -5906,10 +5906,10 @@ _GLOBAL__I_65535_0__ZNK2v88internal9BitVector5CountEv
5906
5906
  _GLOBAL__I_65535_0__ZNK2v88internal9DebugInfo7IsEmptyEv
5907
5907
  _GLOBAL__I_65535_0__ZNK2v88internal9PreParser13GetIdentifierEv
5908
5908
  _GLOBAL__I_65535_0__ZNK4node10BaseObject15GetTransferModeEv
5909
- _GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_enum_verifiers.cc_FB5499C7_0xbedb6af5e9287702
5910
- _GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_factory.cc_DFF67DD7_0x6578aeb7bd1c1ea4
5911
- _GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_src_objects_intl_objects_tq_csa.cc_FB5499C7_0xe49c8cb28beaafa4
5912
- _GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_src_objects_torque_defined_classes_tq_csa.cc_FB5499C7_0x541a4cd1685e6ed0
5909
+ _GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_enum_verifiers.cc_FB5499C7_0x34d84113712356ba
5910
+ _GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_factory.cc_DFF67DD7_0x4dbba8f94bfefbf0
5911
+ _GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_src_objects_intl_objects_tq_csa.cc_FB5499C7_0x395c82c3aaa54ea1
5912
+ _GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_src_objects_torque_defined_classes_tq_csa.cc_FB5499C7_0x4589c0a8c94770fc
5913
5913
  _GLOBAL__I_65535_0_nodedbg_const_ContextEmbedderIndex__kEnvironment__int
5914
5914
  _GLOBAL__I_65535_0_v8dbg_frametype_EntryFrame
5915
5915
  _HZData_70
@@ -6034,6 +6034,7 @@ _Z35_register_external_reference_timersPN4node25ExternalReferenceRegistryE
6034
6034
  _Z35_register_external_reference_workerPN4node25ExternalReferenceRegistryE
6035
6035
  _Z36_register_external_reference_bindingPN4node25ExternalReferenceRegistryE
6036
6036
  _Z36_register_external_reference_env_varPN4node25ExternalReferenceRegistryE
6037
+ _Z36_register_external_reference_optionsPN4node25ExternalReferenceRegistryE
6037
6038
  _Z37_register_external_reference_profilerPN4node25ExternalReferenceRegistryE
6038
6039
  _Z37_register_external_reference_tcp_wrapPN4node25ExternalReferenceRegistryE
6039
6040
  _Z37_register_external_reference_tls_wrapPN4node25ExternalReferenceRegistryE
@@ -43540,6 +43541,7 @@ _ZN4node14StreamResourceD0Ev
43540
43541
  _ZN4node14StreamResourceD1Ev
43541
43542
  _ZN4node14StreamResourceD2Ev
43542
43543
  _ZN4node14ThreadPoolWork12ScheduleWorkEv
43544
+ _ZN4node14fips_error_msgE
43543
43545
  _ZN4node14options_parser10InitializeEN2v85LocalINS1_6ObjectEEENS2_INS1_5ValueEEENS2_INS1_7ContextEEEPv
43544
43546
  _ZN4node14options_parser13GetCLIOptionsERKN2v820FunctionCallbackInfoINS1_5ValueEEE
43545
43547
  _ZN4node14options_parser13OptionsParserINS_12DebugOptionsEE17SimpleOptionFieldINS_8HostPortEED0Ev
@@ -43623,6 +43625,7 @@ _ZN4node14options_parser24EnvironmentOptionsParserC1Ev
43623
43625
  _ZN4node14options_parser24EnvironmentOptionsParserC2Ev
43624
43626
  _ZN4node14options_parser24EnvironmentOptionsParserD0Ev
43625
43627
  _ZN4node14options_parser24EnvironmentOptionsParserD1Ev
43628
+ _ZN4node14options_parser26RegisterExternalReferencesEPNS_25ExternalReferenceRegistryE
43626
43629
  _ZN4node14options_parser5ParseINS_12DebugOptionsENS_7OptionsEEEvPSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaISA_EESD_SD_PT_NS_20OptionEnvvarSettingsESD_
43627
43630
  _ZN4node14options_parser5ParseINS_17PerIsolateOptionsENS_7OptionsEEEvPSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaISA_EESD_SD_PT_NS_20OptionEnvvarSettingsESD_
43628
43631
  _ZN4node14options_parser5ParseINS_17PerProcessOptionsENS_7OptionsEEEvPSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaISA_EESD_SD_PT_NS_20OptionEnvvarSettingsESD_
@@ -43829,6 +43832,7 @@ _ZN4node17SyncProcessRunnerC1EPNS_11EnvironmentE
43829
43832
  _ZN4node17SyncProcessRunnerC2EPNS_11EnvironmentE
43830
43833
  _ZN4node17SyncProcessRunnerD1Ev
43831
43834
  _ZN4node17SyncProcessRunnerD2Ev
43835
+ _ZN4node17conf_section_nameE
43832
43836
  _ZN4node18CheckedUvLoopCloseEP9uv_loop_s
43833
43837
  _ZN4node18DiagnosticFilename12MakeFilenameB5cxx11EmPKcS2_
43834
43838
  _ZN4node18DiagnosticFilename9LocalTimeEP2tm
@@ -43934,6 +43938,7 @@ _ZN4node20SyncProcessStdioPipeC1EPNS_17SyncProcessRunnerEbb8uv_buf_t
43934
43938
  _ZN4node20SyncProcessStdioPipeC2EPNS_17SyncProcessRunnerEbb8uv_buf_t
43935
43939
  _ZN4node20SyncProcessStdioPipeD1Ev
43936
43940
  _ZN4node20SyncProcessStdioPipeD2Ev
43941
+ _ZN4node20handle_openssl_errorEiPKcPNS_20InitializationResultE
43937
43942
  _ZN4node21ERR_CRYPTO_INVALID_IVIJEEEN2v85LocalINS1_5ValueEEEPNS1_7IsolateEPKcDpOT_
43938
43943
  _ZN4node21ERR_INVALID_ARG_VALUEIJEEEN2v85LocalINS1_5ValueEEEPNS1_7IsolateEPKcDpOT_
43939
43944
  _ZN4node21EmitProcessBeforeExitEPNS_11EnvironmentE
@@ -44132,7 +44137,6 @@ _ZN4node26napi_module_to_node_moduleEPK11napi_module
44132
44137
  _ZN4node27AllocateEnvironmentThreadIdEv
44133
44138
  _ZN4node27AsyncHooksGetTriggerAsyncIdEPN2v87IsolateE
44134
44139
  _ZN4node27ERR_CONSTRUCT_CALL_REQUIREDIJEEEN2v85LocalINS1_5ValueEEEPNS1_7IsolateEPKcDpOT_
44135
- _ZN4node27ERR_CRYPTO_INVALID_AUTH_TAGIJEEEN2v85LocalINS1_5ValueEEEPNS1_7IsolateEPKcDpOT_
44136
44140
  _ZN4node27ERR_CRYPTO_INVALID_AUTH_TAGIJRPKcEEEN2v85LocalINS4_5ValueEEEPNS4_7IsolateES2_DpOT_
44137
44141
  _ZN4node27ERR_CRYPTO_INVALID_AUTH_TAGIJRjEEEN2v85LocalINS2_5ValueEEEPNS2_7IsolateEPKcDpOT_
44138
44142
  _ZN4node27ERR_CRYPTO_OPERATION_FAILEDIJEEEN2v85LocalINS1_5ValueEEEPNS1_7IsolateEPKcDpOT_
@@ -44348,6 +44352,7 @@ _ZN4node32THROW_ERR_VM_MODULE_LINK_FAILUREIJRNSt7__cxx1112basic_stringIcSt11char
44348
44352
  _ZN4node33AddEnvironmentCleanupHookInternalEPN2v87IsolateEPFvPvPFvS3_ES3_ES3_
44349
44353
  _ZN4node33RegisterProcessExternalReferencesEPNS_25ExternalReferenceRegistryE
44350
44354
  _ZN4node33THROW_ERR_CONSTRUCT_CALL_REQUIREDIJEEEvPN2v87IsolateEPKcDpOT_
44355
+ _ZN4node33THROW_ERR_CRYPTO_INVALID_AUTH_TAGIJRjEEEvPN2v87IsolateEPKcDpOT_
44351
44356
  _ZN4node33THROW_ERR_CRYPTO_OPERATION_FAILEDEPN2v87IsolateE
44352
44357
  _ZN4node33THROW_ERR_CRYPTO_OPERATION_FAILEDIJEEEvPN2v87IsolateEPKcDpOT_
44353
44358
  _ZN4node33THROW_ERR_CRYPTO_OPERATION_FAILEDIJEEEvPNS_11EnvironmentEPKcDpOT_
@@ -44385,7 +44390,7 @@ _ZN4node3url10table_data27QUERY_ENCODE_SET_NONSPECIALE
44385
44390
  _ZN4node3url10table_data3hexE
44386
44391
  _ZN4node3url26RegisterExternalReferencesEPNS_25ExternalReferenceRegistryE
44387
44392
  _ZN4node3url3URL12FromFilePathERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE
44388
- _ZN4node3url3URL12SerializeURLB5cxx11EPKNS0_8url_dataEb
44393
+ _ZN4node3url3URL12SerializeURLB5cxx11ERKNS0_8url_dataEb
44389
44394
  _ZN4node3url3URL5ParseEPKcmNS0_15url_parse_stateEPNS0_8url_dataEbPKS5_b
44390
44395
  _ZN4node41ERR_MISSING_TRANSFERABLE_IN_TRANSFER_LISTIJEEEN2v85LocalINS1_5ValueEEEPNS1_7IsolateEPKcDpOT_
44391
44396
  _ZN4node45THROW_ERR_EXECUTION_ENVIRONMENT_NOT_AVAILABLEEPN2v87IsolateE
@@ -44679,6 +44684,7 @@ _ZN4node5http219Http2StreamListenerD0Ev
44679
44684
  _ZN4node5http219Http2StreamListenerD1Ev
44680
44685
  _ZN4node5http220SetCallbackFunctionsERKN2v820FunctionCallbackInfoINS1_5ValueEEE
44681
44686
  _ZN4node5http222RefreshDefaultSettingsERKN2v820FunctionCallbackInfoINS1_5ValueEEE
44687
+ _ZN4node5http225TranslateNghttp2ErrorCodeEi
44682
44688
  _ZN4node5http233Http2StreamPerformanceEntryTraits10GetDetailsEPNS_11EnvironmentERKNS_11performance16PerformanceEntryIS1_EE
44683
44689
  _ZN4node5http234Http2SessionPerformanceEntryTraits10GetDetailsEPNS_11EnvironmentERKNS_11performance16PerformanceEntryIS1_EE
44684
44690
  _ZN4node5http27OriginsC1EPNS_11EnvironmentEN2v85LocalINS4_6StringEEEm
@@ -44930,7 +44936,6 @@ _ZN4node6crypto13GetCipherInfoEPNS_11EnvironmentERKSt10unique_ptrI6ssl_stNS_15Fu
44930
44936
  _ZN4node6crypto13GetCipherNameEPNS_11EnvironmentERKSt10unique_ptrI6ssl_stNS_15FunctionDeleterIS4_XadL_Z8SSL_freeEEEEE
44931
44937
  _ZN4node6crypto13GetFipsCryptoERKN2v820FunctionCallbackInfoINS1_5ValueEEE
44932
44938
  _ZN4node6crypto13GetServerNameEP6ssl_st
44933
- _ZN4node6crypto13GetTLSSessionEN2v85LocalINS1_5ValueEEE
44934
44939
  _ZN4node6crypto13GetTLSSessionEPKhm
44935
44940
  _ZN4node6crypto13KeyObjectData12CreateSecretENS0_10ByteSourceE
44936
44941
  _ZN4node6crypto13KeyObjectData16CreateAsymmetricENS0_7KeyTypeERKNS0_14ManagedEVPPKeyE
@@ -44988,7 +44993,6 @@ _ZN4node6crypto13SecureContextD0Ev
44988
44993
  _ZN4node6crypto13SecureContextD1Ev
44989
44994
  _ZN4node6crypto13SecureContextD2Ev
44990
44995
  _ZN4node6crypto13SetFipsCryptoERKN2v820FunctionCallbackInfoINS1_5ValueEEE
44991
- _ZN4node6crypto13SetTLSSessionERKSt10unique_ptrI6ssl_stNS_15FunctionDeleterIS2_XadL_Z8SSL_freeEEEEEPKhm
44992
44996
  _ZN4node6crypto13SetTLSSessionERKSt10unique_ptrI6ssl_stNS_15FunctionDeleterIS2_XadL_Z8SSL_freeEEEEERKS1_I14ssl_session_stNS3_IS8_XadL_Z16SSL_SESSION_freeEEEEE
44993
44997
  _ZN4node6crypto13UseSNIContextERKSt10unique_ptrI6ssl_stNS_15FunctionDeleterIS2_XadL_Z8SSL_freeEEEEENS_17BaseObjectPtrImplINS0_13SecureContextELb0EEE
44994
44998
  _ZN4node6crypto13X509ErrorCodeEl
@@ -45057,6 +45061,7 @@ _ZN4node6crypto15KeyObjectHandle3NewERKN2v820FunctionCallbackInfoINS2_5ValueEEE
45057
45061
  _ZN4node6crypto15KeyObjectHandle4DataEv
45058
45062
  _ZN4node6crypto15KeyObjectHandle4InitERKN2v820FunctionCallbackInfoINS2_5ValueEEE
45059
45063
  _ZN4node6crypto15KeyObjectHandle6CreateEPNS_11EnvironmentESt10shared_ptrINS0_13KeyObjectDataEE
45064
+ _ZN4node6crypto15KeyObjectHandle6EqualsERKN2v820FunctionCallbackInfoINS2_5ValueEEE
45060
45065
  _ZN4node6crypto15KeyObjectHandle6ExportERKN2v820FunctionCallbackInfoINS2_5ValueEEE
45061
45066
  _ZN4node6crypto15KeyObjectHandle7InitJWKERKN2v820FunctionCallbackInfoINS2_5ValueEEE
45062
45067
  _ZN4node6crypto15KeyObjectHandle9ExportJWKERKN2v820FunctionCallbackInfoINS2_5ValueEEE
@@ -61053,6 +61058,11 @@ _ZNSt19_Sp_counted_deleterIPN4node20ArrayBufferAllocatorESt14default_deleteIS1_E
61053
61058
  _ZNSt19_Sp_counted_deleterIPN4node20ArrayBufferAllocatorESt14default_deleteIS1_ESaIvELN9__gnu_cxx12_Lock_policyE2EE14_M_get_deleterERKSt9type_info
61054
61059
  _ZNSt19_Sp_counted_deleterIPN4node20ArrayBufferAllocatorESt14default_deleteIS1_ESaIvELN9__gnu_cxx12_Lock_policyE2EED0Ev
61055
61060
  _ZNSt19_Sp_counted_deleterIPN4node20ArrayBufferAllocatorESt14default_deleteIS1_ESaIvELN9__gnu_cxx12_Lock_policyE2EED1Ev
61061
+ _ZNSt19_Sp_counted_deleterIPN4node9inspector13WorkerManagerESt14default_deleteIS2_ESaIvELN9__gnu_cxx12_Lock_policyE2EE10_M_destroyEv
61062
+ _ZNSt19_Sp_counted_deleterIPN4node9inspector13WorkerManagerESt14default_deleteIS2_ESaIvELN9__gnu_cxx12_Lock_policyE2EE10_M_disposeEv
61063
+ _ZNSt19_Sp_counted_deleterIPN4node9inspector13WorkerManagerESt14default_deleteIS2_ESaIvELN9__gnu_cxx12_Lock_policyE2EE14_M_get_deleterERKSt9type_info
61064
+ _ZNSt19_Sp_counted_deleterIPN4node9inspector13WorkerManagerESt14default_deleteIS2_ESaIvELN9__gnu_cxx12_Lock_policyE2EED0Ev
61065
+ _ZNSt19_Sp_counted_deleterIPN4node9inspector13WorkerManagerESt14default_deleteIS2_ESaIvELN9__gnu_cxx12_Lock_policyE2EED1Ev
61056
61066
  _ZNSt19_Sp_counted_deleterIPN4node9inspector8protocol11NodeRuntime8FrontendESt14default_deleteIS4_ESaIvELN9__gnu_cxx12_Lock_policyE2EE10_M_destroyEv
61057
61067
  _ZNSt19_Sp_counted_deleterIPN4node9inspector8protocol11NodeRuntime8FrontendESt14default_deleteIS4_ESaIvELN9__gnu_cxx12_Lock_policyE2EE10_M_disposeEv
61058
61068
  _ZNSt19_Sp_counted_deleterIPN4node9inspector8protocol11NodeRuntime8FrontendESt14default_deleteIS4_ESaIvELN9__gnu_cxx12_Lock_policyE2EE14_M_get_deleterERKSt9type_info
@@ -61750,6 +61760,7 @@ _ZNSt6vectorIN8v8_crdtp4cbor15EnvelopeEncoderESaIS2_EE17_M_realloc_insertIJEEEvN
61750
61760
  _ZNSt6vectorIN8v8_crdtp4spanIcEESaIS2_EE17_M_realloc_insertIJRKS2_EEEvN9__gnu_cxx17__normal_iteratorIPS2_S4_EEDpOT_
61751
61761
  _ZNSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS5_EE12emplace_backIJPcEEEvDpOT_
61752
61762
  _ZNSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS5_EE12emplace_backIJRA1_KcEEEvDpOT_
61763
+ _ZNSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS5_EE12emplace_backIJRA28_KcEEEvDpOT_
61753
61764
  _ZNSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS5_EE12emplace_backIJRA39_KcEEEvDpOT_
61754
61765
  _ZNSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS5_EE12emplace_backIJS5_EEEvDpOT_
61755
61766
  _ZNSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS5_EE14_M_insert_rvalEN9__gnu_cxx17__normal_iteratorIPKS5_S7_EEOS5_
@@ -69308,7 +69319,7 @@ llhttp__internal__c_or_flags
69308
69319
  llhttp__internal__c_or_flags_1
69309
69320
  llhttp__internal__c_or_flags_15
69310
69321
  llhttp__internal__c_or_flags_16
69311
- llhttp__internal__c_or_flags_17
69322
+ llhttp__internal__c_or_flags_18
69312
69323
  llhttp__internal__c_or_flags_3
69313
69324
  llhttp__internal__c_or_flags_4
69314
69325
  llhttp__internal__c_or_flags_5
@@ -69320,9 +69331,11 @@ llhttp__internal__c_store_method
69320
69331
  llhttp__internal__c_test_flags
69321
69332
  llhttp__internal__c_test_flags_1
69322
69333
  llhttp__internal__c_test_flags_2
69334
+ llhttp__internal__c_test_flags_3
69323
69335
  llhttp__internal__c_test_lenient_flags
69324
69336
  llhttp__internal__c_test_lenient_flags_1
69325
69337
  llhttp__internal__c_test_lenient_flags_2
69338
+ llhttp__internal__c_test_lenient_flags_4
69326
69339
  llhttp__internal__c_update_content_length
69327
69340
  llhttp__internal__c_update_finish
69328
69341
  llhttp__internal__c_update_finish_1
@@ -69372,6 +69385,7 @@ llhttp_set_error_reason
69372
69385
  llhttp_set_lenient_chunked_length
69373
69386
  llhttp_set_lenient_headers
69374
69387
  llhttp_set_lenient_keep_alive
69388
+ llhttp_set_lenient_transfer_encoding
69375
69389
  llhttp_settings_init
69376
69390
  llhttp_should_keep_alive
69377
69391
  locale_getKeywordsStart_70
@@ -70745,6 +70759,7 @@ ngtcp2_verify_stateless_reset_token
70745
70759
  ngtcp2_version
70746
70760
  node_api_create_syntax_error
70747
70761
  node_api_get_module_file_name
70762
+ node_api_symbol_for
70748
70763
  node_api_throw_syntax_error
70749
70764
  node_module_register
70750
70765
  nodedbg_const_BaseObject__kInternalFieldCount__int
@@ -71028,6 +71043,7 @@ ssl_cert_add1_chain_cert
71028
71043
  ssl_cert_clear_certs
71029
71044
  ssl_cert_dup
71030
71045
  ssl_cert_free
71046
+ ssl_cert_get_cert_store
71031
71047
  ssl_cert_is_disabled
71032
71048
  ssl_cert_lookup_by_idx
71033
71049
  ssl_cert_lookup_by_nid
@@ -438,7 +438,12 @@ enum Flags : uint64_t {
438
438
  // $HOME/.node_modules and $NODE_PATH. This is used by standalone apps that
439
439
  // do not expect to have their behaviors changed because of globally
440
440
  // installed modules.
441
- kNoGlobalSearchPaths = 1 << 7
441
+ kNoGlobalSearchPaths = 1 << 7,
442
+ // Controls whether or not the Environment should call V8Inspector::create().
443
+ // This control is needed by embedders who may not want to initialize the V8
444
+ // inspector in situations where one has already been created,
445
+ // e.g. Blink's in Chromium.
446
+ kNoCreateInspector = 1 << 9
442
447
  };
443
448
  } // namespace EnvironmentFlags
444
449
 
@@ -23,8 +23,8 @@
23
23
  #define SRC_NODE_VERSION_H_
24
24
 
25
25
  #define NODE_MAJOR_VERSION 16
26
- #define NODE_MINOR_VERSION 14
27
- #define NODE_PATCH_VERSION 2
26
+ #define NODE_MINOR_VERSION 16
27
+ #define NODE_PATCH_VERSION 0
28
28
 
29
29
  #define NODE_VERSION_IS_LTS 1
30
30
  #define NODE_VERSION_LTS_CODENAME "Gallium"
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: BSD-x86"
14
- #define DATE "built on: Tue Mar 15 19:21:51 2022 UTC"
14
+ #define DATE "built on: Tue Jul 5 15:02:24 2022 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: BSD-x86"
14
- #define DATE "built on: Tue Mar 15 19:21:54 2022 UTC"
14
+ #define DATE "built on: Tue Jul 5 15:02:26 2022 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: BSD-x86"
14
- #define DATE "built on: Tue Mar 15 19:21:57 2022 UTC"
14
+ #define DATE "built on: Tue Jul 5 15:02:28 2022 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: BSD-x86_64"
14
- #define DATE "built on: Tue Mar 15 19:21:59 2022 UTC"
14
+ #define DATE "built on: Tue Jul 5 15:02:29 2022 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: BSD-x86_64"
14
- #define DATE "built on: Tue Mar 15 19:22:05 2022 UTC"
14
+ #define DATE "built on: Tue Jul 5 15:02:34 2022 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: BSD-x86_64"
14
- #define DATE "built on: Tue Mar 15 19:22:12 2022 UTC"
14
+ #define DATE "built on: Tue Jul 5 15:02:38 2022 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: "
14
- #define DATE "built on: Tue Mar 15 19:26:23 2022 UTC"
14
+ #define DATE "built on: Tue Jul 5 15:04:18 2022 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: "
14
- #define DATE "built on: Tue Mar 15 19:26:29 2022 UTC"
14
+ #define DATE "built on: Tue Jul 5 15:04:20 2022 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: "
14
- #define DATE "built on: Tue Mar 15 19:26:35 2022 UTC"
14
+ #define DATE "built on: Tue Jul 5 15:04:22 2022 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: VC-WIN64-ARM"
14
- #define DATE "built on: Tue Mar 15 19:26:38 2022 UTC"
14
+ #define DATE "built on: Tue Jul 5 15:04:23 2022 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: "
14
- #define DATE "built on: Tue Mar 15 19:25:52 2022 UTC"
14
+ #define DATE "built on: Tue Jul 5 15:04:08 2022 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: "
14
- #define DATE "built on: Tue Mar 15 19:26:06 2022 UTC"
14
+ #define DATE "built on: Tue Jul 5 15:04:13 2022 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: "
14
- #define DATE "built on: Tue Mar 15 19:26:20 2022 UTC"
14
+ #define DATE "built on: Tue Jul 5 15:04:17 2022 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: aix-gcc"
14
- #define DATE "built on: Tue Mar 15 19:21:36 2022 UTC"
14
+ #define DATE "built on: Tue Jul 5 15:02:14 2022 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: aix-gcc"
14
- #define DATE "built on: Tue Mar 15 19:21:39 2022 UTC"
14
+ #define DATE "built on: Tue Jul 5 15:02:16 2022 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a