node-linux-arm64 23.7.0 → 23.8.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.
- package/CHANGELOG.md +171 -0
- package/LICENSE +34 -0
- package/README.md +2 -4
- package/bin/node +0 -0
- package/include/node/common.gypi +2 -1
- package/include/node/config.gypi +34 -0
- package/include/node/node_version.h +1 -1
- package/package.json +1 -1
- package/share/man/man1/node.1 +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
</tr>
|
|
9
9
|
<tr>
|
|
10
10
|
<td>
|
|
11
|
+
<a href="#23.8.0">23.8.0</a><br/>
|
|
11
12
|
<a href="#23.7.0">23.7.0</a><br/>
|
|
12
13
|
<a href="#23.6.1">23.6.1</a><br/>
|
|
13
14
|
<a href="#23.6.0">23.6.0</a><br/>
|
|
@@ -46,6 +47,176 @@
|
|
|
46
47
|
* [io.js](CHANGELOG_IOJS.md)
|
|
47
48
|
* [Archive](CHANGELOG_ARCHIVE.md)
|
|
48
49
|
|
|
50
|
+
<a id="23.8.0"></a>
|
|
51
|
+
|
|
52
|
+
## 2025-02-13, Version 23.8.0 (Current), @targos
|
|
53
|
+
|
|
54
|
+
### Notable Changes
|
|
55
|
+
|
|
56
|
+
#### Support for using system CA certificates store on macOS and Windows
|
|
57
|
+
|
|
58
|
+
This version adds the `--use-system-ca` command-line flag, which instructs Node.js
|
|
59
|
+
to use the trusted CA certificates present in the system store along with
|
|
60
|
+
the `--use-bundled-ca`, `--use-openssl-ca` options.
|
|
61
|
+
|
|
62
|
+
This option is available on macOS and Windows for now.
|
|
63
|
+
|
|
64
|
+
Contributed by Tim Jacomb in [#56599](https://github.com/nodejs/node/pull/56599)
|
|
65
|
+
and Joyee Cheung in [#56833](https://github.com/nodejs/node/pull/56833).
|
|
66
|
+
|
|
67
|
+
#### Introduction of the URL Pattern API
|
|
68
|
+
|
|
69
|
+
An implementation of the [URL Pattern API](https://developer.mozilla.org/en-US/docs/Web/API/URL_Pattern_API)
|
|
70
|
+
is now available.
|
|
71
|
+
|
|
72
|
+
The `URLPattern` constructor is exported from the `node:url` module and will be
|
|
73
|
+
available as a global in Node.js 24.
|
|
74
|
+
|
|
75
|
+
Contributed by Yagiz Nizipli and Daniel Lemire in [#56452](https://github.com/nodejs/node/pull/56452).
|
|
76
|
+
|
|
77
|
+
#### Support for the zstd compression algorithm
|
|
78
|
+
|
|
79
|
+
Node.js now includes support for the Zstandard (zstd) compression algorithm.
|
|
80
|
+
Various APIs have been added to the `node:zlib` module for both compression and decompression
|
|
81
|
+
of zstd streams.
|
|
82
|
+
|
|
83
|
+
Contributed by Jan Krems in [#52100](https://github.com/nodejs/node/pull/52100).
|
|
84
|
+
|
|
85
|
+
#### Node.js thread names
|
|
86
|
+
|
|
87
|
+
Threads created by the Node.js process are now named to improve the debugging experience.
|
|
88
|
+
Worker threads will use the `name` option that can be passed to the `Worker` constructor.
|
|
89
|
+
|
|
90
|
+
Contributed by Rafael Gonzaga in [#56416](https://github.com/nodejs/node/pull/56416).
|
|
91
|
+
|
|
92
|
+
#### Timezone data has been updated to 2025a
|
|
93
|
+
|
|
94
|
+
Included changes:
|
|
95
|
+
|
|
96
|
+
* Paraguay adopts permanent -03 starting spring 2024.
|
|
97
|
+
* Improve pre-1991 data for the Philippines.
|
|
98
|
+
|
|
99
|
+
#### Other Notable Changes
|
|
100
|
+
|
|
101
|
+
* \[[`39997867cf`](https://github.com/nodejs/node/commit/39997867cf)] - **(SEMVER-MINOR)** **sqlite**: allow returning `ArrayBufferView`s from user-defined functions (René) [#56790](https://github.com/nodejs/node/pull/56790)
|
|
102
|
+
|
|
103
|
+
### Commits
|
|
104
|
+
|
|
105
|
+
* \[[`0ee9c34d63`](https://github.com/nodejs/node/commit/0ee9c34d63)] - **benchmark**: add simple parse and test benchmarks for URLPattern (James M Snell) [#56882](https://github.com/nodejs/node/pull/56882)
|
|
106
|
+
* \[[`b3f2045d14`](https://github.com/nodejs/node/commit/b3f2045d14)] - **build**: gyp exclude libm linking on macOS (deepak1556) [#56901](https://github.com/nodejs/node/pull/56901)
|
|
107
|
+
* \[[`e0dd9aefd6`](https://github.com/nodejs/node/commit/e0dd9aefd6)] - **build**: remove explicit linker call to libm on macOS (deepak1556) [#56901](https://github.com/nodejs/node/pull/56901)
|
|
108
|
+
* \[[`52399da780`](https://github.com/nodejs/node/commit/52399da780)] - **build**: link with Security.framework in GN build (Cheng) [#56895](https://github.com/nodejs/node/pull/56895)
|
|
109
|
+
* \[[`582b9221c9`](https://github.com/nodejs/node/commit/582b9221c9)] - **build**: do not put commands in sources variables (Cheng) [#56885](https://github.com/nodejs/node/pull/56885)
|
|
110
|
+
* \[[`ea61b956e9`](https://github.com/nodejs/node/commit/ea61b956e9)] - **build**: add double quotes around <(python) (Luigi Pinca) [#56826](https://github.com/nodejs/node/pull/56826)
|
|
111
|
+
* \[[`14236ef778`](https://github.com/nodejs/node/commit/14236ef778)] - **build**: add build option suppress\_all\_error\_on\_warn (Michael Dawson) [#56647](https://github.com/nodejs/node/pull/56647)
|
|
112
|
+
* \[[`dfd3f430f3`](https://github.com/nodejs/node/commit/dfd3f430f3)] - **build,win**: enable ccache (Stefan Stojanovic) [#56847](https://github.com/nodejs/node/pull/56847)
|
|
113
|
+
* \[[`3e207bd9ec`](https://github.com/nodejs/node/commit/3e207bd9ec)] - **(SEMVER-MINOR)** **crypto**: support --use-system-ca on Windows (Joyee Cheung) [#56833](https://github.com/nodejs/node/pull/56833)
|
|
114
|
+
* \[[`fe2694a992`](https://github.com/nodejs/node/commit/fe2694a992)] - **crypto**: fix X509\* leak in --use-system-ca (Joyee Cheung) [#56832](https://github.com/nodejs/node/pull/56832)
|
|
115
|
+
* \[[`60039a2c36`](https://github.com/nodejs/node/commit/60039a2c36)] - **crypto**: add api to get openssl security level (Michael Dawson) [#56601](https://github.com/nodejs/node/pull/56601)
|
|
116
|
+
* \[[`39a474f7c0`](https://github.com/nodejs/node/commit/39a474f7c0)] - **(SEMVER-MINOR)** **crypto**: added support for reading certificates from macOS system store (Tim Jacomb) [#56599](https://github.com/nodejs/node/pull/56599)
|
|
117
|
+
* \[[`144bee8067`](https://github.com/nodejs/node/commit/144bee8067)] - **deps**: update zlib to 1.3.0.1-motley-788cb3c (Node.js GitHub Bot) [#56655](https://github.com/nodejs/node/pull/56655)
|
|
118
|
+
* \[[`7fd39e3a79`](https://github.com/nodejs/node/commit/7fd39e3a79)] - **deps**: update sqlite to 3.49.0 (Node.js GitHub Bot) [#56654](https://github.com/nodejs/node/pull/56654)
|
|
119
|
+
* \[[`d698cb5434`](https://github.com/nodejs/node/commit/d698cb5434)] - **deps**: update amaro to 0.3.2 (marco-ippolito) [#56916](https://github.com/nodejs/node/pull/56916)
|
|
120
|
+
* \[[`dbd09067c0`](https://github.com/nodejs/node/commit/dbd09067c0)] - **deps**: V8: cherry-pick 9ab40592f697 (Levi Zim) [#56781](https://github.com/nodejs/node/pull/56781)
|
|
121
|
+
* \[[`ee33ef3aa6`](https://github.com/nodejs/node/commit/ee33ef3aa6)] - **deps**: update cjs-module-lexer to 2.0.0 (Michael Dawson) [#56855](https://github.com/nodejs/node/pull/56855)
|
|
122
|
+
* \[[`c0542557d0`](https://github.com/nodejs/node/commit/c0542557d0)] - **deps**: update timezone to 2025a (Node.js GitHub Bot) [#56876](https://github.com/nodejs/node/pull/56876)
|
|
123
|
+
* \[[`d67cb1f9bb`](https://github.com/nodejs/node/commit/d67cb1f9bb)] - **deps**: update simdjson to 3.12.0 (Node.js GitHub Bot) [#56874](https://github.com/nodejs/node/pull/56874)
|
|
124
|
+
* \[[`70b04b4314`](https://github.com/nodejs/node/commit/70b04b4314)] - **deps**: update googletest to e235eb3 (Node.js GitHub Bot) [#56873](https://github.com/nodejs/node/pull/56873)
|
|
125
|
+
* \[[`e11cda003f`](https://github.com/nodejs/node/commit/e11cda003f)] - **(SEMVER-MINOR)** **deps**: update ada to v3.0.1 (Yagiz Nizipli) [#56452](https://github.com/nodejs/node/pull/56452)
|
|
126
|
+
* \[[`8743ef525d`](https://github.com/nodejs/node/commit/8743ef525d)] - **deps**: update simdjson to 3.11.6 (Node.js GitHub Bot) [#56250](https://github.com/nodejs/node/pull/56250)
|
|
127
|
+
* \[[`0f553e5575`](https://github.com/nodejs/node/commit/0f553e5575)] - **deps**: update amaro to 0.3.1 (Node.js GitHub Bot) [#56785](https://github.com/nodejs/node/pull/56785)
|
|
128
|
+
* \[[`380a8d8d2f`](https://github.com/nodejs/node/commit/380a8d8d2f)] - **(SEMVER-MINOR)** **deps,tools**: add zstd 1.5.6 (Jan Krems) [#52100](https://github.com/nodejs/node/pull/52100)
|
|
129
|
+
* \[[`66898a7c3b`](https://github.com/nodejs/node/commit/66898a7c3b)] - **doc**: update history of stream.Readable.toWeb() (Jimmy Leung) [#56928](https://github.com/nodejs/node/pull/56928)
|
|
130
|
+
* \[[`9e29416e12`](https://github.com/nodejs/node/commit/9e29416e12)] - **doc**: make MDN links to global classes more consistent (Antoine du Hamel) [#56924](https://github.com/nodejs/node/pull/56924)
|
|
131
|
+
* \[[`6bc270728a`](https://github.com/nodejs/node/commit/6bc270728a)] - **doc**: make MDN links to global classes more consistent in `assert.md` (Antoine du Hamel) [#56920](https://github.com/nodejs/node/pull/56920)
|
|
132
|
+
* \[[`00da003171`](https://github.com/nodejs/node/commit/00da003171)] - **doc**: make MDN links to global classes more consistent (Antoine du Hamel) [#56923](https://github.com/nodejs/node/pull/56923)
|
|
133
|
+
* \[[`d90198793a`](https://github.com/nodejs/node/commit/d90198793a)] - **doc**: make MDN links to global classes more consistent in `util.md` (Antoine du Hamel) [#56922](https://github.com/nodejs/node/pull/56922)
|
|
134
|
+
* \[[`5f4377a759`](https://github.com/nodejs/node/commit/5f4377a759)] - **doc**: make MDN links to global classes more consistent in `buffer.md` (Antoine du Hamel) [#56921](https://github.com/nodejs/node/pull/56921)
|
|
135
|
+
* \[[`7353266b50`](https://github.com/nodejs/node/commit/7353266b50)] - **doc**: improve type stripping documentation (Marco Ippolito) [#56916](https://github.com/nodejs/node/pull/56916)
|
|
136
|
+
* \[[`888d2acc3a`](https://github.com/nodejs/node/commit/888d2acc3a)] - **doc**: specificy support for erasable ts syntax (Marco Ippolito) [#56916](https://github.com/nodejs/node/pull/56916)
|
|
137
|
+
* \[[`3c082d43bc`](https://github.com/nodejs/node/commit/3c082d43bc)] - **doc**: update post sec release process (Rafael Gonzaga) [#56907](https://github.com/nodejs/node/pull/56907)
|
|
138
|
+
* \[[`f0bf35d3c5`](https://github.com/nodejs/node/commit/f0bf35d3c5)] - **doc**: update websocket link to avoid linking to self (Chengzhong Wu) [#56897](https://github.com/nodejs/node/pull/56897)
|
|
139
|
+
* \[[`373dbb0e6c`](https://github.com/nodejs/node/commit/373dbb0e6c)] - **doc**: mark `--env-file-if-exists` flag as experimental (Juan José) [#56893](https://github.com/nodejs/node/pull/56893)
|
|
140
|
+
* \[[`d436888cc8`](https://github.com/nodejs/node/commit/d436888cc8)] - **doc**: fix typo in cjs example of `util.styleText` (Deokjin Kim) [#56769](https://github.com/nodejs/node/pull/56769)
|
|
141
|
+
* \[[`91638eeb4a`](https://github.com/nodejs/node/commit/91638eeb4a)] - **doc**: clarify sqlite user-defined function behaviour (René) [#56786](https://github.com/nodejs/node/pull/56786)
|
|
142
|
+
* \[[`bab9c4d331`](https://github.com/nodejs/node/commit/bab9c4d331)] - **events**: getMaxListeners detects 0 listeners (Matthew Aitken) [#56807](https://github.com/nodejs/node/pull/56807)
|
|
143
|
+
* \[[`ccaf7fe737`](https://github.com/nodejs/node/commit/ccaf7fe737)] - **fs**: make `FileHandle.readableWebStream` always create byte streams (Ian Kerins) [#55461](https://github.com/nodejs/node/pull/55461)
|
|
144
|
+
* \[[`974cec7a0a`](https://github.com/nodejs/node/commit/974cec7a0a)] - **http**: be more generational GC friendly (ywave620) [#56767](https://github.com/nodejs/node/pull/56767)
|
|
145
|
+
* \[[`be00058712`](https://github.com/nodejs/node/commit/be00058712)] - **inspector**: add Network.Initiator in inspector protocol (Chengzhong Wu) [#56805](https://github.com/nodejs/node/pull/56805)
|
|
146
|
+
* \[[`31293a4b09`](https://github.com/nodejs/node/commit/31293a4b09)] - **inspector**: fix GN build (Cheng) [#56798](https://github.com/nodejs/node/pull/56798)
|
|
147
|
+
* \[[`91a302356b`](https://github.com/nodejs/node/commit/91a302356b)] - **inspector**: fix StringUtil::CharacterCount for unicodes (Chengzhong Wu) [#56788](https://github.com/nodejs/node/pull/56788)
|
|
148
|
+
* \[[`3b305f25f2`](https://github.com/nodejs/node/commit/3b305f25f2)] - **lib**: filter node:quic from builtinModules when flag not used (James M Snell) [#56870](https://github.com/nodejs/node/pull/56870)
|
|
149
|
+
* \[[`f06ee4c54a`](https://github.com/nodejs/node/commit/f06ee4c54a)] - **meta**: bump `actions/upload-artifact` from 4.4.3 to 4.6.0 (dependabot\[bot]) [#56861](https://github.com/nodejs/node/pull/56861)
|
|
150
|
+
* \[[`d230bc3b3c`](https://github.com/nodejs/node/commit/d230bc3b3c)] - **meta**: bump `actions/setup-node` from 4.1.0 to 4.2.0 (dependabot\[bot]) [#56868](https://github.com/nodejs/node/pull/56868)
|
|
151
|
+
* \[[`d4ecfa745e`](https://github.com/nodejs/node/commit/d4ecfa745e)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#56889](https://github.com/nodejs/node/pull/56889)
|
|
152
|
+
* \[[`698c56bb94`](https://github.com/nodejs/node/commit/698c56bb94)] - **meta**: add @nodejs/url as codeowner (Chengzhong Wu) [#56783](https://github.com/nodejs/node/pull/56783)
|
|
153
|
+
* \[[`a274b28857`](https://github.com/nodejs/node/commit/a274b28857)] - **module**: fix require.resolve() crash on non-string paths (Aditi) [#56942](https://github.com/nodejs/node/pull/56942)
|
|
154
|
+
* \[[`4e3052aeee`](https://github.com/nodejs/node/commit/4e3052aeee)] - **quic**: fixup errant LocalVector usage (James M Snell) [#56564](https://github.com/nodejs/node/pull/56564)
|
|
155
|
+
* \[[`dfc61f7bb7`](https://github.com/nodejs/node/commit/dfc61f7bb7)] - **readline**: fix unresolved promise on abortion (Daniel Venable) [#54030](https://github.com/nodejs/node/pull/54030)
|
|
156
|
+
* \[[`9e60501f5e`](https://github.com/nodejs/node/commit/9e60501f5e)] - **sqlite**: fix coverity warnings related to backup() (Colin Ihrig) [#56961](https://github.com/nodejs/node/pull/56961)
|
|
157
|
+
* \[[`1913a4aabc`](https://github.com/nodejs/node/commit/1913a4aabc)] - **sqlite**: restore changes from #55373 (Colin Ihrig) [#56908](https://github.com/nodejs/node/pull/56908)
|
|
158
|
+
* \[[`8410c955b7`](https://github.com/nodejs/node/commit/8410c955b7)] - **sqlite**: fix use-after-free in StatementSync due to premature GC (Divy Srivastava) [#56840](https://github.com/nodejs/node/pull/56840)
|
|
159
|
+
* \[[`01d732d629`](https://github.com/nodejs/node/commit/01d732d629)] - **sqlite**: handle conflicting SQLite and JS errors (Colin Ihrig) [#56787](https://github.com/nodejs/node/pull/56787)
|
|
160
|
+
* \[[`39997867cf`](https://github.com/nodejs/node/commit/39997867cf)] - **(SEMVER-MINOR)** **sqlite**: allow returning `ArrayBufferView`s from user-defined functions (René) [#56790](https://github.com/nodejs/node/pull/56790)
|
|
161
|
+
* \[[`8dc637681a`](https://github.com/nodejs/node/commit/8dc637681a)] - **sqlite, test**: expose sqlite online backup api (Edy Silva) [#56253](https://github.com/nodejs/node/pull/56253)
|
|
162
|
+
* \[[`cfea53eccc`](https://github.com/nodejs/node/commit/cfea53eccc)] - **src**: use `args.This()` in zlib (Michaël Zasso) [#56988](https://github.com/nodejs/node/pull/56988)
|
|
163
|
+
* \[[`6b398d6d0b`](https://github.com/nodejs/node/commit/6b398d6d0b)] - **src**: replace `SplitString` with built-in (Yagiz Nizipli) [#54990](https://github.com/nodejs/node/pull/54990)
|
|
164
|
+
* \[[`fbb32e0a08`](https://github.com/nodejs/node/commit/fbb32e0a08)] - **src**: add nullptr handling for `NativeKeyObject` (Burkov Egor) [#56900](https://github.com/nodejs/node/pull/56900)
|
|
165
|
+
* \[[`83ff7be9fd`](https://github.com/nodejs/node/commit/83ff7be9fd)] - **src**: disallow copy/move fns/constructors (Yagiz Nizipli) [#56811](https://github.com/nodejs/node/pull/56811)
|
|
166
|
+
* \[[`63611d0331`](https://github.com/nodejs/node/commit/63611d0331)] - **src**: add a hard dependency v8\_inspector\_headers (Chengzhong Wu) [#56805](https://github.com/nodejs/node/pull/56805)
|
|
167
|
+
* \[[`3d957d135c`](https://github.com/nodejs/node/commit/3d957d135c)] - **src**: improve error handling in encoding\_binding.cc (James M Snell) [#56915](https://github.com/nodejs/node/pull/56915)
|
|
168
|
+
* \[[`9e9ac3ccd8`](https://github.com/nodejs/node/commit/9e9ac3ccd8)] - **src**: avoid copy by using std::views::keys (Yagiz Nizipli) [#56080](https://github.com/nodejs/node/pull/56080)
|
|
169
|
+
* \[[`086cdc297a`](https://github.com/nodejs/node/commit/086cdc297a)] - **src**: remove obsolete NoArrayBufferZeroFillScope (James M Snell) [#56913](https://github.com/nodejs/node/pull/56913)
|
|
170
|
+
* \[[`915d7aeb37`](https://github.com/nodejs/node/commit/915d7aeb37)] - **src**: set signal inspector io thread name (RafaelGSS) [#56416](https://github.com/nodejs/node/pull/56416)
|
|
171
|
+
* \[[`f4b086d29d`](https://github.com/nodejs/node/commit/f4b086d29d)] - **src**: set thread name for main thread and v8 worker (RafaelGSS) [#56416](https://github.com/nodejs/node/pull/56416)
|
|
172
|
+
* \[[`3579143630`](https://github.com/nodejs/node/commit/3579143630)] - **src**: set worker thread name using worker.name (RafaelGSS) [#56416](https://github.com/nodejs/node/pull/56416)
|
|
173
|
+
* \[[`736ff5de6d`](https://github.com/nodejs/node/commit/736ff5de6d)] - **src**: use a default thread name for inspector (RafaelGSS) [#56416](https://github.com/nodejs/node/pull/56416)
|
|
174
|
+
* \[[`be8e2b4d8f`](https://github.com/nodejs/node/commit/be8e2b4d8f)] - **src**: improve error handling in permission.cc (James M Snell) [#56904](https://github.com/nodejs/node/pull/56904)
|
|
175
|
+
* \[[`d6cf0911ee`](https://github.com/nodejs/node/commit/d6cf0911ee)] - **src**: improve error handling in node\_sqlite (James M Snell) [#56891](https://github.com/nodejs/node/pull/56891)
|
|
176
|
+
* \[[`521fed1bac`](https://github.com/nodejs/node/commit/521fed1bac)] - **src**: improve error handling in node\_os by removing ToLocalChecked (James M Snell) [#56888](https://github.com/nodejs/node/pull/56888)
|
|
177
|
+
* \[[`c9a99df8e7`](https://github.com/nodejs/node/commit/c9a99df8e7)] - **src**: improve error handling in node\_url (James M Snell) [#56886](https://github.com/nodejs/node/pull/56886)
|
|
178
|
+
* \[[`5c82ef3ace`](https://github.com/nodejs/node/commit/5c82ef3ace)] - **src**: add memory retainer traits for external types (Chengzhong Wu) [#56881](https://github.com/nodejs/node/pull/56881)
|
|
179
|
+
* \[[`edb194b2d5`](https://github.com/nodejs/node/commit/edb194b2d5)] - **src**: prevent URLPattern property accessors from crashing on invalid this (James M Snell) [#56877](https://github.com/nodejs/node/pull/56877)
|
|
180
|
+
* \[[`9624049414`](https://github.com/nodejs/node/commit/9624049414)] - **src**: pull in more electron boringssl adjustments (James M Snell) [#56858](https://github.com/nodejs/node/pull/56858)
|
|
181
|
+
* \[[`f8910e384d`](https://github.com/nodejs/node/commit/f8910e384d)] - **src**: make multiple improvements to node\_url\_pattern (James M Snell) [#56871](https://github.com/nodejs/node/pull/56871)
|
|
182
|
+
* \[[`94a0237b18`](https://github.com/nodejs/node/commit/94a0237b18)] - **src**: clean up some obsolete crypto methods (James M Snell) [#56792](https://github.com/nodejs/node/pull/56792)
|
|
183
|
+
* \[[`b240ca67b9`](https://github.com/nodejs/node/commit/b240ca67b9)] - **src**: add check for Bignum in GroupOrderSize (Burkov Egor) [#56702](https://github.com/nodejs/node/pull/56702)
|
|
184
|
+
* \[[`45692e9c7c`](https://github.com/nodejs/node/commit/45692e9c7c)] - **src, deps**: port electron's boringssl workarounds (James M Snell) [#56812](https://github.com/nodejs/node/pull/56812)
|
|
185
|
+
* \[[`a9d80d43cb`](https://github.com/nodejs/node/commit/a9d80d43cb)] - **(SEMVER-MINOR)** **src, quic**: refine more of the quic implementation (James M Snell) [#56328](https://github.com/nodejs/node/pull/56328)
|
|
186
|
+
* \[[`93d0beb6c8`](https://github.com/nodejs/node/commit/93d0beb6c8)] - **src,test**: expand test coverage for urlpattern and fix error (James M Snell) [#56878](https://github.com/nodejs/node/pull/56878)
|
|
187
|
+
* \[[`5a9732e1d0`](https://github.com/nodejs/node/commit/5a9732e1d0)] - **test**: improve timeout duration for debugger events (Yagiz Nizipli) [#56970](https://github.com/nodejs/node/pull/56970)
|
|
188
|
+
* \[[`60c8fc07ff`](https://github.com/nodejs/node/commit/60c8fc07ff)] - **test**: remove unnecessary syscall to cpuinfo (Yagiz Nizipli) [#56968](https://github.com/nodejs/node/pull/56968)
|
|
189
|
+
* \[[`40cdf756e6`](https://github.com/nodejs/node/commit/40cdf756e6)] - **test**: update webstorage wpt (Yagiz Nizipli) [#56963](https://github.com/nodejs/node/pull/56963)
|
|
190
|
+
* \[[`de77371a9e`](https://github.com/nodejs/node/commit/de77371a9e)] - **test**: execute shell directly for refresh() (Yagiz Nizipli) [#55051](https://github.com/nodejs/node/pull/55051)
|
|
191
|
+
* \[[`f4254b8e70`](https://github.com/nodejs/node/commit/f4254b8e70)] - **test**: automatically sync wpt urlpattern tests (Jonas) [#56949](https://github.com/nodejs/node/pull/56949)
|
|
192
|
+
* \[[`a473d3f57a`](https://github.com/nodejs/node/commit/a473d3f57a)] - **test**: update snapshots for amaro v0.3.2 (Marco Ippolito) [#56916](https://github.com/nodejs/node/pull/56916)
|
|
193
|
+
* \[[`abca97f7e2`](https://github.com/nodejs/node/commit/abca97f7e2)] - **test**: change jenkins reporter (Carlos Espa) [#56808](https://github.com/nodejs/node/pull/56808)
|
|
194
|
+
* \[[`7c9fa11127`](https://github.com/nodejs/node/commit/7c9fa11127)] - **test**: fix race condition in test-child-process-bad-stdio (Colin Ihrig) [#56845](https://github.com/nodejs/node/pull/56845)
|
|
195
|
+
* \[[`b8b6e68836`](https://github.com/nodejs/node/commit/b8b6e68836)] - **(SEMVER-MINOR)** **test**: add WPT for URLPattern (Yagiz Nizipli) [#56452](https://github.com/nodejs/node/pull/56452)
|
|
196
|
+
* \[[`b6d3d52e20`](https://github.com/nodejs/node/commit/b6d3d52e20)] - **test**: adjust check to use OpenSSL sec level (Michael Dawson) [#56819](https://github.com/nodejs/node/pull/56819)
|
|
197
|
+
* \[[`3beac87f92`](https://github.com/nodejs/node/commit/3beac87f92)] - **test**: test-crypto-scrypt.js doesn't need internals (Meghan Denny) [#56673](https://github.com/nodejs/node/pull/56673)
|
|
198
|
+
* \[[`3af23a10f3`](https://github.com/nodejs/node/commit/3af23a10f3)] - **test**: set `test-fs-cp` as flaky (Stefan Stojanovic) [#56799](https://github.com/nodejs/node/pull/56799)
|
|
199
|
+
* \[[`1146f48f67`](https://github.com/nodejs/node/commit/1146f48f67)] - **test**: search cctest files (Chengzhong Wu) [#56791](https://github.com/nodejs/node/pull/56791)
|
|
200
|
+
* \[[`86c199b25a`](https://github.com/nodejs/node/commit/86c199b25a)] - **test**: convert test\_encoding\_binding.cc to a JS test (Chengzhong Wu) [#56791](https://github.com/nodejs/node/pull/56791)
|
|
201
|
+
* \[[`bd5484717c`](https://github.com/nodejs/node/commit/bd5484717c)] - **test**: test-crypto-prime.js doesn't need internals (Meghan Denny) [#56675](https://github.com/nodejs/node/pull/56675)
|
|
202
|
+
* \[[`f5f54414e4`](https://github.com/nodejs/node/commit/f5f54414e4)] - **test**: temporary remove resource check from fs read-write (Rafael Gonzaga) [#56789](https://github.com/nodejs/node/pull/56789)
|
|
203
|
+
* \[[`c8bd2ba0ad`](https://github.com/nodejs/node/commit/c8bd2ba0ad)] - **test**: mark test-without-async-context-frame flaky on windows (James M Snell) [#56753](https://github.com/nodejs/node/pull/56753)
|
|
204
|
+
* \[[`2c2e4a4ae0`](https://github.com/nodejs/node/commit/2c2e4a4ae0)] - **test**: remove unnecessary code (Luigi Pinca) [#56784](https://github.com/nodejs/node/pull/56784)
|
|
205
|
+
* \[[`4606a5f79b`](https://github.com/nodejs/node/commit/4606a5f79b)] - **test**: mark `test-esm-loader-hooks-inspect-wait` flaky (Richard Lau) [#56803](https://github.com/nodejs/node/pull/56803)
|
|
206
|
+
* \[[`38c77e3462`](https://github.com/nodejs/node/commit/38c77e3462)] - **test**: update WPT for url to a23788b77a (Node.js GitHub Bot) [#56779](https://github.com/nodejs/node/pull/56779)
|
|
207
|
+
* \[[`50ebd5fd31`](https://github.com/nodejs/node/commit/50ebd5fd31)] - **test**: remove duplicate error reporter from ci (Carlos Espa) [#56739](https://github.com/nodejs/node/pull/56739)
|
|
208
|
+
* \[[`0c3ae25aec`](https://github.com/nodejs/node/commit/0c3ae25aec)] - **test\_runner**: print formatted errors on summary (Pietro Marchini) [#56911](https://github.com/nodejs/node/pull/56911)
|
|
209
|
+
* \[[`b5a8a812fb`](https://github.com/nodejs/node/commit/b5a8a812fb)] - **tools**: bump eslint version (dependabot\[bot]) [#56869](https://github.com/nodejs/node/pull/56869)
|
|
210
|
+
* \[[`e1f86c1b9d`](https://github.com/nodejs/node/commit/e1f86c1b9d)] - **tools**: remove test-asan/ubsan workflows (Michaël Zasso) [#56823](https://github.com/nodejs/node/pull/56823)
|
|
211
|
+
* \[[`405a6678b7`](https://github.com/nodejs/node/commit/405a6678b7)] - **tools**: run macOS test workflow with Xcode 16.1 (Michaël Zasso) [#56831](https://github.com/nodejs/node/pull/56831)
|
|
212
|
+
* \[[`16529c130f`](https://github.com/nodejs/node/commit/16529c130f)] - **tools**: update sccache and sccache-action (Michaël Zasso) [#56815](https://github.com/nodejs/node/pull/56815)
|
|
213
|
+
* \[[`fe004111ea`](https://github.com/nodejs/node/commit/fe004111ea)] - **tools**: fix license-builder for inspector\_protocol (Michaël Zasso) [#56814](https://github.com/nodejs/node/pull/56814)
|
|
214
|
+
* \[[`bc97a90176`](https://github.com/nodejs/node/commit/bc97a90176)] - **(SEMVER-MINOR)** **url**: add URLPattern implementation (Yagiz Nizipli) [#56452](https://github.com/nodejs/node/pull/56452)
|
|
215
|
+
* \[[`77294d8918`](https://github.com/nodejs/node/commit/77294d8918)] - **util**: enforce shouldColorize in styleText array arg (Marco Ippolito) [#56722](https://github.com/nodejs/node/pull/56722)
|
|
216
|
+
* \[[`8e6c191601`](https://github.com/nodejs/node/commit/8e6c191601)] - **zlib**: use modern class syntax for zstd classes (Yagiz Nizipli) [#56965](https://github.com/nodejs/node/pull/56965)
|
|
217
|
+
* \[[`a3ca7f37a2`](https://github.com/nodejs/node/commit/a3ca7f37a2)] - **zlib**: make all zstd functions experimental (Yagiz Nizipli) [#56964](https://github.com/nodejs/node/pull/56964)
|
|
218
|
+
* \[[`4cc7907738`](https://github.com/nodejs/node/commit/4cc7907738)] - **(SEMVER-MINOR)** **zlib**: add zstd support (Jan Krems) [#52100](https://github.com/nodejs/node/pull/52100)
|
|
219
|
+
|
|
49
220
|
<a id="23.7.0"></a>
|
|
50
221
|
|
|
51
222
|
## 2025-01-30, Version 23.7.0 (Current), @aduh95
|
package/LICENSE
CHANGED
|
@@ -2384,6 +2384,40 @@ The externally maintained libraries used by Node.js are:
|
|
|
2384
2384
|
THE SOFTWARE.
|
|
2385
2385
|
"""
|
|
2386
2386
|
|
|
2387
|
+
- zstd, located at deps/zstd, is licensed as follows:
|
|
2388
|
+
"""
|
|
2389
|
+
BSD License
|
|
2390
|
+
|
|
2391
|
+
For Zstandard software
|
|
2392
|
+
|
|
2393
|
+
Copyright (c) Meta Platforms, Inc. and affiliates. All rights reserved.
|
|
2394
|
+
|
|
2395
|
+
Redistribution and use in source and binary forms, with or without modification,
|
|
2396
|
+
are permitted provided that the following conditions are met:
|
|
2397
|
+
|
|
2398
|
+
* Redistributions of source code must retain the above copyright notice, this
|
|
2399
|
+
list of conditions and the following disclaimer.
|
|
2400
|
+
|
|
2401
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
|
2402
|
+
this list of conditions and the following disclaimer in the documentation
|
|
2403
|
+
and/or other materials provided with the distribution.
|
|
2404
|
+
|
|
2405
|
+
* Neither the name Facebook, nor Meta, nor the names of its contributors may
|
|
2406
|
+
be used to endorse or promote products derived from this software without
|
|
2407
|
+
specific prior written permission.
|
|
2408
|
+
|
|
2409
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
2410
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
2411
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
2412
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
|
2413
|
+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
2414
|
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
2415
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
2416
|
+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
2417
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
2418
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2419
|
+
"""
|
|
2420
|
+
|
|
2387
2421
|
- HdrHistogram, located at deps/histogram, is licensed as follows:
|
|
2388
2422
|
"""
|
|
2389
2423
|
The code in this repository code was Written by Gil Tene, Michael Barker,
|
package/README.md
CHANGED
|
@@ -367,8 +367,6 @@ For information about the governance of the Node.js project, see
|
|
|
367
367
|
**Minwoo Jung** <<nodecorelab@gmail.com>> (he/him)
|
|
368
368
|
* [KhafraDev](https://github.com/KhafraDev) -
|
|
369
369
|
**Matthew Aitken** <<maitken033380023@gmail.com>> (he/him)
|
|
370
|
-
* [kvakil](https://github.com/kvakil) -
|
|
371
|
-
**Keyhan Vakil** <<kvakil@sylph.kvakil.me>>
|
|
372
370
|
* [legendecas](https://github.com/legendecas) -
|
|
373
371
|
**Chengzhong Wu** <<legendecas@gmail.com>> (he/him)
|
|
374
372
|
* [lemire](https://github.com/lemire) -
|
|
@@ -579,6 +577,8 @@ For information about the governance of the Node.js project, see
|
|
|
579
577
|
**Kunal Pathak** <<kunal.pathak@microsoft.com>>
|
|
580
578
|
* [kuriyosh](https://github.com/kuriyosh) -
|
|
581
579
|
**Yoshiki Kurihara** <<yosyos0306@gmail.com>> (he/him)
|
|
580
|
+
* [kvakil](https://github.com/kvakil) -
|
|
581
|
+
**Keyhan Vakil** <<kvakil@sylph.kvakil.me>>
|
|
582
582
|
* [lance](https://github.com/lance) -
|
|
583
583
|
**Lance Ball** <<lball@redhat.com>> (he/him)
|
|
584
584
|
* [Leko](https://github.com/Leko) -
|
|
@@ -749,8 +749,6 @@ maintaining the Node.js project.
|
|
|
749
749
|
**Frank Qiu** <<iam.frankqiu@gmail.com>> (he/him)
|
|
750
750
|
* [KevinEady](https://github.com/KevinEady) -
|
|
751
751
|
**Kevin Eady** <<kevin.c.eady@gmail.com>> (he/him)
|
|
752
|
-
* [kvakil](https://github.com/kvakil) -
|
|
753
|
-
**Keyhan Vakil** <<kvakil@sylph.kvakil.me>>
|
|
754
752
|
* [marsonya](https://github.com/marsonya) -
|
|
755
753
|
**Akhil Marsonya** <<akhil.marsonya27@gmail.com>> (he/him)
|
|
756
754
|
* [meixg](https://github.com/meixg) -
|
package/bin/node
CHANGED
|
Binary file
|
package/include/node/common.gypi
CHANGED
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
|
|
28
28
|
'clang%': 0,
|
|
29
29
|
'error_on_warn%': 'false',
|
|
30
|
+
'suppress_all_error_on_warn%': 'false',
|
|
30
31
|
|
|
31
32
|
'openssl_product': '<(STATIC_LIB_PREFIX)openssl<(STATIC_LIB_SUFFIX)',
|
|
32
33
|
'openssl_no_asm%': 0,
|
|
@@ -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.
|
|
40
|
+
'v8_embedder_string': '-node.13',
|
|
40
41
|
|
|
41
42
|
##### V8 defaults for Node.js #####
|
|
42
43
|
|
package/include/node/config.gypi
CHANGED
|
@@ -34,6 +34,36 @@
|
|
|
34
34
|
'deps/undici/undici.js',
|
|
35
35
|
'deps/amaro/dist/index.js'],
|
|
36
36
|
'node_byteorder': 'little',
|
|
37
|
+
'node_cctest_sources': [ 'src/node_snapshot_stub.cc',
|
|
38
|
+
'test/cctest/inspector/test_node_protocol.cc',
|
|
39
|
+
'test/cctest/node_test_fixture.cc',
|
|
40
|
+
'test/cctest/test_aliased_buffer.cc',
|
|
41
|
+
'test/cctest/test_base64.cc',
|
|
42
|
+
'test/cctest/test_base_object_ptr.cc',
|
|
43
|
+
'test/cctest/test_cppgc.cc',
|
|
44
|
+
'test/cctest/test_crypto_clienthello.cc',
|
|
45
|
+
'test/cctest/test_dataqueue.cc',
|
|
46
|
+
'test/cctest/test_environment.cc',
|
|
47
|
+
'test/cctest/test_inspector_socket.cc',
|
|
48
|
+
'test/cctest/test_inspector_socket_server.cc',
|
|
49
|
+
'test/cctest/test_json_utils.cc',
|
|
50
|
+
'test/cctest/test_linked_binding.cc',
|
|
51
|
+
'test/cctest/test_node_api.cc',
|
|
52
|
+
'test/cctest/test_node_crypto.cc',
|
|
53
|
+
'test/cctest/test_node_crypto_env.cc',
|
|
54
|
+
'test/cctest/test_node_postmortem_metadata.cc',
|
|
55
|
+
'test/cctest/test_node_task_runner.cc',
|
|
56
|
+
'test/cctest/test_path.cc',
|
|
57
|
+
'test/cctest/test_per_process.cc',
|
|
58
|
+
'test/cctest/test_platform.cc',
|
|
59
|
+
'test/cctest/test_quic_cid.cc',
|
|
60
|
+
'test/cctest/test_quic_error.cc',
|
|
61
|
+
'test/cctest/test_quic_tokens.cc',
|
|
62
|
+
'test/cctest/test_report.cc',
|
|
63
|
+
'test/cctest/test_sockaddr.cc',
|
|
64
|
+
'test/cctest/test_traced_value.cc',
|
|
65
|
+
'test/cctest/test_util.cc',
|
|
66
|
+
'test/cctest/node_test_fixture.h'],
|
|
37
67
|
'node_debug_lib': 'false',
|
|
38
68
|
'node_enable_d8': 'false',
|
|
39
69
|
'node_enable_v8_vtunejit': 'false',
|
|
@@ -347,6 +377,7 @@
|
|
|
347
377
|
'lib/process.js',
|
|
348
378
|
'lib/punycode.js',
|
|
349
379
|
'lib/querystring.js',
|
|
380
|
+
'lib/quic.js',
|
|
350
381
|
'lib/readline.js',
|
|
351
382
|
'lib/readline/promises.js',
|
|
352
383
|
'lib/repl.js',
|
|
@@ -393,6 +424,7 @@
|
|
|
393
424
|
'node_shared_sqlite': 'false',
|
|
394
425
|
'node_shared_uvwasi': 'false',
|
|
395
426
|
'node_shared_zlib': 'false',
|
|
427
|
+
'node_shared_zstd': 'false',
|
|
396
428
|
'node_tag': '',
|
|
397
429
|
'node_target_type': 'executable',
|
|
398
430
|
'node_use_amaro': 'true',
|
|
@@ -409,8 +441,10 @@
|
|
|
409
441
|
'ossfuzz': 'false',
|
|
410
442
|
'shlib_suffix': 'so.131',
|
|
411
443
|
'single_executable_application': 'true',
|
|
444
|
+
'suppress_all_error_on_warn': 'false',
|
|
412
445
|
'target_arch': 'arm64',
|
|
413
446
|
'ubsan': 0,
|
|
447
|
+
'use_ccache_win': 0,
|
|
414
448
|
'use_prefix_to_find_headers': 'false',
|
|
415
449
|
'v8_enable_31bit_smis_on_64bit_arch': 0,
|
|
416
450
|
'v8_enable_extensible_ro_snapshot': 0,
|
package/package.json
CHANGED
package/share/man/man1/node.1
CHANGED
|
@@ -217,6 +217,9 @@ flag is no longer required as WASI is enabled by default.
|
|
|
217
217
|
.It Fl -experimental-wasm-modules
|
|
218
218
|
Enable experimental WebAssembly module support.
|
|
219
219
|
.
|
|
220
|
+
.It Fl -experimental-quic
|
|
221
|
+
Enable the experimental QUIC support.
|
|
222
|
+
.
|
|
220
223
|
.It Fl -force-context-aware
|
|
221
224
|
Disable loading native addons that are not context-aware.
|
|
222
225
|
.
|