node-linux-arm64 19.0.1 → 19.1.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 +257 -1
- package/LICENSE +1 -6
- package/README.md +21 -6
- package/bin/node +0 -0
- package/include/node/common.gypi +1 -1
- package/include/node/config.gypi +6 -2
- package/include/node/js_native_api.h +2 -0
- package/include/node/js_native_api_types.h +2 -1
- package/include/node/node.h +19 -2
- package/include/node/node_api.h +2 -0
- package/include/node/node_version.h +2 -2
- package/include/node/uv/version.h +2 -2
- package/include/node/uv/win.h +14 -15
- package/include/node/uv.h +3 -2
- package/include/node/v8-version.h +1 -1
- package/include/node/v8config.h +2 -0
- package/package.json +1 -1
- package/share/man/man1/node.1 +1 -0
- package/include/node/uv/android-ifaddrs.h +0 -54
package/CHANGELOG.md
CHANGED
|
@@ -8,7 +8,8 @@
|
|
|
8
8
|
</tr>
|
|
9
9
|
<tr>
|
|
10
10
|
<td>
|
|
11
|
-
<b><a href="#19.0
|
|
11
|
+
<b><a href="#19.1.0">19.1.0</a></b><br/>
|
|
12
|
+
<a href="#19.0.1">19.0.1</a><br/>
|
|
12
13
|
<a href="#19.0.0">19.0.0</a><br/>
|
|
13
14
|
</td>
|
|
14
15
|
</tr>
|
|
@@ -35,6 +36,261 @@
|
|
|
35
36
|
* [io.js](CHANGELOG_IOJS.md)
|
|
36
37
|
* [Archive](CHANGELOG_ARCHIVE.md)
|
|
37
38
|
|
|
39
|
+
<a id="19.1.0"></a>
|
|
40
|
+
|
|
41
|
+
## 2022-11-14, Version 19.1.0 (Current), @RafaelGSS
|
|
42
|
+
|
|
43
|
+
### Notable changes
|
|
44
|
+
|
|
45
|
+
#### Support function mocking on Node.js test runner
|
|
46
|
+
|
|
47
|
+
The `node:test` module supports mocking during testing via a top-level `mock`
|
|
48
|
+
object.
|
|
49
|
+
|
|
50
|
+
```js
|
|
51
|
+
test('spies on an object method', (t) => {
|
|
52
|
+
const number = {
|
|
53
|
+
value: 5,
|
|
54
|
+
add(a) {
|
|
55
|
+
return this.value + a;
|
|
56
|
+
},
|
|
57
|
+
};
|
|
58
|
+
t.mock.method(number, 'add');
|
|
59
|
+
|
|
60
|
+
assert.strictEqual(number.add(3), 8);
|
|
61
|
+
assert.strictEqual(number.add.mock.calls.length, 1);
|
|
62
|
+
});
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
Contributed by Colin Ihrig in [#45326](https://github.com/nodejs/node/pull/45326)
|
|
66
|
+
|
|
67
|
+
#### fs.watch recursive support on Linux
|
|
68
|
+
|
|
69
|
+
`fs.watch` supports recursive watch using the `recursive: true` option.
|
|
70
|
+
|
|
71
|
+
```js
|
|
72
|
+
const watcher = fs.watch(testDirectory, { recursive: true });
|
|
73
|
+
watcher.on('change', function(event, filename) {
|
|
74
|
+
});
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
Contributed by Yagiz Nizipli in [#45098](https://github.com/nodejs/node/pull/45098)
|
|
78
|
+
|
|
79
|
+
#### Other notable changes
|
|
80
|
+
|
|
81
|
+
* **deps**
|
|
82
|
+
* update ICU to 72.1 (Michaël Zasso) [#45068](https://github.com/nodejs/node/pull/45068)
|
|
83
|
+
* **doc**
|
|
84
|
+
* add lukekarrys to collaborators (Luke Karrys) [#45180](https://github.com/nodejs/node/pull/45180)
|
|
85
|
+
* add anonrig to collaborators (Yagiz Nizipli) [#45002](https://github.com/nodejs/node/pull/45002)
|
|
86
|
+
* **lib**
|
|
87
|
+
* drop fetch experimental warning (Matteo Collina) [#45287](https://github.com/nodejs/node/pull/45287)
|
|
88
|
+
* **util**
|
|
89
|
+
* (SEMVER-MINOR) add MIME utilities (Bradley Farias) [#21128](https://github.com/nodejs/node/pull/21128)
|
|
90
|
+
* improve textdecoder decode performance (Yagiz Nizipli) [#45294](https://github.com/nodejs/node/pull/45294)
|
|
91
|
+
|
|
92
|
+
### Commits
|
|
93
|
+
|
|
94
|
+
* \[[`c9cf399ec7`](https://github.com/nodejs/node/commit/c9cf399ec7)] - **benchmark**: add parameters to text-decoder benchmark (Yagiz Nizipli) [#45363](https://github.com/nodejs/node/pull/45363)
|
|
95
|
+
* \[[`79f6bb061d`](https://github.com/nodejs/node/commit/79f6bb061d)] - **benchmark**: fix text-decoder benchmark (Yagiz Nizipli) [#45363](https://github.com/nodejs/node/pull/45363)
|
|
96
|
+
* \[[`a27c994ced`](https://github.com/nodejs/node/commit/a27c994ced)] - **benchmark**: add blob benchmark (Yagiz Nizipli) [#44990](https://github.com/nodejs/node/pull/44990)
|
|
97
|
+
* \[[`c45b6aee78`](https://github.com/nodejs/node/commit/c45b6aee78)] - **bootstrap**: merge main thread and worker thread initializations (Joyee Cheung) [#44869](https://github.com/nodejs/node/pull/44869)
|
|
98
|
+
* \[[`33691208df`](https://github.com/nodejs/node/commit/33691208df)] - **buffer**: fix validation of options in `Blob` constructor (Antoine du Hamel) [#45156](https://github.com/nodejs/node/pull/45156)
|
|
99
|
+
* \[[`7b938df296`](https://github.com/nodejs/node/commit/7b938df296)] - **build**: support Python 3.11 (Luigi Pinca) [#45191](https://github.com/nodejs/node/pull/45191)
|
|
100
|
+
* \[[`75e0a2d109`](https://github.com/nodejs/node/commit/75e0a2d109)] - **build**: workaround for node-core-utils (Jiawen Geng) [#45199](https://github.com/nodejs/node/pull/45199)
|
|
101
|
+
* \[[`f598edbdf4`](https://github.com/nodejs/node/commit/f598edbdf4)] - **build**: fix icu-small build with ICU 72.1 (Steven R. Loomis) [#45195](https://github.com/nodejs/node/pull/45195)
|
|
102
|
+
* \[[`29b9f4f90c`](https://github.com/nodejs/node/commit/29b9f4f90c)] - **build**: remove unused language files (Ben Noordhuis) [#45138](https://github.com/nodejs/node/pull/45138)
|
|
103
|
+
* \[[`3a1ee940d1`](https://github.com/nodejs/node/commit/3a1ee940d1)] - **build**: add GitHub token to auto-start-ci workflow (Richard Lau) [#45185](https://github.com/nodejs/node/pull/45185)
|
|
104
|
+
* \[[`17349a2f42`](https://github.com/nodejs/node/commit/17349a2f42)] - **build**: restore Windows resource file (Richard Lau) [#45042](https://github.com/nodejs/node/pull/45042)
|
|
105
|
+
* \[[`24e24bd063`](https://github.com/nodejs/node/commit/24e24bd063)] - **build**: add version info to timezone update PR (Darshan Sen) [#45021](https://github.com/nodejs/node/pull/45021)
|
|
106
|
+
* \[[`8d7aa53e6b`](https://github.com/nodejs/node/commit/8d7aa53e6b)] - **build,win**: pass --debug-nghttp2 to configure (Santiago Gimeno) [#45209](https://github.com/nodejs/node/pull/45209)
|
|
107
|
+
* \[[`b2e60480f3`](https://github.com/nodejs/node/commit/b2e60480f3)] - **child\_process**: validate arguments for null bytes (Darshan Sen) [#44782](https://github.com/nodejs/node/pull/44782)
|
|
108
|
+
* \[[`1f0edde412`](https://github.com/nodejs/node/commit/1f0edde412)] - **crypto**: handle more webcrypto errors with OperationError (Filip Skokan) [#45320](https://github.com/nodejs/node/pull/45320)
|
|
109
|
+
* \[[`13fb05e12b`](https://github.com/nodejs/node/commit/13fb05e12b)] - **crypto**: handle unsupported AES ciphers in webcrypto (Filip Skokan) [#45321](https://github.com/nodejs/node/pull/45321)
|
|
110
|
+
* \[[`c168cbfbb3`](https://github.com/nodejs/node/commit/c168cbfbb3)] - **deps**: V8: cherry-pick 56816d76c121 (Shi Pujin) [#45353](https://github.com/nodejs/node/pull/45353)
|
|
111
|
+
* \[[`1432474abf`](https://github.com/nodejs/node/commit/1432474abf)] - **deps**: upgrade npm to 8.19.3 (npm team) [#45322](https://github.com/nodejs/node/pull/45322)
|
|
112
|
+
* \[[`f35d56200d`](https://github.com/nodejs/node/commit/f35d56200d)] - **deps**: update corepack to 0.15.1 (Node.js GitHub Bot) [#45331](https://github.com/nodejs/node/pull/45331)
|
|
113
|
+
* \[[`44de2321aa`](https://github.com/nodejs/node/commit/44de2321aa)] - **deps**: patch V8 to 10.7.193.20 (Michaël Zasso) [#45228](https://github.com/nodejs/node/pull/45228)
|
|
114
|
+
* \[[`bfe3819f08`](https://github.com/nodejs/node/commit/bfe3819f08)] - **deps**: upgrade to libuv 1.44.2 (Luigi Pinca) [#42340](https://github.com/nodejs/node/pull/42340)
|
|
115
|
+
* \[[`0d41df96b3`](https://github.com/nodejs/node/commit/0d41df96b3)] - **deps**: update corepack to 0.15.0 (Node.js GitHub Bot) [#45235](https://github.com/nodejs/node/pull/45235)
|
|
116
|
+
* \[[`0d241638ca`](https://github.com/nodejs/node/commit/0d241638ca)] - **deps**: update undici to 5.12.0 (Node.js GitHub Bot) [#45236](https://github.com/nodejs/node/pull/45236)
|
|
117
|
+
* \[[`f58996188a`](https://github.com/nodejs/node/commit/f58996188a)] - _**Revert**_ "**deps**: make V8 compilable with older glibc" (Michaël Zasso) [#45162](https://github.com/nodejs/node/pull/45162)
|
|
118
|
+
* \[[`8cda730e58`](https://github.com/nodejs/node/commit/8cda730e58)] - **deps**: update ICU to 72.1 (Michaël Zasso) [#45068](https://github.com/nodejs/node/pull/45068)
|
|
119
|
+
* \[[`0a6ed6f710`](https://github.com/nodejs/node/commit/0a6ed6f710)] - _**Revert**_ "**deps**: V8: forward declaration of `Rtl*FunctionTable`" (Michaël Zasso) [#45119](https://github.com/nodejs/node/pull/45119)
|
|
120
|
+
* \[[`2f7518ada2`](https://github.com/nodejs/node/commit/2f7518ada2)] - **deps**: update timezone (Node.js GitHub Bot) [#44950](https://github.com/nodejs/node/pull/44950)
|
|
121
|
+
* \[[`3bfba6df79`](https://github.com/nodejs/node/commit/3bfba6df79)] - **deps**: patch V8 to 10.7.193.16 (Michaël Zasso) [#45023](https://github.com/nodejs/node/pull/45023)
|
|
122
|
+
* \[[`b5baaa61b3`](https://github.com/nodejs/node/commit/b5baaa61b3)] - **dns**: fix port validation (Antoine du Hamel) [#45135](https://github.com/nodejs/node/pull/45135)
|
|
123
|
+
* \[[`0e9bad97cc`](https://github.com/nodejs/node/commit/0e9bad97cc)] - **doc**: allow for holidays in triage response (Michael Dawson) [#45267](https://github.com/nodejs/node/pull/45267)
|
|
124
|
+
* \[[`d4aabb9d3d`](https://github.com/nodejs/node/commit/d4aabb9d3d)] - **doc**: include last security release date (Juan José Arboleda) [#45368](https://github.com/nodejs/node/pull/45368)
|
|
125
|
+
* \[[`ba45373164`](https://github.com/nodejs/node/commit/ba45373164)] - **doc**: fix email for Ashley (Michael Dawson) [#45364](https://github.com/nodejs/node/pull/45364)
|
|
126
|
+
* \[[`d5e5c75b13`](https://github.com/nodejs/node/commit/d5e5c75b13)] - **doc**: fix test runner's only tests section header (Colin Ihrig) [#45343](https://github.com/nodejs/node/pull/45343)
|
|
127
|
+
* \[[`a7c5f31c47`](https://github.com/nodejs/node/commit/a7c5f31c47)] - **doc**: run license-builder (github-actions\[bot]) [#45349](https://github.com/nodejs/node/pull/45349)
|
|
128
|
+
* \[[`3de125743e`](https://github.com/nodejs/node/commit/3de125743e)] - **doc**: add more info for timer.setInterval (theanarkh) [#45232](https://github.com/nodejs/node/pull/45232)
|
|
129
|
+
* \[[`5a1252d9b4`](https://github.com/nodejs/node/commit/5a1252d9b4)] - **doc**: use module names in stability overview table (Filip Skokan) [#45312](https://github.com/nodejs/node/pull/45312)
|
|
130
|
+
* \[[`4d38bf2c5f`](https://github.com/nodejs/node/commit/4d38bf2c5f)] - **doc**: add `node:` prefix for examples (Daeyeon Jeong) [#45328](https://github.com/nodejs/node/pull/45328)
|
|
131
|
+
* \[[`b4b6b95f48`](https://github.com/nodejs/node/commit/b4b6b95f48)] - **doc**: update name of Node.js core Slack channel (Rich Trott) [#45293](https://github.com/nodejs/node/pull/45293)
|
|
132
|
+
* \[[`7d7e7c316b`](https://github.com/nodejs/node/commit/7d7e7c316b)] - **doc**: fix "task\_processor.js" typo (andreysoktoev) [#45257](https://github.com/nodejs/node/pull/45257)
|
|
133
|
+
* \[[`b9039a54af`](https://github.com/nodejs/node/commit/b9039a54af)] - **doc**: add history section to `fetch`-related globals (Antoine du Hamel) [#45198](https://github.com/nodejs/node/pull/45198)
|
|
134
|
+
* \[[`d9163f1632`](https://github.com/nodejs/node/commit/d9163f1632)] - **doc**: clarify moderation in `onboarding.md` (Benjamin Gruenbaum) [#41930](https://github.com/nodejs/node/pull/41930)
|
|
135
|
+
* \[[`c179c1478b`](https://github.com/nodejs/node/commit/c179c1478b)] - **doc**: change make lint to make lint-md (RafaelGSS) [#45197](https://github.com/nodejs/node/pull/45197)
|
|
136
|
+
* \[[`58bec56fab`](https://github.com/nodejs/node/commit/58bec56fab)] - **doc**: add more lts update steps to release guide (Ruy Adorno) [#45177](https://github.com/nodejs/node/pull/45177)
|
|
137
|
+
* \[[`8f8d7e76ac`](https://github.com/nodejs/node/commit/8f8d7e76ac)] - **doc**: add bmuenzenmeyer to triagers (Brian Muenzenmeyer) [#45155](https://github.com/nodejs/node/pull/45155)
|
|
138
|
+
* \[[`de2df550f6`](https://github.com/nodejs/node/commit/de2df550f6)] - **doc**: update process.release (Filip Skokan) [#45170](https://github.com/nodejs/node/pull/45170)
|
|
139
|
+
* \[[`916e8760ba`](https://github.com/nodejs/node/commit/916e8760ba)] - **doc**: add link to triage guide (Brian Muenzenmeyer) [#45154](https://github.com/nodejs/node/pull/45154)
|
|
140
|
+
* \[[`54d806853e`](https://github.com/nodejs/node/commit/54d806853e)] - **doc**: mark Node.js 12 as End-of-Life (Rafael Gonzaga) [#45186](https://github.com/nodejs/node/pull/45186)
|
|
141
|
+
* \[[`3a26347649`](https://github.com/nodejs/node/commit/3a26347649)] - **doc**: add lukekarrys to collaborators (Luke Karrys) [#45180](https://github.com/nodejs/node/pull/45180)
|
|
142
|
+
* \[[`85cb4d795c`](https://github.com/nodejs/node/commit/85cb4d795c)] - **doc**: update mark release line lts on release guide (Ruy Adorno) [#45101](https://github.com/nodejs/node/pull/45101)
|
|
143
|
+
* \[[`c23e023a2d`](https://github.com/nodejs/node/commit/c23e023a2d)] - **doc**: be more definite and present tense-y (Ben Noordhuis) [#45120](https://github.com/nodejs/node/pull/45120)
|
|
144
|
+
* \[[`519002152b`](https://github.com/nodejs/node/commit/519002152b)] - **doc**: add major version note to release guide (Ruy Adorno) [#45054](https://github.com/nodejs/node/pull/45054)
|
|
145
|
+
* \[[`809e8dcbd2`](https://github.com/nodejs/node/commit/809e8dcbd2)] - **doc**: fix v14.x link maintaining openssl guide (RafaelGSS) [#45071](https://github.com/nodejs/node/pull/45071)
|
|
146
|
+
* \[[`9d449d389d`](https://github.com/nodejs/node/commit/9d449d389d)] - **doc**: add note about latest GitHub release (Michaël Zasso) [#45111](https://github.com/nodejs/node/pull/45111)
|
|
147
|
+
* \[[`ee34a3a1bc`](https://github.com/nodejs/node/commit/ee34a3a1bc)] - **doc**: mention v18.x openssl maintaining guide (Rafael Gonzaga) [#45070](https://github.com/nodejs/node/pull/45070)
|
|
148
|
+
* \[[`3e4033a90d`](https://github.com/nodejs/node/commit/3e4033a90d)] - **doc**: fix display of "problematic" ASCII characters (John Gardner) [#44373](https://github.com/nodejs/node/pull/44373)
|
|
149
|
+
* \[[`533e38b0b8`](https://github.com/nodejs/node/commit/533e38b0b8)] - **doc**: mark Node.js v17.x as EOL (KaKa) [#45110](https://github.com/nodejs/node/pull/45110)
|
|
150
|
+
* \[[`93a34faa39`](https://github.com/nodejs/node/commit/93a34faa39)] - **doc**: update Node.js 16 End-of-Life date (Richard Lau) [#45103](https://github.com/nodejs/node/pull/45103)
|
|
151
|
+
* \[[`b4beddef79`](https://github.com/nodejs/node/commit/b4beddef79)] - **doc**: fix typo in parseArgs default value (Tobias Nießen) [#45083](https://github.com/nodejs/node/pull/45083)
|
|
152
|
+
* \[[`e8103fd33b`](https://github.com/nodejs/node/commit/e8103fd33b)] - **doc**: updated security stewards (Michael Dawson) [#45005](https://github.com/nodejs/node/pull/45005)
|
|
153
|
+
* \[[`5fbccae4f0`](https://github.com/nodejs/node/commit/5fbccae4f0)] - **doc**: fix http and http2 writeEarlyHints() parameter (Fabian Meyer) [#45000](https://github.com/nodejs/node/pull/45000)
|
|
154
|
+
* \[[`d47f83251a`](https://github.com/nodejs/node/commit/d47f83251a)] - **doc**: run license-builder (github-actions\[bot]) [#45034](https://github.com/nodejs/node/pull/45034)
|
|
155
|
+
* \[[`e6bbc5033d`](https://github.com/nodejs/node/commit/e6bbc5033d)] - **doc**: improve the workflow to test release binaries (Rafael Gonzaga) [#45004](https://github.com/nodejs/node/pull/45004)
|
|
156
|
+
* \[[`f0c18f04f0`](https://github.com/nodejs/node/commit/f0c18f04f0)] - **doc**: fix undici version in changelog (Michael Dawson) [#44982](https://github.com/nodejs/node/pull/44982)
|
|
157
|
+
* \[[`ffba3218ec`](https://github.com/nodejs/node/commit/ffba3218ec)] - **doc**: add info on fixup to security release process (Michael Dawson) [#44807](https://github.com/nodejs/node/pull/44807)
|
|
158
|
+
* \[[`edb92f4510`](https://github.com/nodejs/node/commit/edb92f4510)] - **doc**: add anonrig to collaborators (Yagiz Nizipli) [#45002](https://github.com/nodejs/node/pull/45002)
|
|
159
|
+
* \[[`58334a38e8`](https://github.com/nodejs/node/commit/58334a38e8)] - **doc, async\_hooks**: improve and add migration hints (Gerhard Stöbich) [#45369](https://github.com/nodejs/node/pull/45369)
|
|
160
|
+
* \[[`7225a7d46b`](https://github.com/nodejs/node/commit/7225a7d46b)] - **doc, http**: add Uint8Array as allowed type (Gerhard Stöbich) [#45167](https://github.com/nodejs/node/pull/45167)
|
|
161
|
+
* \[[`40a5e22328`](https://github.com/nodejs/node/commit/40a5e22328)] - **esm**: protect ESM loader from prototype pollution (Antoine du Hamel) [#45175](https://github.com/nodejs/node/pull/45175)
|
|
162
|
+
* \[[`2e5d8e7239`](https://github.com/nodejs/node/commit/2e5d8e7239)] - **esm**: protect ESM loader from prototype pollution (Antoine du Hamel) [#45044](https://github.com/nodejs/node/pull/45044)
|
|
163
|
+
* \[[`c3dd696081`](https://github.com/nodejs/node/commit/c3dd696081)] - **events**: add unique events benchmark (Yagiz Nizipli) [#44657](https://github.com/nodejs/node/pull/44657)
|
|
164
|
+
* \[[`daff3b8b09`](https://github.com/nodejs/node/commit/daff3b8b09)] - **fs**: update todo message (Yagiz Nizipli) [#45265](https://github.com/nodejs/node/pull/45265)
|
|
165
|
+
* \[[`670def3d6f`](https://github.com/nodejs/node/commit/670def3d6f)] - **fs**: fix opts.filter issue in cpSync (Tho) [#45143](https://github.com/nodejs/node/pull/45143)
|
|
166
|
+
* \[[`34bfef91a9`](https://github.com/nodejs/node/commit/34bfef91a9)] - **(SEMVER-MINOR)** **fs**: add recursive watch to linux (Yagiz Nizipli) [#45098](https://github.com/nodejs/node/pull/45098)
|
|
167
|
+
* \[[`d89ca1b443`](https://github.com/nodejs/node/commit/d89ca1b443)] - **fs**: trace more fs api (theanarkh) [#45095](https://github.com/nodejs/node/pull/45095)
|
|
168
|
+
* \[[`1a04881494`](https://github.com/nodejs/node/commit/1a04881494)] - **http**: headers(Distinct), trailers(Distinct) setters to be no-op (Madhuri) [#45176](https://github.com/nodejs/node/pull/45176)
|
|
169
|
+
* \[[`8abc3f732a`](https://github.com/nodejs/node/commit/8abc3f732a)] - **http**: add priority to common http headers (James M Snell) [#45045](https://github.com/nodejs/node/pull/45045)
|
|
170
|
+
* \[[`316354e3d3`](https://github.com/nodejs/node/commit/316354e3d3)] - **http2**: improve session close/destroy procedures (Santiago Gimeno) [#45115](https://github.com/nodejs/node/pull/45115)
|
|
171
|
+
* \[[`1635140952`](https://github.com/nodejs/node/commit/1635140952)] - **http2**: fix crash on Http2Stream::diagnostic\_name() (Santiago Gimeno) [#45123](https://github.com/nodejs/node/pull/45123)
|
|
172
|
+
* \[[`94b7f5338c`](https://github.com/nodejs/node/commit/94b7f5338c)] - **http2**: fix debugStream method (Santiago Gimeno) [#45129](https://github.com/nodejs/node/pull/45129)
|
|
173
|
+
* \[[`3db37e7d1b`](https://github.com/nodejs/node/commit/3db37e7d1b)] - **inspector**: refactor `inspector/promises` to be more robust (Antoine du Hamel) [#45041](https://github.com/nodejs/node/pull/45041)
|
|
174
|
+
* \[[`0478e4063f`](https://github.com/nodejs/node/commit/0478e4063f)] - **lib**: add options to the heap snapshot APIs (Joyee Cheung) [#44989](https://github.com/nodejs/node/pull/44989)
|
|
175
|
+
* \[[`a8e901555a`](https://github.com/nodejs/node/commit/a8e901555a)] - **lib**: fix JSDoc issues (Rich Trott) [#45243](https://github.com/nodejs/node/pull/45243)
|
|
176
|
+
* \[[`74352842bc`](https://github.com/nodejs/node/commit/74352842bc)] - **lib**: use process.nextTick() instead of setImmediate() (Luigi Pinca) [#42340](https://github.com/nodejs/node/pull/42340)
|
|
177
|
+
* \[[`9f3d2f6879`](https://github.com/nodejs/node/commit/9f3d2f6879)] - **lib**: drop fetch experimental warning (Matteo Collina) [#45287](https://github.com/nodejs/node/pull/45287)
|
|
178
|
+
* \[[`e2181e057b`](https://github.com/nodejs/node/commit/e2181e057b)] - **lib**: fix eslint early return (RafaelGSS) [#45409](https://github.com/nodejs/node/pull/45409)
|
|
179
|
+
* \[[`d1726692ee`](https://github.com/nodejs/node/commit/d1726692ee)] - **lib**: fix TypeError when converting a detached buffer source (Kohei Ueno) [#44020](https://github.com/nodejs/node/pull/44020)
|
|
180
|
+
* \[[`d7470ad986`](https://github.com/nodejs/node/commit/d7470ad986)] - **lib**: fix `AbortSignal.timeout` parameter validation (dnalborczyk) [#42856](https://github.com/nodejs/node/pull/42856)
|
|
181
|
+
* \[[`c7b7f2bec2`](https://github.com/nodejs/node/commit/c7b7f2bec2)] - **lib**: add lint rule to protect against `Object.prototype.then` pollution (Antoine du Hamel) [#45061](https://github.com/nodejs/node/pull/45061)
|
|
182
|
+
* \[[`9ed9aa8233`](https://github.com/nodejs/node/commit/9ed9aa8233)] - **lib**: add ability to add separate event name to defineEventHandler (James M Snell) [#45032](https://github.com/nodejs/node/pull/45032)
|
|
183
|
+
* \[[`8b4a41e23d`](https://github.com/nodejs/node/commit/8b4a41e23d)] - **lib**: fix typo in `pre_execution.js` (Antoine du Hamel) [#45039](https://github.com/nodejs/node/pull/45039)
|
|
184
|
+
* \[[`cc2393c9fe`](https://github.com/nodejs/node/commit/cc2393c9fe)] - **lib**: promise version of streams.finished call clean up (Naor Tedgi (Abu Emma)) [#44862](https://github.com/nodejs/node/pull/44862)
|
|
185
|
+
* \[[`17ef1bbc8e`](https://github.com/nodejs/node/commit/17ef1bbc8e)] - **lib**: make properties on Blob and URL enumerable (Khafra) [#44918](https://github.com/nodejs/node/pull/44918)
|
|
186
|
+
* \[[`8199841e9c`](https://github.com/nodejs/node/commit/8199841e9c)] - **lib**: support more attributes for early hint link (Yagiz Nizipli) [#44874](https://github.com/nodejs/node/pull/44874)
|
|
187
|
+
* \[[`88c3bb609b`](https://github.com/nodejs/node/commit/88c3bb609b)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#45333](https://github.com/nodejs/node/pull/45333)
|
|
188
|
+
* \[[`a866e8c163`](https://github.com/nodejs/node/commit/a866e8c163)] - **meta**: update collaborator email address in README (Rich Trott) [#45251](https://github.com/nodejs/node/pull/45251)
|
|
189
|
+
* \[[`bfbfacad79`](https://github.com/nodejs/node/commit/bfbfacad79)] - **meta**: fix email address typo in README (Rich Trott) [#45250](https://github.com/nodejs/node/pull/45250)
|
|
190
|
+
* \[[`0d58bb9531`](https://github.com/nodejs/node/commit/0d58bb9531)] - **meta**: remove dont-land-on-v12 auto labeling (Moshe Atlow) [#45233](https://github.com/nodejs/node/pull/45233)
|
|
191
|
+
* \[[`b41b5ba658`](https://github.com/nodejs/node/commit/b41b5ba658)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#45238](https://github.com/nodejs/node/pull/45238)
|
|
192
|
+
* \[[`ad9a5bb61f`](https://github.com/nodejs/node/commit/ad9a5bb61f)] - **meta**: move a collaborator to emeritus (Rich Trott) [#45160](https://github.com/nodejs/node/pull/45160)
|
|
193
|
+
* \[[`ec8683052b`](https://github.com/nodejs/node/commit/ec8683052b)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#45036](https://github.com/nodejs/node/pull/45036)
|
|
194
|
+
* \[[`7900810fb3`](https://github.com/nodejs/node/commit/7900810fb3)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#45020](https://github.com/nodejs/node/pull/45020)
|
|
195
|
+
* \[[`738144c311`](https://github.com/nodejs/node/commit/738144c311)] - **module**: ensure relative requires work from deleted directories (Bradley Farias) [#42384](https://github.com/nodejs/node/pull/42384)
|
|
196
|
+
* \[[`36acf8a13e`](https://github.com/nodejs/node/commit/36acf8a13e)] - **net**: remove \_readableState from debug statement (Rich Trott) [#45063](https://github.com/nodejs/node/pull/45063)
|
|
197
|
+
* \[[`aaca54c5c0`](https://github.com/nodejs/node/commit/aaca54c5c0)] - **node-api**: handle no support for external buffers (Michael Dawson) [#45181](https://github.com/nodejs/node/pull/45181)
|
|
198
|
+
* \[[`2105f099ea`](https://github.com/nodejs/node/commit/2105f099ea)] - **node-api,test**: fix test\_reference\_double\_free crash (Vladimir Morozov) [#44927](https://github.com/nodejs/node/pull/44927)
|
|
199
|
+
* \[[`2fcf851a91`](https://github.com/nodejs/node/commit/2fcf851a91)] - **os**: convert uid and gid to 32-bit signed integers (Luigi Pinca) [#42340](https://github.com/nodejs/node/pull/42340)
|
|
200
|
+
* \[[`dfe4237d77`](https://github.com/nodejs/node/commit/dfe4237d77)] - **perf\_hooks**: align toStringTag with other Web Performance implementations (Daeyeon Jeong) [#45157](https://github.com/nodejs/node/pull/45157)
|
|
201
|
+
* \[[`9d15da3341`](https://github.com/nodejs/node/commit/9d15da3341)] - **report**: add more memory info (theanarkh) [#45254](https://github.com/nodejs/node/pull/45254)
|
|
202
|
+
* \[[`a2620acad7`](https://github.com/nodejs/node/commit/a2620acad7)] - **report**: add rss and use/kernel cpu usage fields (theanarkh) [#45043](https://github.com/nodejs/node/pull/45043)
|
|
203
|
+
* \[[`66e1dc4979`](https://github.com/nodejs/node/commit/66e1dc4979)] - **report,doc**: define report version semantics (Gireesh Punathil) [#45050](https://github.com/nodejs/node/pull/45050)
|
|
204
|
+
* \[[`86e22b4e19`](https://github.com/nodejs/node/commit/86e22b4e19)] - **src**: track contexts in the Environment instead of AsyncHooks (Joyee Cheung) [#45282](https://github.com/nodejs/node/pull/45282)
|
|
205
|
+
* \[[`326d19af3d`](https://github.com/nodejs/node/commit/326d19af3d)] - **src**: resolve TODO related to inspector CVEs (Tobias Nießen) [#45341](https://github.com/nodejs/node/pull/45341)
|
|
206
|
+
* \[[`4e45585ca2`](https://github.com/nodejs/node/commit/4e45585ca2)] - **src**: revert is\_release to 0 (RafaelGSS) [#45315](https://github.com/nodejs/node/pull/45315)
|
|
207
|
+
* \[[`5d480118fb`](https://github.com/nodejs/node/commit/5d480118fb)] - **src**: print nghttp2 logs when using --debug-nghttp2 (Santiago Gimeno) [#45209](https://github.com/nodejs/node/pull/45209)
|
|
208
|
+
* \[[`3e46ebda3c`](https://github.com/nodejs/node/commit/3e46ebda3c)] - **src**: trace threadpool event (theanarkh) [#44458](https://github.com/nodejs/node/pull/44458)
|
|
209
|
+
* \[[`97547bcd14`](https://github.com/nodejs/node/commit/97547bcd14)] - **src**: lock-free init\_process\_flags (Jérémy Lal) [#45221](https://github.com/nodejs/node/pull/45221)
|
|
210
|
+
* \[[`42db84913b`](https://github.com/nodejs/node/commit/42db84913b)] - **src**: call uv\_library\_shutdown before DisposePlatform (theanarkh) [#45226](https://github.com/nodejs/node/pull/45226)
|
|
211
|
+
* \[[`aa4152a1b6`](https://github.com/nodejs/node/commit/aa4152a1b6)] - **src**: fix `crypto.privateEncrypt` fails first time (liuxingbaoyu) [#42793](https://github.com/nodejs/node/pull/42793)
|
|
212
|
+
* \[[`243c141b69`](https://github.com/nodejs/node/commit/243c141b69)] - **src**: clarify OptionEnvvarSettings member names (Chengzhong Wu) [#45057](https://github.com/nodejs/node/pull/45057)
|
|
213
|
+
* \[[`5335e29ce7`](https://github.com/nodejs/node/commit/5335e29ce7)] - **src**: let http2 streams end after session close (Santiago Gimeno) [#45153](https://github.com/nodejs/node/pull/45153)
|
|
214
|
+
* \[[`8d5682266e`](https://github.com/nodejs/node/commit/8d5682266e)] - **src**: remap invalid file descriptors using `dup2` (Obiwac) [#44461](https://github.com/nodejs/node/pull/44461)
|
|
215
|
+
* \[[`4e14ed8878`](https://github.com/nodejs/node/commit/4e14ed8878)] - **src**: remove unused `contextify_global_private_symbol` (Daeyeon Jeong) [#45128](https://github.com/nodejs/node/pull/45128)
|
|
216
|
+
* \[[`a8412f5677`](https://github.com/nodejs/node/commit/a8412f5677)] - **src**: forbid running watch mode in REPL (Moshe Atlow) [#45058](https://github.com/nodejs/node/pull/45058)
|
|
217
|
+
* \[[`162bf0ddff`](https://github.com/nodejs/node/commit/162bf0ddff)] - **src**: fix test runner coverage (Moshe Atlow) [#45055](https://github.com/nodejs/node/pull/45055)
|
|
218
|
+
* \[[`e5b1179630`](https://github.com/nodejs/node/commit/e5b1179630)] - **src**: optimize ALPN callback (Ben Noordhuis) [#44875](https://github.com/nodejs/node/pull/44875)
|
|
219
|
+
* \[[`9dc21a1f86`](https://github.com/nodejs/node/commit/9dc21a1f86)] - **src**: simplify ALPN code, remove indirection (Ben Noordhuis) [#44875](https://github.com/nodejs/node/pull/44875)
|
|
220
|
+
* \[[`5fce8e3495`](https://github.com/nodejs/node/commit/5fce8e3495)] - **src**: iwyu in cleanup\_queue.cc (Shelley Vohr) [#44983](https://github.com/nodejs/node/pull/44983)
|
|
221
|
+
* \[[`824dcfc422`](https://github.com/nodejs/node/commit/824dcfc422)] - **src**: return void in InitializeInspector() (Joyee Cheung) [#44903](https://github.com/nodejs/node/pull/44903)
|
|
222
|
+
* \[[`7a31ae8ab1`](https://github.com/nodejs/node/commit/7a31ae8ab1)] - **src,lib**: retrieve parsed source map url from v8 (Chengzhong Wu) [#44798](https://github.com/nodejs/node/pull/44798)
|
|
223
|
+
* \[[`ccb1c1e9a2`](https://github.com/nodejs/node/commit/ccb1c1e9a2)] - **stream**: add compose operator (Raz Luvaton) [#44937](https://github.com/nodejs/node/pull/44937)
|
|
224
|
+
* \[[`e60d9053bc`](https://github.com/nodejs/node/commit/e60d9053bc)] - **stream**: fix duplexify premature destroy (Robert Nagy) [#45133](https://github.com/nodejs/node/pull/45133)
|
|
225
|
+
* \[[`bc0ae3e74e`](https://github.com/nodejs/node/commit/bc0ae3e74e)] - **stream**: fix web streams have no Symbol.toStringTag (Jithil P Ponnan) [#45117](https://github.com/nodejs/node/pull/45117)
|
|
226
|
+
* \[[`1655532fd2`](https://github.com/nodejs/node/commit/1655532fd2)] - **stream**: don't push null from closed promise #42694 (David Halls) [#45026](https://github.com/nodejs/node/pull/45026)
|
|
227
|
+
* \[[`717db1d46a`](https://github.com/nodejs/node/commit/717db1d46a)] - **test**: skip test-fs-largefile if not enough disk space (Rich Trott) [#45339](https://github.com/nodejs/node/pull/45339)
|
|
228
|
+
* \[[`4a80aff16e`](https://github.com/nodejs/node/commit/4a80aff16e)] - **test**: fix catching failed assertion (Pavel Horal) [#45222](https://github.com/nodejs/node/pull/45222)
|
|
229
|
+
* \[[`66e7821506`](https://github.com/nodejs/node/commit/66e7821506)] - **test**: defer invocation checks (Luigi Pinca) [#42340](https://github.com/nodejs/node/pull/42340)
|
|
230
|
+
* \[[`43db0fbd49`](https://github.com/nodejs/node/commit/43db0fbd49)] - **test**: fix test-socket-write-after-fin-error (Luigi Pinca) [#42340](https://github.com/nodejs/node/pull/42340)
|
|
231
|
+
* \[[`d5f4d98847`](https://github.com/nodejs/node/commit/d5f4d98847)] - **test**: make `test-eventemitter-asyncresource.js` shorter (Juan José) [#45146](https://github.com/nodejs/node/pull/45146)
|
|
232
|
+
* \[[`7428651100`](https://github.com/nodejs/node/commit/7428651100)] - **test**: convert test-debugger-pid to async/await (Luke Karrys) [#45179](https://github.com/nodejs/node/pull/45179)
|
|
233
|
+
* \[[`f10f2c1121`](https://github.com/nodejs/node/commit/f10f2c1121)] - **test**: fix textdecoder test for small-icu builds (Richard Lau) [#45225](https://github.com/nodejs/node/pull/45225)
|
|
234
|
+
* \[[`eed799bd31`](https://github.com/nodejs/node/commit/eed799bd31)] - **test**: improve test coverage in `test-event-capture-rejections.js` (Juan José) [#45148](https://github.com/nodejs/node/pull/45148)
|
|
235
|
+
* \[[`069747bfdd`](https://github.com/nodejs/node/commit/069747bfdd)] - **test**: fix timeout of test-heap-prof.js in riscv devices (Yu Gu) [#42674](https://github.com/nodejs/node/pull/42674)
|
|
236
|
+
* \[[`ddb7df76de`](https://github.com/nodejs/node/commit/ddb7df76de)] - **test**: deflake test-http2-empty-frame-without-eof (Santiago Gimeno) [#45212](https://github.com/nodejs/node/pull/45212)
|
|
237
|
+
* \[[`02ebde39d3`](https://github.com/nodejs/node/commit/02ebde39d3)] - **test**: use common/tmpdir in watch-mode ipc test (Richard Lau) [#45211](https://github.com/nodejs/node/pull/45211)
|
|
238
|
+
* \[[`f9bc40a1fc`](https://github.com/nodejs/node/commit/f9bc40a1fc)] - **test**: use uv\_sleep() where possible (Santiago Gimeno) [#45124](https://github.com/nodejs/node/pull/45124)
|
|
239
|
+
* \[[`3c7ea23b8f`](https://github.com/nodejs/node/commit/3c7ea23b8f)] - **test**: fix typo in `test/parallel/test-fs-rm.js` (Tim Shilov) [#44882](https://github.com/nodejs/node/pull/44882)
|
|
240
|
+
* \[[`b39dcde056`](https://github.com/nodejs/node/commit/b39dcde056)] - **test**: remove a snapshot blob from test-inspect-address-in-use.js (Daeyeon Jeong) [#45132](https://github.com/nodejs/node/pull/45132)
|
|
241
|
+
* \[[`fabed9bdc8`](https://github.com/nodejs/node/commit/fabed9bdc8)] - **test**: add test for Module.\_stat (Darshan Sen) [#44713](https://github.com/nodejs/node/pull/44713)
|
|
242
|
+
* \[[`2b3b291c97`](https://github.com/nodejs/node/commit/2b3b291c97)] - **test**: watch mode inspect restart repeatedly (Moshe Atlow) [#45060](https://github.com/nodejs/node/pull/45060)
|
|
243
|
+
* \[[`17e86e4188`](https://github.com/nodejs/node/commit/17e86e4188)] - **test**: remove experimental-wasm-threads flag (Michaël Zasso) [#45074](https://github.com/nodejs/node/pull/45074)
|
|
244
|
+
* \[[`f0480d68e9`](https://github.com/nodejs/node/commit/f0480d68e9)] - **test**: remove unnecessary noop function args to `mustCall()` (Antoine du Hamel) [#45047](https://github.com/nodejs/node/pull/45047)
|
|
245
|
+
* \[[`82e6043118`](https://github.com/nodejs/node/commit/82e6043118)] - **test**: mark test-watch-mode\* as flaky on all platforms (Pierrick Bouvier) [#45049](https://github.com/nodejs/node/pull/45049)
|
|
246
|
+
* \[[`26a2ae2489`](https://github.com/nodejs/node/commit/26a2ae2489)] - **test**: wrap missing `common.mustCall` (Moshe Atlow) [#45064](https://github.com/nodejs/node/pull/45064)
|
|
247
|
+
* \[[`8662399cda`](https://github.com/nodejs/node/commit/8662399cda)] - **test**: remove mentions of `--experimental-async-stack-tagging-api` flag (Simon) [#45051](https://github.com/nodejs/node/pull/45051)
|
|
248
|
+
* \[[`71b8d506ed`](https://github.com/nodejs/node/commit/71b8d506ed)] - **test**: improve assertions in `test-repl-unsupported-option.js` (Juan José) [#44953](https://github.com/nodejs/node/pull/44953)
|
|
249
|
+
* \[[`dbc696d363`](https://github.com/nodejs/node/commit/dbc696d363)] - **test**: remove unnecessary noop function args to mustCall() (Rich Trott) [#45027](https://github.com/nodejs/node/pull/45027)
|
|
250
|
+
* \[[`c1ca19fb06`](https://github.com/nodejs/node/commit/c1ca19fb06)] - **test**: update WPT resources (Khaidi Chu) [#44948](https://github.com/nodejs/node/pull/44948)
|
|
251
|
+
* \[[`43677e5a34`](https://github.com/nodejs/node/commit/43677e5a34)] - **test**: skip test depending on `overlapped-checker` when not available (Antoine du Hamel) [#45015](https://github.com/nodejs/node/pull/45015)
|
|
252
|
+
* \[[`3519d74e87`](https://github.com/nodejs/node/commit/3519d74e87)] - **test**: improve test coverage for `os` package (Juan José) [#44959](https://github.com/nodejs/node/pull/44959)
|
|
253
|
+
* \[[`ea0cfc9a83`](https://github.com/nodejs/node/commit/ea0cfc9a83)] - **test**: add test to improve coverage in http2-compat-serverresponse (Cesar Mario Diaz) [#44970](https://github.com/nodejs/node/pull/44970)
|
|
254
|
+
* \[[`482578682c`](https://github.com/nodejs/node/commit/482578682c)] - **test**: improve test coverage in `test-child-process-spawn-argv0.js` (Juan José) [#44955](https://github.com/nodejs/node/pull/44955)
|
|
255
|
+
* \[[`a618dc3c3e`](https://github.com/nodejs/node/commit/a618dc3c3e)] - **test**: use CHECK instead of EXPECT where necessary (Tobias Nießen) [#44795](https://github.com/nodejs/node/pull/44795)
|
|
256
|
+
* \[[`c59d3b76e6`](https://github.com/nodejs/node/commit/c59d3b76e6)] - **test**: refactor promises to async/await (Madhuri) [#44980](https://github.com/nodejs/node/pull/44980)
|
|
257
|
+
* \[[`36c5927c60`](https://github.com/nodejs/node/commit/36c5927c60)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#45165](https://github.com/nodejs/node/pull/45165)
|
|
258
|
+
* \[[`6158d740f3`](https://github.com/nodejs/node/commit/6158d740f3)] - **test\_runner**: support function mocking (Colin Ihrig) [#45326](https://github.com/nodejs/node/pull/45326)
|
|
259
|
+
* \[[`920804dc46`](https://github.com/nodejs/node/commit/920804dc46)] - **test\_runner**: avoid swallowing of asynchronously thrown errors (MURAKAMI Masahiko) [#45264](https://github.com/nodejs/node/pull/45264)
|
|
260
|
+
* \[[`8e7f9de45e`](https://github.com/nodejs/node/commit/8e7f9de45e)] - **test\_runner**: fix afterEach not running on test failures (Jithil P Ponnan) [#45204](https://github.com/nodejs/node/pull/45204)
|
|
261
|
+
* \[[`0040030443`](https://github.com/nodejs/node/commit/0040030443)] - **test\_runner**: report tap subtest in order (Moshe Atlow) [#45220](https://github.com/nodejs/node/pull/45220)
|
|
262
|
+
* \[[`afa8291c7c`](https://github.com/nodejs/node/commit/afa8291c7c)] - **test\_runner**: call {before,after}Each() on suites (Colin Ihrig) [#45161](https://github.com/nodejs/node/pull/45161)
|
|
263
|
+
* \[[`ff174b0937`](https://github.com/nodejs/node/commit/ff174b0937)] - **test\_runner**: add extra fields in AssertionError YAML (Bryan English) [#44952](https://github.com/nodejs/node/pull/44952)
|
|
264
|
+
* \[[`bf868fdfab`](https://github.com/nodejs/node/commit/bf868fdfab)] - **(SEMVER-MINOR)** **tls**: add "ca" property to certificate object (Ben Noordhuis) [#44935](https://github.com/nodejs/node/pull/44935)
|
|
265
|
+
* \[[`e8075fd1f8`](https://github.com/nodejs/node/commit/e8075fd1f8)] - **tools**: add automation for updating acorn dependency (Facundo Tuesca) [#45357](https://github.com/nodejs/node/pull/45357)
|
|
266
|
+
* \[[`9aa305ff3e`](https://github.com/nodejs/node/commit/9aa305ff3e)] - **tools**: add documentation regarding our api tooling (Claudio Wunder) [#45270](https://github.com/nodejs/node/pull/45270)
|
|
267
|
+
* \[[`76cbc07f9b`](https://github.com/nodejs/node/commit/76cbc07f9b)] - **tools**: allow scripts to run from anywhere (Luigi Pinca) [#45361](https://github.com/nodejs/node/pull/45361)
|
|
268
|
+
* \[[`aa875a4d6a`](https://github.com/nodejs/node/commit/aa875a4d6a)] - **tools**: update eslint to 8.27.0 (Node.js GitHub Bot) [#45358](https://github.com/nodejs/node/pull/45358)
|
|
269
|
+
* \[[`4b71db13ae`](https://github.com/nodejs/node/commit/4b71db13ae)] - **tools**: update eslint to 8.26.0 (Node.js GitHub Bot) [#45243](https://github.com/nodejs/node/pull/45243)
|
|
270
|
+
* \[[`63267dfefb`](https://github.com/nodejs/node/commit/63267dfefb)] - **tools**: update lint-md-dependencies to rollup\@3.2.5 (Node.js GitHub Bot) [#45332](https://github.com/nodejs/node/pull/45332)
|
|
271
|
+
* \[[`e275859138`](https://github.com/nodejs/node/commit/e275859138)] - **tools**: fix stability index generation (Antoine du Hamel) [#45346](https://github.com/nodejs/node/pull/45346)
|
|
272
|
+
* \[[`97fe8bacb1`](https://github.com/nodejs/node/commit/97fe8bacb1)] - **tools**: increase macOS cores to 3 on GitHub CI (Rich Trott) [#45340](https://github.com/nodejs/node/pull/45340)
|
|
273
|
+
* \[[`eda4ae51ca`](https://github.com/nodejs/node/commit/eda4ae51ca)] - **tools**: add automation for updating base64 dependency (Facundo Tuesca) [#45300](https://github.com/nodejs/node/pull/45300)
|
|
274
|
+
* \[[`2ee052f794`](https://github.com/nodejs/node/commit/2ee052f794)] - **tools**: fix `request-ci-failed` comment (Antoine du Hamel) [#45291](https://github.com/nodejs/node/pull/45291)
|
|
275
|
+
* \[[`e118dd88fd`](https://github.com/nodejs/node/commit/e118dd88fd)] - **tools**: refactor dynamic strings creation in shell scripts (Antoine du Hamel) [#45240](https://github.com/nodejs/node/pull/45240)
|
|
276
|
+
* \[[`ba89cea683`](https://github.com/nodejs/node/commit/ba89cea683)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#45237](https://github.com/nodejs/node/pull/45237)
|
|
277
|
+
* \[[`786f086800`](https://github.com/nodejs/node/commit/786f086800)] - **tools**: use Python 3.11 in GitHub Actions workflows (Luigi Pinca) [#45191](https://github.com/nodejs/node/pull/45191)
|
|
278
|
+
* \[[`0738d14fa4`](https://github.com/nodejs/node/commit/0738d14fa4)] - **tools**: fix `request-ci-failed` comment (Antoine du Hamel) [#45218](https://github.com/nodejs/node/pull/45218)
|
|
279
|
+
* \[[`49be13ccd8`](https://github.com/nodejs/node/commit/49be13ccd8)] - **tools**: keep Emeriti lists case-insensitive alphabetic (Rich Trott) [#45159](https://github.com/nodejs/node/pull/45159)
|
|
280
|
+
* \[[`6e30d2231b`](https://github.com/nodejs/node/commit/6e30d2231b)] - **tools**: update actions/setup-python to v4 (Yagiz Nizipli) [#45178](https://github.com/nodejs/node/pull/45178)
|
|
281
|
+
* \[[`a4158692d7`](https://github.com/nodejs/node/commit/a4158692d7)] - **tools**: update V8 gypfiles for RISC-V (Andreas Schwab) [#45149](https://github.com/nodejs/node/pull/45149)
|
|
282
|
+
* \[[`c43bc2169f`](https://github.com/nodejs/node/commit/c43bc2169f)] - **tools**: fix `create-or-update-pull-request-action` hash on GHA (Antoine du Hamel) [#45166](https://github.com/nodejs/node/pull/45166)
|
|
283
|
+
* \[[`2ccc03ec32`](https://github.com/nodejs/node/commit/2ccc03ec32)] - **tools**: update gr2m/create-or-update-pull-request-action (Luigi Pinca) [#45022](https://github.com/nodejs/node/pull/45022)
|
|
284
|
+
* \[[`a70b27629f`](https://github.com/nodejs/node/commit/a70b27629f)] - **tools**: do not use the set-output command in workflows (Luigi Pinca) [#45024](https://github.com/nodejs/node/pull/45024)
|
|
285
|
+
* \[[`025e616662`](https://github.com/nodejs/node/commit/025e616662)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#45019](https://github.com/nodejs/node/pull/45019)
|
|
286
|
+
* \[[`732f9a78d3`](https://github.com/nodejs/node/commit/732f9a78d3)] - **trace\_events**: fix getCategories (theanarkh) [#45092](https://github.com/nodejs/node/pull/45092)
|
|
287
|
+
* \[[`1bc84ce52c`](https://github.com/nodejs/node/commit/1bc84ce52c)] - **url**: remove \t \n \r in url.parse() similar to WHATWG (Rich Trott) [#45116](https://github.com/nodejs/node/pull/45116)
|
|
288
|
+
* \[[`84e7388160`](https://github.com/nodejs/node/commit/84e7388160)] - **url**: improve port validation (Rich Trott) [#45012](https://github.com/nodejs/node/pull/45012)
|
|
289
|
+
* \[[`02cff4a3d3`](https://github.com/nodejs/node/commit/02cff4a3d3)] - **url**: improve url.parse() compliance with WHATWG URL (Rich Trott) [#45011](https://github.com/nodejs/node/pull/45011)
|
|
290
|
+
* \[[`89390a6be2`](https://github.com/nodejs/node/commit/89390a6be2)] - **util**: improve text-decoder performance (Yagiz Nizipli) [#45363](https://github.com/nodejs/node/pull/45363)
|
|
291
|
+
* \[[`0deed8daeb`](https://github.com/nodejs/node/commit/0deed8daeb)] - **util**: improve textdecoder decode performance (Yagiz Nizipli) [#45294](https://github.com/nodejs/node/pull/45294)
|
|
292
|
+
* \[[`d41f8ffc36`](https://github.com/nodejs/node/commit/d41f8ffc36)] - **(SEMVER-MINOR)** **util**: add MIME utilities (#21128) (Bradley Farias) [#21128](https://github.com/nodejs/node/pull/21128)
|
|
293
|
+
|
|
38
294
|
<a id="19.0.1"></a>
|
|
39
295
|
|
|
40
296
|
## 2022-11-04, Version 19.0.1 (Current), @RafaelGSS
|
package/LICENSE
CHANGED
|
@@ -693,10 +693,6 @@ The externally maintained libraries used by Node.js are:
|
|
|
693
693
|
|
|
694
694
|
- pthread-fixes.c, copyright Google Inc. and Sony Mobile Communications AB.
|
|
695
695
|
Three clause BSD license.
|
|
696
|
-
|
|
697
|
-
- android-ifaddrs.h, android-ifaddrs.c, copyright Berkeley Software Design
|
|
698
|
-
Inc, Kenneth MacKay and Emergya (Cloud4all, FP7/2007-2013, grant agreement
|
|
699
|
-
n° 289016). Three clause BSD license.
|
|
700
696
|
"""
|
|
701
697
|
|
|
702
698
|
- llhttp, located at deps/llhttp, is licensed as follows:
|
|
@@ -984,8 +980,7 @@ The externally maintained libraries used by Node.js are:
|
|
|
984
980
|
- Strongtalk assembler, the basis of the files assembler-arm-inl.h,
|
|
985
981
|
assembler-arm.cc, assembler-arm.h, assembler-ia32-inl.h,
|
|
986
982
|
assembler-ia32.cc, assembler-ia32.h, assembler-x64-inl.h,
|
|
987
|
-
assembler-x64.cc, assembler-x64.h, assembler
|
|
988
|
-
assembler-mips.cc, assembler-mips.h, assembler.cc and assembler.h.
|
|
983
|
+
assembler-x64.cc, assembler-x64.h, assembler.cc and assembler.h.
|
|
989
984
|
This code is copyrighted by Sun Microsystems Inc. and released
|
|
990
985
|
under a 3-clause BSD license.
|
|
991
986
|
|
package/README.md
CHANGED
|
@@ -266,12 +266,14 @@ For information about the governance of the Node.js project, see
|
|
|
266
266
|
**Anna Henningsen** <<anna@addaleax.net>> (she/her)
|
|
267
267
|
* [aduh95](https://github.com/aduh95) -
|
|
268
268
|
**Antoine du Hamel** <<duhamelantoine1995@gmail.com>> (he/him)
|
|
269
|
+
* [anonrig](https://github.com/anonrig) -
|
|
270
|
+
**Yagiz Nizipli** <<yagiz@nizipli.com>> (he/him)
|
|
269
271
|
* [antsmartian](https://github.com/antsmartian) -
|
|
270
272
|
**Anto Aravinth** <<anto.aravinth.cse@gmail.com>> (he/him)
|
|
271
273
|
* [apapirovski](https://github.com/apapirovski) -
|
|
272
274
|
**Anatoli Papirovski** <<apapirovski@mac.com>> (he/him)
|
|
273
275
|
* [AshCripps](https://github.com/AshCripps) -
|
|
274
|
-
**Ash Cripps** <<
|
|
276
|
+
**Ash Cripps** <<email@ashleycripps.co.uk>>
|
|
275
277
|
* [Ayase-252](https://github.com/Ayase-252) -
|
|
276
278
|
**Qingyu Deng** <<i@ayase-lab.com>>
|
|
277
279
|
* [bcoe](https://github.com/bcoe) -
|
|
@@ -310,8 +312,6 @@ For information about the governance of the Node.js project, see
|
|
|
310
312
|
**David Carlier** <<devnexen@gmail.com>>
|
|
311
313
|
* [devsnek](https://github.com/devsnek) -
|
|
312
314
|
**Gus Caplan** <<me@gus.host>> (they/them)
|
|
313
|
-
* [dmabupt](https://github.com/dmabupt) -
|
|
314
|
-
**Xu Meng** <<dmabupt@gmail.com>> (he/him)
|
|
315
315
|
* [edsadr](https://github.com/edsadr) -
|
|
316
316
|
**Adrian Estrada** <<edsadr@gmail.com>> (he/him)
|
|
317
317
|
* [erickwendel](https://github.com/erickwendel) -
|
|
@@ -370,6 +370,8 @@ For information about the governance of the Node.js project, see
|
|
|
370
370
|
**LiviaMedeiros** <<livia@cirno.name>>
|
|
371
371
|
* [lpinca](https://github.com/lpinca) -
|
|
372
372
|
**Luigi Pinca** <<luigipinca@gmail.com>> (he/him)
|
|
373
|
+
* [lukekarrys](https://github.com/lukekarrys) -
|
|
374
|
+
**Luke Karrys** <<luke@lukekarrys.com>> (he/him)
|
|
373
375
|
* [Lxxyx](https://github.com/Lxxyx) -
|
|
374
376
|
**Zijian Liu** <<lxxyxzj@gmail.com>> (he/him)
|
|
375
377
|
* [marsonya](https://github.com/marsonya) -
|
|
@@ -396,8 +398,6 @@ For information about the governance of the Node.js project, see
|
|
|
396
398
|
**Ouyang Yadong** <<oyydoibh@gmail.com>> (he/him)
|
|
397
399
|
* [panva](https://github.com/panva) -
|
|
398
400
|
**Filip Skokan** <<panva.ip@gmail.com>>
|
|
399
|
-
* [PoojaDurgad](https://github.com/PoojaDurgad) -
|
|
400
|
-
**Pooja D P** <<Pooja.D.P@ibm.com>> (she/her)
|
|
401
401
|
* [puzpuzpuz](https://github.com/puzpuzpuz) -
|
|
402
402
|
**Andrey Pechkurov** <<apechkurov@gmail.com>> (he/him)
|
|
403
403
|
* [Qard](https://github.com/Qard) -
|
|
@@ -425,7 +425,7 @@ For information about the governance of the Node.js project, see
|
|
|
425
425
|
* [ShogunPanda](https://github.com/ShogunPanda) -
|
|
426
426
|
**Paolo Insogna** <<paolo@cowtech.it>> (he/him)
|
|
427
427
|
* [srl295](https://github.com/srl295) -
|
|
428
|
-
**Steven R Loomis** <<
|
|
428
|
+
**Steven R Loomis** <<srl295@gmail.com>>
|
|
429
429
|
* [starkwang](https://github.com/starkwang) -
|
|
430
430
|
**Weijia Wang** <<starkwang@126.com>>
|
|
431
431
|
* [sxa](https://github.com/sxa) -
|
|
@@ -494,6 +494,8 @@ For information about the governance of the Node.js project, see
|
|
|
494
494
|
**Jamie Davis** <<davisjam@vt.edu>> (he/him)
|
|
495
495
|
* [digitalinfinity](https://github.com/digitalinfinity) -
|
|
496
496
|
**Hitesh Kanwathirtha** <<digitalinfinity@gmail.com>> (he/him)
|
|
497
|
+
* [dmabupt](https://github.com/dmabupt) -
|
|
498
|
+
**Xu Meng** <<dmabupt@gmail.com>> (he/him)
|
|
497
499
|
* [dnlup](https://github.com/dnlup)
|
|
498
500
|
**dnlup** <<dnlup.dev@gmail.com>>
|
|
499
501
|
* [eljefedelrodeodeljefe](https://github.com/eljefedelrodeodeljefe) -
|
|
@@ -590,6 +592,8 @@ For information about the governance of the Node.js project, see
|
|
|
590
592
|
**Bert Belder** <<bertbelder@gmail.com>>
|
|
591
593
|
* [pmq20](https://github.com/pmq20) -
|
|
592
594
|
**Minqi Pan** <<pmq2001@gmail.com>>
|
|
595
|
+
* [PoojaDurgad](https://github.com/PoojaDurgad) -
|
|
596
|
+
**Pooja D P** <<Pooja.D.P@ibm.com>> (she/her)
|
|
593
597
|
* [princejwesley](https://github.com/princejwesley) -
|
|
594
598
|
**Prince John Wesley** <<princejohnwesley@gmail.com>>
|
|
595
599
|
* [psmarshall](https://github.com/psmarshall) -
|
|
@@ -662,6 +666,8 @@ maintaining the Node.js project.
|
|
|
662
666
|
|
|
663
667
|
* [Ayase-252](https://github.com/Ayase-252) -
|
|
664
668
|
**Qingyu Deng** <<i@ayase-lab.com>>
|
|
669
|
+
* [bmuenzenmeyer](https://github.com/bmuenzenmeyer) -
|
|
670
|
+
**Brian Muenzenmeyer** <<brian.muenzenmeyer@gmail.com>> (he/him)
|
|
665
671
|
* [daeyeon](https://github.com/daeyeon) -
|
|
666
672
|
**Daeyeon Jeong** <<daeyeon.dev@gmail.com>> (he/him)
|
|
667
673
|
* [F3n67u](https://github.com/F3n67u) -
|
|
@@ -687,6 +693,9 @@ maintaining the Node.js project.
|
|
|
687
693
|
* [VoltrexMaster](https://github.com/VoltrexMaster) -
|
|
688
694
|
**Mohammed Keyvanzadeh** <<mohammadkeyvanzade94@gmail.com>> (he/him)
|
|
689
695
|
|
|
696
|
+
Triagers follow the [Triage Guide](./doc/contributing/issues.md#triaging-a-bug-report) when
|
|
697
|
+
responding to new issues.
|
|
698
|
+
|
|
690
699
|
### Release keys
|
|
691
700
|
|
|
692
701
|
Primary GPG keys for Node.js Releasers (some Releasers sign with subkeys):
|
|
@@ -779,6 +788,12 @@ releases on a rotation basis as outlined in the
|
|
|
779
788
|
* [vdeturckheim](https://github.com/vdeturckheim) -
|
|
780
789
|
**Vladimir de Turckheim** <<vlad2t@hotmail.com>> (he/him)
|
|
781
790
|
* NearForm
|
|
791
|
+
* [RafaelGSS](https://github.com/RafaelGSS) -
|
|
792
|
+
**Rafael Gonzaga** <<rafael.nunu@hotmail.com>> (he/him)
|
|
793
|
+
* NodeSource
|
|
794
|
+
* [juanarbol](https://github.com/juanarbol) -
|
|
795
|
+
**Juan José Arboleda** <<soyjuanarbol@gmail.com>> (he/him)
|
|
796
|
+
* Platformatic
|
|
782
797
|
* [mcollina](https://github.com/mcollina) -
|
|
783
798
|
**Matteo Collina** <<matteo.collina@gmail.com>> (he/him)
|
|
784
799
|
* Red Hat and IBM
|
package/bin/node
CHANGED
|
Binary file
|
package/include/node/common.gypi
CHANGED
package/include/node/config.gypi
CHANGED
|
@@ -12,12 +12,12 @@
|
|
|
12
12
|
'force_dynamic_crt': 0,
|
|
13
13
|
'gas_version': '2.30',
|
|
14
14
|
'host_arch': 'arm64',
|
|
15
|
-
'icu_data_in': '../../deps/icu-tmp/
|
|
15
|
+
'icu_data_in': '../../deps/icu-tmp/icudt72l.dat',
|
|
16
16
|
'icu_endianness': 'l',
|
|
17
17
|
'icu_gyp_path': 'tools/icu/icu-generic.gyp',
|
|
18
18
|
'icu_path': 'deps/icu-small',
|
|
19
19
|
'icu_small': 'false',
|
|
20
|
-
'icu_ver_major': '
|
|
20
|
+
'icu_ver_major': '72',
|
|
21
21
|
'is_debug': 0,
|
|
22
22
|
'libdir': 'lib',
|
|
23
23
|
'llvm_version': '0.0',
|
|
@@ -132,6 +132,7 @@
|
|
|
132
132
|
'lib/internal/fs/dir.js',
|
|
133
133
|
'lib/internal/fs/promises.js',
|
|
134
134
|
'lib/internal/fs/read_file_context.js',
|
|
135
|
+
'lib/internal/fs/recursive_watch.js',
|
|
135
136
|
'lib/internal/fs/rimraf.js',
|
|
136
137
|
'lib/internal/fs/streams.js',
|
|
137
138
|
'lib/internal/fs/sync_write_stream.js',
|
|
@@ -161,6 +162,7 @@
|
|
|
161
162
|
'lib/internal/main/test_runner.js',
|
|
162
163
|
'lib/internal/main/watch_mode.js',
|
|
163
164
|
'lib/internal/main/worker_thread.js',
|
|
165
|
+
'lib/internal/mime.js',
|
|
164
166
|
'lib/internal/modules/cjs/helpers.js',
|
|
165
167
|
'lib/internal/modules/cjs/loader.js',
|
|
166
168
|
'lib/internal/modules/esm/assert.js',
|
|
@@ -247,6 +249,7 @@
|
|
|
247
249
|
'lib/internal/test/binding.js',
|
|
248
250
|
'lib/internal/test/transfer.js',
|
|
249
251
|
'lib/internal/test_runner/harness.js',
|
|
252
|
+
'lib/internal/test_runner/mock.js',
|
|
250
253
|
'lib/internal/test_runner/runner.js',
|
|
251
254
|
'lib/internal/test_runner/tap_stream.js',
|
|
252
255
|
'lib/internal/test_runner/test.js',
|
|
@@ -271,6 +274,7 @@
|
|
|
271
274
|
'lib/internal/v8_prof_polyfill.js',
|
|
272
275
|
'lib/internal/v8_prof_processor.js',
|
|
273
276
|
'lib/internal/validators.js',
|
|
277
|
+
'lib/internal/vm.js',
|
|
274
278
|
'lib/internal/vm/module.js',
|
|
275
279
|
'lib/internal/wasm_web_api.js',
|
|
276
280
|
'lib/internal/watch_mode/files_watcher.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()'
|
package/include/node/node.h
CHANGED
|
@@ -228,6 +228,8 @@ class MultiIsolatePlatform;
|
|
|
228
228
|
class InitializationResultImpl;
|
|
229
229
|
|
|
230
230
|
namespace ProcessFlags {
|
|
231
|
+
// TODO(addaleax): Switch to uint32_t to match std::atomic<uint32_t>
|
|
232
|
+
// init_process_flags in node.cc
|
|
231
233
|
enum Flags : uint64_t {
|
|
232
234
|
kNoFlags = 0,
|
|
233
235
|
// Enable stdio inheritance, which is disabled by default.
|
|
@@ -349,10 +351,25 @@ inline std::unique_ptr<InitializationResult> InitializeOncePerProcess(
|
|
|
349
351
|
}
|
|
350
352
|
|
|
351
353
|
enum OptionEnvvarSettings {
|
|
352
|
-
|
|
353
|
-
|
|
354
|
+
// Allow the options to be set via the environment variable, like
|
|
355
|
+
// `NODE_OPTIONS`.
|
|
356
|
+
kAllowedInEnvvar = 0,
|
|
357
|
+
// Disallow the options to be set via the environment variable, like
|
|
358
|
+
// `NODE_OPTIONS`.
|
|
359
|
+
kDisallowedInEnvvar = 1,
|
|
360
|
+
// Deprecated, use kAllowedInEnvvar instead.
|
|
361
|
+
kAllowedInEnvironment = kAllowedInEnvvar,
|
|
362
|
+
// Deprecated, use kDisallowedInEnvvar instead.
|
|
363
|
+
kDisallowedInEnvironment = kDisallowedInEnvvar,
|
|
354
364
|
};
|
|
355
365
|
|
|
366
|
+
// Process the arguments and set up the per-process options.
|
|
367
|
+
// If the `settings` is set as OptionEnvvarSettings::kAllowedInEnvvar, the
|
|
368
|
+
// options that are allowed in the environment variable are processed. Options
|
|
369
|
+
// that are disallowed to be set via environment variable are processed as
|
|
370
|
+
// errors.
|
|
371
|
+
// Otherwise all the options that are disallowed (and those are allowed) to be
|
|
372
|
+
// set via environment variable are processed.
|
|
356
373
|
NODE_EXTERN int ProcessGlobalArgs(std::vector<std::string>* args,
|
|
357
374
|
std::vector<std::string>* exec_args,
|
|
358
375
|
std::vector<std::string>* errors,
|
package/include/node/node_api.h
CHANGED
|
@@ -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,8 +23,8 @@
|
|
|
23
23
|
#define SRC_NODE_VERSION_H_
|
|
24
24
|
|
|
25
25
|
#define NODE_MAJOR_VERSION 19
|
|
26
|
-
#define NODE_MINOR_VERSION
|
|
27
|
-
#define NODE_PATCH_VERSION
|
|
26
|
+
#define NODE_MINOR_VERSION 1
|
|
27
|
+
#define NODE_PATCH_VERSION 0
|
|
28
28
|
|
|
29
29
|
#define NODE_VERSION_IS_LTS 0
|
|
30
30
|
#define NODE_VERSION_LTS_CODENAME ""
|
package/include/node/uv/win.h
CHANGED
|
@@ -263,21 +263,14 @@ typedef union {
|
|
|
263
263
|
} unused_; /* TODO: retained for ABI compatibility; remove me in v2.x. */
|
|
264
264
|
} uv_cond_t;
|
|
265
265
|
|
|
266
|
-
typedef
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
SRWLOCK unused_;
|
|
275
|
-
} unused1_;
|
|
276
|
-
/* TODO: remove me in v2.x. */
|
|
277
|
-
struct {
|
|
278
|
-
uv_mutex_t unused1_;
|
|
279
|
-
uv_mutex_t unused2_;
|
|
280
|
-
} unused2_;
|
|
266
|
+
typedef struct {
|
|
267
|
+
SRWLOCK read_write_lock_;
|
|
268
|
+
/* TODO: retained for ABI compatibility; remove me in v2.x */
|
|
269
|
+
#ifdef _WIN64
|
|
270
|
+
unsigned char padding_[72];
|
|
271
|
+
#else
|
|
272
|
+
unsigned char padding_[44];
|
|
273
|
+
#endif
|
|
281
274
|
} uv_rwlock_t;
|
|
282
275
|
|
|
283
276
|
typedef struct {
|
|
@@ -384,6 +377,12 @@ typedef struct {
|
|
|
384
377
|
OVERLAPPED overlapped; \
|
|
385
378
|
size_t queued_bytes; \
|
|
386
379
|
} io; \
|
|
380
|
+
/* in v2, we can move these to the UV_CONNECT_PRIVATE_FIELDS */ \
|
|
381
|
+
struct { \
|
|
382
|
+
ULONG_PTR result; /* overlapped.Internal is reused to hold the result */\
|
|
383
|
+
HANDLE pipeHandle; \
|
|
384
|
+
DWORD duplex_flags; \
|
|
385
|
+
} connect; \
|
|
387
386
|
} u; \
|
|
388
387
|
struct uv_req_s* next_req;
|
|
389
388
|
|
package/include/node/uv.h
CHANGED
|
@@ -1133,8 +1133,8 @@ struct uv_interface_address_s {
|
|
|
1133
1133
|
|
|
1134
1134
|
struct uv_passwd_s {
|
|
1135
1135
|
char* username;
|
|
1136
|
-
long uid;
|
|
1137
|
-
long gid;
|
|
1136
|
+
unsigned long uid;
|
|
1137
|
+
unsigned long gid;
|
|
1138
1138
|
char* shell;
|
|
1139
1139
|
char* homedir;
|
|
1140
1140
|
};
|
|
@@ -1242,6 +1242,7 @@ UV_EXTERN uv_pid_t uv_os_getppid(void);
|
|
|
1242
1242
|
UV_EXTERN int uv_os_getpriority(uv_pid_t pid, int* priority);
|
|
1243
1243
|
UV_EXTERN int uv_os_setpriority(uv_pid_t pid, int priority);
|
|
1244
1244
|
|
|
1245
|
+
UV_EXTERN unsigned int uv_available_parallelism(void);
|
|
1245
1246
|
UV_EXTERN int uv_cpu_info(uv_cpu_info_t** cpu_infos, int* count);
|
|
1246
1247
|
UV_EXTERN void uv_free_cpu_info(uv_cpu_info_t* cpu_infos, int count);
|
|
1247
1248
|
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
#define V8_MAJOR_VERSION 10
|
|
12
12
|
#define V8_MINOR_VERSION 7
|
|
13
13
|
#define V8_BUILD_NUMBER 193
|
|
14
|
-
#define V8_PATCH_LEVEL
|
|
14
|
+
#define V8_PATCH_LEVEL 20
|
|
15
15
|
|
|
16
16
|
// Use 1 for candidates and 0 otherwise.
|
|
17
17
|
// (Boolean macro values are not supported by all preprocessors.)
|
package/include/node/v8config.h
CHANGED
|
@@ -703,6 +703,8 @@ V8 shared library set USING_V8_SHARED.
|
|
|
703
703
|
#define V8_TARGET_ARCH_ARM 1
|
|
704
704
|
#elif defined(__mips64)
|
|
705
705
|
#define V8_TARGET_ARCH_MIPS64 1
|
|
706
|
+
#elif defined(__loongarch64)
|
|
707
|
+
#define V8_TARGET_ARCH_LOONG64 1
|
|
706
708
|
#elif defined(_ARCH_PPC64)
|
|
707
709
|
#define V8_TARGET_ARCH_PPC64 1
|
|
708
710
|
#elif defined(_ARCH_PPC)
|
package/package.json
CHANGED
package/share/man/man1/node.1
CHANGED
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) 1995, 1999
|
|
3
|
-
* Berkeley Software Design, Inc. All rights reserved.
|
|
4
|
-
*
|
|
5
|
-
* Redistribution and use in source and binary forms, with or without
|
|
6
|
-
* modification, are permitted provided that the following conditions
|
|
7
|
-
* are met:
|
|
8
|
-
* 1. Redistributions of source code must retain the above copyright
|
|
9
|
-
* notice, this list of conditions and the following disclaimer.
|
|
10
|
-
*
|
|
11
|
-
* THIS SOFTWARE IS PROVIDED BY Berkeley Software Design, Inc. ``AS IS'' AND
|
|
12
|
-
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
13
|
-
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
14
|
-
* ARE DISCLAIMED. IN NO EVENT SHALL Berkeley Software Design, Inc. BE LIABLE
|
|
15
|
-
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
16
|
-
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
17
|
-
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
18
|
-
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
19
|
-
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
20
|
-
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
21
|
-
* SUCH DAMAGE.
|
|
22
|
-
*
|
|
23
|
-
* BSDI ifaddrs.h,v 2.5 2000/02/23 14:51:59 dab Exp
|
|
24
|
-
*/
|
|
25
|
-
|
|
26
|
-
#ifndef _IFADDRS_H_
|
|
27
|
-
#define _IFADDRS_H_
|
|
28
|
-
|
|
29
|
-
struct ifaddrs {
|
|
30
|
-
struct ifaddrs *ifa_next;
|
|
31
|
-
char *ifa_name;
|
|
32
|
-
unsigned int ifa_flags;
|
|
33
|
-
struct sockaddr *ifa_addr;
|
|
34
|
-
struct sockaddr *ifa_netmask;
|
|
35
|
-
struct sockaddr *ifa_dstaddr;
|
|
36
|
-
void *ifa_data;
|
|
37
|
-
};
|
|
38
|
-
|
|
39
|
-
/*
|
|
40
|
-
* This may have been defined in <net/if.h>. Note that if <net/if.h> is
|
|
41
|
-
* to be included it must be included before this header file.
|
|
42
|
-
*/
|
|
43
|
-
#ifndef ifa_broadaddr
|
|
44
|
-
#define ifa_broadaddr ifa_dstaddr /* broadcast address interface */
|
|
45
|
-
#endif
|
|
46
|
-
|
|
47
|
-
#include <sys/cdefs.h>
|
|
48
|
-
|
|
49
|
-
__BEGIN_DECLS
|
|
50
|
-
extern int getifaddrs(struct ifaddrs **ifap);
|
|
51
|
-
extern void freeifaddrs(struct ifaddrs *ifa);
|
|
52
|
-
__END_DECLS
|
|
53
|
-
|
|
54
|
-
#endif
|