node-linux-arm64 16.18.0 → 16.19.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 (77) hide show
  1. package/CHANGELOG.md +130 -0
  2. package/LICENSE +124 -51
  3. package/bin/node +0 -0
  4. package/include/node/common.gypi +2 -6
  5. package/include/node/config.gypi +4 -0
  6. package/include/node/js_native_api.h +2 -0
  7. package/include/node/js_native_api_types.h +2 -1
  8. package/include/node/node_api.h +3 -1
  9. package/include/node/node_version.h +1 -1
  10. package/include/node/openssl/archs/BSD-x86/asm/crypto/buildinf.h +1 -1
  11. package/include/node/openssl/archs/BSD-x86/asm_avx2/crypto/buildinf.h +1 -1
  12. package/include/node/openssl/archs/BSD-x86/no-asm/crypto/buildinf.h +1 -1
  13. package/include/node/openssl/archs/BSD-x86_64/asm/crypto/buildinf.h +1 -1
  14. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/crypto/buildinf.h +1 -1
  15. package/include/node/openssl/archs/BSD-x86_64/no-asm/crypto/buildinf.h +1 -1
  16. package/include/node/openssl/archs/VC-WIN32/asm/crypto/buildinf.h +1 -1
  17. package/include/node/openssl/archs/VC-WIN32/asm_avx2/crypto/buildinf.h +1 -1
  18. package/include/node/openssl/archs/VC-WIN32/no-asm/crypto/buildinf.h +1 -1
  19. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/crypto/buildinf.h +1 -1
  20. package/include/node/openssl/archs/VC-WIN64A/asm/crypto/buildinf.h +1 -1
  21. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/crypto/buildinf.h +1 -1
  22. package/include/node/openssl/archs/VC-WIN64A/no-asm/crypto/buildinf.h +1 -1
  23. package/include/node/openssl/archs/aix-gcc/asm/crypto/buildinf.h +1 -1
  24. package/include/node/openssl/archs/aix-gcc/asm_avx2/crypto/buildinf.h +1 -1
  25. package/include/node/openssl/archs/aix-gcc/no-asm/crypto/buildinf.h +1 -1
  26. package/include/node/openssl/archs/aix64-gcc/asm/crypto/buildinf.h +1 -1
  27. package/include/node/openssl/archs/aix64-gcc/asm_avx2/crypto/buildinf.h +1 -1
  28. package/include/node/openssl/archs/aix64-gcc/no-asm/crypto/buildinf.h +1 -1
  29. package/include/node/openssl/archs/darwin-i386-cc/asm/crypto/buildinf.h +1 -1
  30. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/crypto/buildinf.h +1 -1
  31. package/include/node/openssl/archs/darwin-i386-cc/no-asm/crypto/buildinf.h +1 -1
  32. package/include/node/openssl/archs/darwin64-arm64-cc/asm/crypto/buildinf.h +1 -1
  33. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/crypto/buildinf.h +1 -1
  34. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/crypto/buildinf.h +1 -1
  35. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/crypto/buildinf.h +1 -1
  36. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/crypto/buildinf.h +1 -1
  37. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/crypto/buildinf.h +1 -1
  38. package/include/node/openssl/archs/linux-aarch64/asm/crypto/buildinf.h +1 -1
  39. package/include/node/openssl/archs/linux-aarch64/asm_avx2/crypto/buildinf.h +1 -1
  40. package/include/node/openssl/archs/linux-aarch64/no-asm/crypto/buildinf.h +1 -1
  41. package/include/node/openssl/archs/linux-armv4/asm/crypto/buildinf.h +1 -1
  42. package/include/node/openssl/archs/linux-armv4/asm_avx2/crypto/buildinf.h +1 -1
  43. package/include/node/openssl/archs/linux-armv4/no-asm/crypto/buildinf.h +1 -1
  44. package/include/node/openssl/archs/linux-elf/asm/crypto/buildinf.h +1 -1
  45. package/include/node/openssl/archs/linux-elf/asm_avx2/crypto/buildinf.h +1 -1
  46. package/include/node/openssl/archs/linux-elf/no-asm/crypto/buildinf.h +1 -1
  47. package/include/node/openssl/archs/linux-ppc/asm/crypto/buildinf.h +1 -1
  48. package/include/node/openssl/archs/linux-ppc/asm_avx2/crypto/buildinf.h +1 -1
  49. package/include/node/openssl/archs/linux-ppc/no-asm/crypto/buildinf.h +1 -1
  50. package/include/node/openssl/archs/linux-ppc64/asm/crypto/buildinf.h +1 -1
  51. package/include/node/openssl/archs/linux-ppc64/asm_avx2/crypto/buildinf.h +1 -1
  52. package/include/node/openssl/archs/linux-ppc64/no-asm/crypto/buildinf.h +1 -1
  53. package/include/node/openssl/archs/linux-ppc64le/asm/crypto/buildinf.h +1 -1
  54. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/crypto/buildinf.h +1 -1
  55. package/include/node/openssl/archs/linux-ppc64le/no-asm/crypto/buildinf.h +1 -1
  56. package/include/node/openssl/archs/linux-x86_64/asm/crypto/buildinf.h +1 -1
  57. package/include/node/openssl/archs/linux-x86_64/asm_avx2/crypto/buildinf.h +1 -1
  58. package/include/node/openssl/archs/linux-x86_64/no-asm/crypto/buildinf.h +1 -1
  59. package/include/node/openssl/archs/linux32-s390x/asm/crypto/buildinf.h +1 -1
  60. package/include/node/openssl/archs/linux32-s390x/asm_avx2/crypto/buildinf.h +1 -1
  61. package/include/node/openssl/archs/linux32-s390x/no-asm/crypto/buildinf.h +1 -1
  62. package/include/node/openssl/archs/linux64-mips64/asm/crypto/buildinf.h +1 -1
  63. package/include/node/openssl/archs/linux64-mips64/asm_avx2/crypto/buildinf.h +1 -1
  64. package/include/node/openssl/archs/linux64-mips64/no-asm/crypto/buildinf.h +1 -1
  65. package/include/node/openssl/archs/linux64-riscv64/no-asm/crypto/buildinf.h +1 -1
  66. package/include/node/openssl/archs/linux64-s390x/asm/crypto/buildinf.h +1 -1
  67. package/include/node/openssl/archs/linux64-s390x/asm_avx2/crypto/buildinf.h +1 -1
  68. package/include/node/openssl/archs/linux64-s390x/no-asm/crypto/buildinf.h +1 -1
  69. package/include/node/openssl/archs/solaris-x86-gcc/asm/crypto/buildinf.h +1 -1
  70. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/crypto/buildinf.h +1 -1
  71. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/crypto/buildinf.h +1 -1
  72. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/crypto/buildinf.h +1 -1
  73. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/crypto/buildinf.h +1 -1
  74. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/crypto/buildinf.h +1 -1
  75. package/include/node/openssl/opensslv.h +2 -2
  76. package/package.json +1 -1
  77. package/share/systemtap/tapset/node.stp +146 -0
package/CHANGELOG.md CHANGED
@@ -9,6 +9,8 @@
9
9
  </tr>
10
10
  <tr>
11
11
  <td valign="top">
12
+ <a href="#16.19.0">16.19.0</a><br/>
13
+ <a href="#16.18.1">16.18.1</a><br/>
12
14
  <a href="#16.18.0">16.18.0</a><br/>
13
15
  <a href="#16.17.1">16.17.1</a><br/>
14
16
  <a href="#16.17.0">16.17.0</a><br/>
@@ -65,6 +67,134 @@
65
67
  * [io.js](CHANGELOG_IOJS.md)
66
68
  * [Archive](CHANGELOG_ARCHIVE.md)
67
69
 
70
+ <a id="16.19.0"></a>
71
+
72
+ ## 2022-12-13, Version 16.19.0 'Gallium' (LTS), @richardlau
73
+
74
+ ### Notable Changes
75
+
76
+ #### OpenSSL 1.1.1s
77
+
78
+ This update is a bugfix release and does not address any security
79
+ vulnerabilities.
80
+
81
+ #### Root certificates updated to NSS 3.85
82
+
83
+ Certificates added:
84
+
85
+ * Autoridad de Certificacion Firmaprofesional CIF A62634068
86
+ * Certainly Root E1
87
+ * Certainly Root R1
88
+ * D-TRUST BR Root CA 1 2020
89
+ * D-TRUST EV Root CA 1 2020
90
+ * DigiCert TLS ECC P384 Root G5
91
+ * DigiCert TLS RSA4096 Root G5
92
+ * E-Tugra Global Root CA ECC v3
93
+ * E-Tugra Global Root CA RSA v3
94
+ * HiPKI Root CA - G1
95
+ * ISRG Root X2
96
+ * Security Communication ECC RootCA1
97
+ * Security Communication RootCA3
98
+ * Telia Root CA v2
99
+ * vTrus ECC Root CA
100
+ * vTrus Root CA
101
+
102
+ Certificates removed:
103
+
104
+ * Cybertrust Global Root
105
+ * DST Root CA X3
106
+ * GlobalSign Root CA - R2
107
+ * Hellenic Academic and Research Institutions RootCA 2011
108
+
109
+ #### Time zone update to 2022f
110
+
111
+ Time zone data has been updated to 2022f. This includes changes to Daylight
112
+ Savings Time (DST) for Fiji and Mexico. For more information, see
113
+ <https://mm.icann.org/pipermail/tz-announce/2022-October/000075.html>.
114
+
115
+ #### Other Notable Changes
116
+
117
+ * \[[`33707dcd03`](https://github.com/nodejs/node/commit/33707dcd03)] - **dgram**: add dgram send queue info (theanarkh) [#44149](https://github.com/nodejs/node/pull/44149)
118
+
119
+ Dependency updates:
120
+
121
+ * \[[`3b2b70d792`](https://github.com/nodejs/node/commit/3b2b70d792)] - **deps**: upgrade npm to 8.19.3 (npm team) [#45322](https://github.com/nodejs/node/pull/45322)
122
+
123
+ Experimental features:
124
+
125
+ * \[[`1e0dcd1ee0`](https://github.com/nodejs/node/commit/1e0dcd1ee0)] - **cli**: add `--watch` (Moshe Atlow) [#44366](https://github.com/nodejs/node/pull/44366)
126
+ * \[[`8c73279ebb`](https://github.com/nodejs/node/commit/8c73279ebb)] - **util**: add default value option to parsearg (Manuel Spigolon) [#44631](https://github.com/nodejs/node/pull/44631)
127
+
128
+ ### Commits
129
+
130
+ * \[[`bbef3c42f6`](https://github.com/nodejs/node/commit/bbef3c42f6)] - **build**: add version info to timezone update PR (Darshan Sen) [#45021](https://github.com/nodejs/node/pull/45021)
131
+ * \[[`cc2c7648e0`](https://github.com/nodejs/node/commit/cc2c7648e0)] - **build**: support Python 3.11 (Luigi Pinca) [#45191](https://github.com/nodejs/node/pull/45191)
132
+ * \[[`ac24c80663`](https://github.com/nodejs/node/commit/ac24c80663)] - **build**: remove redundant condition from common.gypi (Richard Lau) [#45076](https://github.com/nodejs/node/pull/45076)
133
+ * \[[`03dcbe3030`](https://github.com/nodejs/node/commit/03dcbe3030)] - **build**: fix bad upstream merge (Stephen Gallagher) [#44642](https://github.com/nodejs/node/pull/44642)
134
+ * \[[`1e0dcd1ee0`](https://github.com/nodejs/node/commit/1e0dcd1ee0)] - **cli**: add `--watch` (Moshe Atlow) [#44366](https://github.com/nodejs/node/pull/44366)
135
+ * \[[`96d131665e`](https://github.com/nodejs/node/commit/96d131665e)] - **cluster**: use inspector utils (Moshe Atlow) [#44592](https://github.com/nodejs/node/pull/44592)
136
+ * \[[`704836033a`](https://github.com/nodejs/node/commit/704836033a)] - **crypto**: update root certificates (Luigi Pinca) [#45490](https://github.com/nodejs/node/pull/45490)
137
+ * \[[`5a776d4a69`](https://github.com/nodejs/node/commit/5a776d4a69)] - **deps**: update timezone to 2022f (Richard Lau) [#45613](https://github.com/nodejs/node/pull/45613)
138
+ * \[[`3b2b70d792`](https://github.com/nodejs/node/commit/3b2b70d792)] - **deps**: upgrade npm to 8.19.3 (npm team) [#45322](https://github.com/nodejs/node/pull/45322)
139
+ * \[[`9fbc8b21db`](https://github.com/nodejs/node/commit/9fbc8b21db)] - **deps**: update corepack to 0.15.1 (Node.js GitHub Bot) [#45331](https://github.com/nodejs/node/pull/45331)
140
+ * \[[`87e3d002ca`](https://github.com/nodejs/node/commit/87e3d002ca)] - **deps**: update corepack to 0.15.0 (Node.js GitHub Bot) [#45235](https://github.com/nodejs/node/pull/45235)
141
+ * \[[`e972ff7b13`](https://github.com/nodejs/node/commit/e972ff7b13)] - **deps**: V8: backport bbd800c6e359 (Chengzhong Wu) [#44947](https://github.com/nodejs/node/pull/44947)
142
+ * \[[`af9d8217c0`](https://github.com/nodejs/node/commit/af9d8217c0)] - **deps**: V8: cherry-pick b95354290941 (Chengzhong Wu) [#44947](https://github.com/nodejs/node/pull/44947)
143
+ * \[[`38202d321b`](https://github.com/nodejs/node/commit/38202d321b)] - **deps**: update undici to 5.12.0 (Node.js GitHub Bot) [#45236](https://github.com/nodejs/node/pull/45236)
144
+ * \[[`7c0da6adf9`](https://github.com/nodejs/node/commit/7c0da6adf9)] - **deps**: update archs files for OpenSSL-1.1.1s (RafaelGSS) [#45274](https://github.com/nodejs/node/pull/45274)
145
+ * \[[`1149ead6f7`](https://github.com/nodejs/node/commit/1149ead6f7)] - **deps**: upgrade openssl sources to OpenSSL\_1\_1\_1s (RafaelGSS) [#45274](https://github.com/nodejs/node/pull/45274)
146
+ * \[[`cd54bce4f5`](https://github.com/nodejs/node/commit/cd54bce4f5)] - **deps**: update timezone (Node.js GitHub Bot) [#44950](https://github.com/nodejs/node/pull/44950)
147
+ * \[[`2901abe4f0`](https://github.com/nodejs/node/commit/2901abe4f0)] - **deps**: update undici to 5.11.0 (Node.js GitHub Bot) [#44929](https://github.com/nodejs/node/pull/44929)
148
+ * \[[`c80cf97033`](https://github.com/nodejs/node/commit/c80cf97033)] - **deps**: update corepack to 0.14.2 (Node.js GitHub Bot) [#44775](https://github.com/nodejs/node/pull/44775)
149
+ * \[[`33707dcd03`](https://github.com/nodejs/node/commit/33707dcd03)] - **dgram**: add dgram send queue info (theanarkh) [#44149](https://github.com/nodejs/node/pull/44149)
150
+ * \[[`c708d9bb94`](https://github.com/nodejs/node/commit/c708d9bb94)] - **doc**: fix typo in parseArgs default value (Tobias Nießen) [#45083](https://github.com/nodejs/node/pull/45083)
151
+ * \[[`5a0efa05d2`](https://github.com/nodejs/node/commit/5a0efa05d2)] - **node-api**: handle no support for external buffers (Michael Dawson) [#45181](https://github.com/nodejs/node/pull/45181)
152
+ * \[[`db31de634e`](https://github.com/nodejs/node/commit/db31de634e)] - **readline**: refactor to avoid unsafe regex primordials (Antoine du Hamel) [#43475](https://github.com/nodejs/node/pull/43475)
153
+ * \[[`fbc52e5729`](https://github.com/nodejs/node/commit/fbc52e5729)] - **src**: disambiguate terms used to refer to builtins and addons (Joyee Cheung) [#44135](https://github.com/nodejs/node/pull/44135)
154
+ * \[[`953072d3db`](https://github.com/nodejs/node/commit/953072d3db)] - **src**: let http2 streams end after session close (Santiago Gimeno) [#45153](https://github.com/nodejs/node/pull/45153)
155
+ * \[[`54608d8dc3`](https://github.com/nodejs/node/commit/54608d8dc3)] - **src**: split property helpers from node::Environment (Chengzhong Wu) [#44056](https://github.com/nodejs/node/pull/44056)
156
+ * \[[`6733556783`](https://github.com/nodejs/node/commit/6733556783)] - **test**: add test to validate changelogs for releases (Richard Lau) [#45325](https://github.com/nodejs/node/pull/45325)
157
+ * \[[`821d832cef`](https://github.com/nodejs/node/commit/821d832cef)] - **test**: mark test-watch-mode\* as flaky on all platforms (Pierrick Bouvier) [#45049](https://github.com/nodejs/node/pull/45049)
158
+ * \[[`02a18eac69`](https://github.com/nodejs/node/commit/02a18eac69)] - **test**: fix test-runner-inspect (Moshe Atlow) [#44620](https://github.com/nodejs/node/pull/44620)
159
+ * \[[`197df63f74`](https://github.com/nodejs/node/commit/197df63f74)] - **test**: add a test to ensure the correctness of timezone upgrades (Darshan Sen) [#45299](https://github.com/nodejs/node/pull/45299)
160
+ * \[[`42e9d8016a`](https://github.com/nodejs/node/commit/42e9d8016a)] - **test**: fix textdecoder test for small-icu builds (Richard Lau) [#45225](https://github.com/nodejs/node/pull/45225)
161
+ * \[[`6d736a56d8`](https://github.com/nodejs/node/commit/6d736a56d8)] - **test**: fix watch mode test flake (Moshe Atlow) [#44739](https://github.com/nodejs/node/pull/44739)
162
+ * \[[`543d3d2bf3`](https://github.com/nodejs/node/commit/543d3d2bf3)] - **test**: deflake watch mode tests (Moshe Atlow) [#44621](https://github.com/nodejs/node/pull/44621)
163
+ * \[[`97f6caf4eb`](https://github.com/nodejs/node/commit/97f6caf4eb)] - **test**: split watch mode inspector tests to sequential (Moshe Atlow) [#44551](https://github.com/nodejs/node/pull/44551)
164
+ * \[[`499750ff7a`](https://github.com/nodejs/node/commit/499750ff7a)] - **test**: update list of known globals (Antoine du Hamel) [#45255](https://github.com/nodejs/node/pull/45255)
165
+ * \[[`64d343af74`](https://github.com/nodejs/node/commit/64d343af74)] - **test\_runner**: support using `--inspect` with `--test` (Moshe Atlow) [#44520](https://github.com/nodejs/node/pull/44520)
166
+ * \[[`99ee5e484d`](https://github.com/nodejs/node/commit/99ee5e484d)] - **test\_runner**: fix `duration_ms` to be milliseconds (Moshe Atlow) [#44450](https://github.com/nodejs/node/pull/44450)
167
+ * \[[`37e909251c`](https://github.com/nodejs/node/commit/37e909251c)] - **test\_runner**: support programmatically running `--test` (Moshe Atlow) [#44241](https://github.com/nodejs/node/pull/44241)
168
+ * \[[`0ae5694f88`](https://github.com/nodejs/node/commit/0ae5694f88)] - **tools**: update certdata.txt (Luigi Pinca) [#45490](https://github.com/nodejs/node/pull/45490)
169
+ * \[[`891368cefd`](https://github.com/nodejs/node/commit/891368cefd)] - **tools**: remove faulty early termination logic from update-timezone.mjs (Darshan Sen) [#44870](https://github.com/nodejs/node/pull/44870)
170
+ * \[[`543493c242`](https://github.com/nodejs/node/commit/543493c242)] - **tools**: fix timezone update tool (Darshan Sen) [#44870](https://github.com/nodejs/node/pull/44870)
171
+ * \[[`c77f660b75`](https://github.com/nodejs/node/commit/c77f660b75)] - **tools**: fix `create-or-update-pull-request-action` hash on GHA (Antoine du Hamel) [#45166](https://github.com/nodejs/node/pull/45166)
172
+ * \[[`58c30dd049`](https://github.com/nodejs/node/commit/58c30dd049)] - **tools**: update gr2m/create-or-update-pull-request-action (Luigi Pinca) [#45022](https://github.com/nodejs/node/pull/45022)
173
+ * \[[`749a4b3e5e`](https://github.com/nodejs/node/commit/749a4b3e5e)] - **tools**: use Python 3.11 in GitHub Actions workflows (Luigi Pinca) [#45191](https://github.com/nodejs/node/pull/45191)
174
+ * \[[`6f541d99a5`](https://github.com/nodejs/node/commit/6f541d99a5)] - **tools**: have test-asan use ubuntu-20.04 (Filip Skokan) [#45581](https://github.com/nodejs/node/pull/45581)
175
+ * \[[`e7ed56f501`](https://github.com/nodejs/node/commit/e7ed56f501)] - **tools**: make license-builder.sh comply with shellcheck 0.8.0 (Rich Trott) [#41258](https://github.com/nodejs/node/pull/41258)
176
+ * \[[`cc819b4bf8`](https://github.com/nodejs/node/commit/cc819b4bf8)] - **tools**: fix typo in `avoid-prototype-pollution` lint rule (Antoine du Hamel) [#44446](https://github.com/nodejs/node/pull/44446)
177
+ * \[[`254358c81e`](https://github.com/nodejs/node/commit/254358c81e)] - **tools**: refactor `avoid-prototype-pollution` lint rule (Antoine du Hamel) [#43476](https://github.com/nodejs/node/pull/43476)
178
+ * \[[`8c73279ebb`](https://github.com/nodejs/node/commit/8c73279ebb)] - **util**: add default value option to parsearg (Manuel Spigolon) [#44631](https://github.com/nodejs/node/pull/44631)
179
+
180
+ <a id="16.18.1"></a>
181
+
182
+ ## 2022-11-04, Version 16.18.1 'Gallium' (LTS), @BethGriggs
183
+
184
+ This is a security release.
185
+
186
+ ### Notable changes
187
+
188
+ The following CVEs are fixed in this release:
189
+
190
+ * **[CVE-2022-43548](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-43548)**: DNS rebinding in --inspect via invalid octal IP address (Medium)
191
+
192
+ More detailed information on each of the vulnerabilities can be found in [November 2022 Security Releases](https://nodejs.org/en/blog/vulnerability/november-2022-security-releases/) blog post.
193
+
194
+ ### Commits
195
+
196
+ * \[[`9ffddd7098`](https://github.com/nodejs/node/commit/9ffddd7098)] - **inspector**: harden IP address validation again (Tobias Nießen) [nodejs-private/node-private#354](https://github.com/nodejs-private/node-private/pull/354)
197
+
68
198
  <a id="16.18.0"></a>
69
199
 
70
200
  ## 2022-10-12, Version 16.18.0 'Gallium' (LTS), @juanarbol
package/LICENSE CHANGED
@@ -763,56 +763,129 @@ The externally maintained libraries used by Node.js are:
763
763
 
764
764
  - OpenSSL, located at deps/openssl, is licensed as follows:
765
765
  """
766
- Copyright (c) 1998-2019 The OpenSSL Project. All rights reserved.
767
-
768
- Redistribution and use in source and binary forms, with or without
769
- modification, are permitted provided that the following conditions
770
- are met:
771
-
772
- 1. Redistributions of source code must retain the above copyright
773
- notice, this list of conditions and the following disclaimer.
774
-
775
- 2. Redistributions in binary form must reproduce the above copyright
776
- notice, this list of conditions and the following disclaimer in
777
- the documentation and/or other materials provided with the
778
- distribution.
779
-
780
- 3. All advertising materials mentioning features or use of this
781
- software must display the following acknowledgment:
782
- "This product includes software developed by the OpenSSL Project
783
- for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
784
-
785
- 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
786
- endorse or promote products derived from this software without
787
- prior written permission. For written permission, please contact
788
- openssl-core@openssl.org.
789
-
790
- 5. Products derived from this software may not be called "OpenSSL"
791
- nor may "OpenSSL" appear in their names without prior written
792
- permission of the OpenSSL Project.
793
-
794
- 6. Redistributions of any form whatsoever must retain the following
795
- acknowledgment:
796
- "This product includes software developed by the OpenSSL Project
797
- for use in the OpenSSL Toolkit (http://www.openssl.org/)"
798
-
799
- THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
800
- EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
801
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
802
- PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
803
- ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
804
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
805
- NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
806
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
807
- HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
808
- STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
809
- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
810
- OF THE POSSIBILITY OF SUCH DAMAGE.
811
- ====================================================================
812
-
813
- This product includes cryptographic software written by Eric Young
814
- (eay@cryptsoft.com). This product includes software written by Tim
815
- Hudson (tjh@cryptsoft.com).
766
+ LICENSE ISSUES
767
+ ==============
768
+
769
+ The OpenSSL toolkit stays under a double license, i.e. both the conditions of
770
+ the OpenSSL License and the original SSLeay license apply to the toolkit.
771
+ See below for the actual license texts.
772
+
773
+ OpenSSL License
774
+ ---------------
775
+
776
+ /* ====================================================================
777
+ * Copyright (c) 1998-2019 The OpenSSL Project. All rights reserved.
778
+ *
779
+ * Redistribution and use in source and binary forms, with or without
780
+ * modification, are permitted provided that the following conditions
781
+ * are met:
782
+ *
783
+ * 1. Redistributions of source code must retain the above copyright
784
+ * notice, this list of conditions and the following disclaimer.
785
+ *
786
+ * 2. Redistributions in binary form must reproduce the above copyright
787
+ * notice, this list of conditions and the following disclaimer in
788
+ * the documentation and/or other materials provided with the
789
+ * distribution.
790
+ *
791
+ * 3. All advertising materials mentioning features or use of this
792
+ * software must display the following acknowledgment:
793
+ * "This product includes software developed by the OpenSSL Project
794
+ * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
795
+ *
796
+ * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
797
+ * endorse or promote products derived from this software without
798
+ * prior written permission. For written permission, please contact
799
+ * openssl-core@openssl.org.
800
+ *
801
+ * 5. Products derived from this software may not be called "OpenSSL"
802
+ * nor may "OpenSSL" appear in their names without prior written
803
+ * permission of the OpenSSL Project.
804
+ *
805
+ * 6. Redistributions of any form whatsoever must retain the following
806
+ * acknowledgment:
807
+ * "This product includes software developed by the OpenSSL Project
808
+ * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
809
+ *
810
+ * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
811
+ * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
812
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
813
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
814
+ * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
815
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
816
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
817
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
818
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
819
+ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
820
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
821
+ * OF THE POSSIBILITY OF SUCH DAMAGE.
822
+ * ====================================================================
823
+ *
824
+ * This product includes cryptographic software written by Eric Young
825
+ * (eay@cryptsoft.com). This product includes software written by Tim
826
+ * Hudson (tjh@cryptsoft.com).
827
+ *
828
+ */
829
+
830
+ Original SSLeay License
831
+ -----------------------
832
+
833
+ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
834
+ * All rights reserved.
835
+ *
836
+ * This package is an SSL implementation written
837
+ * by Eric Young (eay@cryptsoft.com).
838
+ * The implementation was written so as to conform with Netscapes SSL.
839
+ *
840
+ * This library is free for commercial and non-commercial use as long as
841
+ * the following conditions are aheared to. The following conditions
842
+ * apply to all code found in this distribution, be it the RC4, RSA,
843
+ * lhash, DES, etc., code; not just the SSL code. The SSL documentation
844
+ * included with this distribution is covered by the same copyright terms
845
+ * except that the holder is Tim Hudson (tjh@cryptsoft.com).
846
+ *
847
+ * Copyright remains Eric Young's, and as such any Copyright notices in
848
+ * the code are not to be removed.
849
+ * If this package is used in a product, Eric Young should be given attribution
850
+ * as the author of the parts of the library used.
851
+ * This can be in the form of a textual message at program startup or
852
+ * in documentation (online or textual) provided with the package.
853
+ *
854
+ * Redistribution and use in source and binary forms, with or without
855
+ * modification, are permitted provided that the following conditions
856
+ * are met:
857
+ * 1. Redistributions of source code must retain the copyright
858
+ * notice, this list of conditions and the following disclaimer.
859
+ * 2. Redistributions in binary form must reproduce the above copyright
860
+ * notice, this list of conditions and the following disclaimer in the
861
+ * documentation and/or other materials provided with the distribution.
862
+ * 3. All advertising materials mentioning features or use of this software
863
+ * must display the following acknowledgement:
864
+ * "This product includes cryptographic software written by
865
+ * Eric Young (eay@cryptsoft.com)"
866
+ * The word 'cryptographic' can be left out if the rouines from the library
867
+ * being used are not cryptographic related :-).
868
+ * 4. If you include any Windows specific code (or a derivative thereof) from
869
+ * the apps directory (application code) you must include an acknowledgement:
870
+ * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
871
+ *
872
+ * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
873
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
874
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
875
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
876
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
877
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
878
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
879
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
880
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
881
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
882
+ * SUCH DAMAGE.
883
+ *
884
+ * The licence and distribution terms for any publically available version or
885
+ * derivative of this code cannot be changed. i.e. this code cannot simply be
886
+ * copied and put under another distribution licence
887
+ * [including the GNU Public Licence.]
888
+ */
816
889
  """
817
890
 
818
891
  - Punycode.js, located at lib/punycode.js, is licensed as follows:
@@ -1340,7 +1413,7 @@ The externally maintained libraries used by Node.js are:
1340
1413
 
1341
1414
  - ESLint, located at tools/node_modules/eslint, is licensed as follows:
1342
1415
  """
1343
- Copyright JS Foundation and other contributors, https://js.foundation
1416
+ Copyright OpenJS Foundation and other contributors, <www.openjsf.org>
1344
1417
 
1345
1418
  Permission is hereby granted, free of charge, to any person obtaining a copy
1346
1419
  of this software and associated documentation files (the "Software"), to deal
package/bin/node CHANGED
Binary file
@@ -29,6 +29,7 @@
29
29
  'error_on_warn%': 'false',
30
30
 
31
31
  'openssl_fips%': '',
32
+ 'openssl_product': '<(STATIC_LIB_PREFIX)openssl<(STATIC_LIB_SUFFIX)',
32
33
  'openssl_no_asm%': 0,
33
34
 
34
35
  # Don't use ICU data file (icudtl.dat) from V8, we use our own.
@@ -36,7 +37,7 @@
36
37
 
37
38
  # Reset this number to 0 on major V8 upgrades.
38
39
  # Increment by one for each non-official patch applied to deps/v8.
39
- 'v8_embedder_string': '-node.22',
40
+ 'v8_embedder_string': '-node.24',
40
41
 
41
42
  ##### V8 defaults for Node.js #####
42
43
 
@@ -101,11 +102,6 @@
101
102
  'obj_dir%': '<(PRODUCT_DIR)/obj.target',
102
103
  'v8_base': '<(PRODUCT_DIR)/obj.target/tools/v8_gypfiles/libv8_snapshot.a',
103
104
  }],
104
- ['openssl_fips != ""', {
105
- 'openssl_product': '<(STATIC_LIB_PREFIX)openssl<(STATIC_LIB_SUFFIX)',
106
- }, {
107
- 'openssl_product': '<(STATIC_LIB_PREFIX)openssl<(STATIC_LIB_SUFFIX)',
108
- }],
109
105
  ['OS=="mac"', {
110
106
  'clang%': 1,
111
107
  'obj_dir%': '<(PRODUCT_DIR)/obj.target',
@@ -222,8 +222,10 @@
222
222
  'lib/internal/per_context/primordials.js',
223
223
  'lib/internal/test_runner/harness.js',
224
224
  'lib/internal/test_runner/utils.js',
225
+ 'lib/internal/test_runner/runner.js',
225
226
  'lib/internal/test_runner/test.js',
226
227
  'lib/internal/test_runner/tap_stream.js',
228
+ 'lib/internal/watch_mode/files_watcher.js',
227
229
  'lib/internal/tls/secure-context.js',
228
230
  'lib/internal/tls/secure-pair.js',
229
231
  'lib/internal/tls/parse-cert-string.js',
@@ -241,6 +243,7 @@
241
243
  'lib/internal/main/mksnapshot.js',
242
244
  'lib/internal/main/print_help.js',
243
245
  'lib/internal/main/eval_stdin.js',
246
+ 'lib/internal/main/watch_mode.js',
244
247
  'lib/internal/streams/writable.js',
245
248
  'lib/internal/streams/lazy_transform.js',
246
249
  'lib/internal/streams/duplexify.js',
@@ -267,6 +270,7 @@
267
270
  'lib/internal/util/inspect.js',
268
271
  'lib/internal/util/inspector.js',
269
272
  'lib/internal/util/types.js',
273
+ 'lib/internal/util/colors.js',
270
274
  'lib/internal/util/parse_args/utils.js',
271
275
  'lib/internal/util/parse_args/parse_args.js',
272
276
  'lib/internal/perf/event_loop_delay.js',
@@ -401,6 +401,7 @@ NAPI_EXTERN napi_status NAPI_CDECL napi_create_arraybuffer(napi_env env,
401
401
  size_t byte_length,
402
402
  void** data,
403
403
  napi_value* result);
404
+ #ifndef NODE_API_NO_EXTERNAL_BUFFERS_ALLOWED
404
405
  NAPI_EXTERN napi_status NAPI_CDECL
405
406
  napi_create_external_arraybuffer(napi_env env,
406
407
  void* external_data,
@@ -408,6 +409,7 @@ napi_create_external_arraybuffer(napi_env env,
408
409
  napi_finalize finalize_cb,
409
410
  void* finalize_hint,
410
411
  napi_value* result);
412
+ #endif // NODE_API_NO_EXTERNAL_BUFFERS_ALLOWED
411
413
  NAPI_EXTERN napi_status NAPI_CDECL napi_get_arraybuffer_info(
412
414
  napi_env env, napi_value arraybuffer, void** data, size_t* byte_length);
413
415
  NAPI_EXTERN napi_status NAPI_CDECL napi_is_typedarray(napi_env env,
@@ -98,7 +98,8 @@ typedef enum {
98
98
  napi_date_expected,
99
99
  napi_arraybuffer_expected,
100
100
  napi_detachable_arraybuffer_expected,
101
- napi_would_deadlock // unused
101
+ napi_would_deadlock, // unused
102
+ napi_no_external_buffers_allowed
102
103
  } napi_status;
103
104
  // Note: when adding a new enum value to `napi_status`, please also update
104
105
  // * `const int last_status` in the definition of `napi_get_last_error_info()'
@@ -3,7 +3,7 @@
3
3
 
4
4
  #ifdef BUILDING_NODE_EXTENSION
5
5
  #ifdef _WIN32
6
- // Building native module against node
6
+ // Building native addon against node
7
7
  #define NAPI_EXTERN __declspec(dllimport)
8
8
  #elif defined(__wasm32__)
9
9
  #define NAPI_EXTERN __attribute__((__import_module__("napi")))
@@ -153,6 +153,7 @@ NAPI_EXTERN napi_status NAPI_CDECL napi_create_buffer(napi_env env,
153
153
  size_t length,
154
154
  void** data,
155
155
  napi_value* result);
156
+ #ifndef NODE_API_NO_EXTERNAL_BUFFERS_ALLOWED
156
157
  NAPI_EXTERN napi_status NAPI_CDECL
157
158
  napi_create_external_buffer(napi_env env,
158
159
  size_t length,
@@ -160,6 +161,7 @@ napi_create_external_buffer(napi_env env,
160
161
  napi_finalize finalize_cb,
161
162
  void* finalize_hint,
162
163
  napi_value* result);
164
+ #endif // NODE_API_NO_EXTERNAL_BUFFERS_ALLOWED
163
165
  NAPI_EXTERN napi_status NAPI_CDECL napi_create_buffer_copy(napi_env env,
164
166
  size_t length,
165
167
  const void* data,
@@ -23,7 +23,7 @@
23
23
  #define SRC_NODE_VERSION_H_
24
24
 
25
25
  #define NODE_MAJOR_VERSION 16
26
- #define NODE_MINOR_VERSION 18
26
+ #define NODE_MINOR_VERSION 19
27
27
  #define NODE_PATCH_VERSION 0
28
28
 
29
29
  #define NODE_VERSION_IS_LTS 1
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: BSD-x86"
14
- #define DATE "built on: Tue Jul 5 15:02:24 2022 UTC"
14
+ #define DATE "built on: Wed Nov 2 12:56:45 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 Jul 5 15:02:26 2022 UTC"
14
+ #define DATE "built on: Wed Nov 2 12:56:47 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 Jul 5 15:02:28 2022 UTC"
14
+ #define DATE "built on: Wed Nov 2 12:56:49 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 Jul 5 15:02:29 2022 UTC"
14
+ #define DATE "built on: Wed Nov 2 12:56:50 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 Jul 5 15:02:34 2022 UTC"
14
+ #define DATE "built on: Wed Nov 2 12:56:54 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 Jul 5 15:02:38 2022 UTC"
14
+ #define DATE "built on: Wed Nov 2 12:56:59 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 Jul 5 15:04:18 2022 UTC"
14
+ #define DATE "built on: Wed Nov 2 12:58:39 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 Jul 5 15:04:20 2022 UTC"
14
+ #define DATE "built on: Wed Nov 2 12:58:41 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 Jul 5 15:04:22 2022 UTC"
14
+ #define DATE "built on: Wed Nov 2 12:58:43 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 Jul 5 15:04:23 2022 UTC"
14
+ #define DATE "built on: Wed Nov 2 12:58:44 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 Jul 5 15:04:08 2022 UTC"
14
+ #define DATE "built on: Wed Nov 2 12:58:30 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 Jul 5 15:04:13 2022 UTC"
14
+ #define DATE "built on: Wed Nov 2 12:58: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: "
14
- #define DATE "built on: Tue Jul 5 15:04:17 2022 UTC"
14
+ #define DATE "built on: Wed Nov 2 12:58: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: aix-gcc"
14
- #define DATE "built on: Tue Jul 5 15:02:14 2022 UTC"
14
+ #define DATE "built on: Wed Nov 2 12:56:36 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 Jul 5 15:02:16 2022 UTC"
14
+ #define DATE "built on: Wed Nov 2 12:56:38 2022 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a