node-aix-ppc64 23.3.0 → 23.4.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 +185 -3
- package/README.md +2 -2
- package/bin/node +0 -0
- package/include/node/config.gypi +3 -0
- package/include/node/node.exp +43 -37
- package/include/node/node_version.h +1 -1
- package/package.json +1 -1
- package/share/man/man1/node.1 +3 -11
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
</tr>
|
|
9
9
|
<tr>
|
|
10
10
|
<td>
|
|
11
|
+
<a href="#23.4.0">23.4.0</a><br/>
|
|
11
12
|
<a href="#23.3.0">23.3.0</a><br/>
|
|
12
13
|
<a href="#23.2.0">23.2.0</a><br/>
|
|
13
14
|
<a href="#23.1.0">23.1.0</a><br/>
|
|
@@ -41,6 +42,187 @@
|
|
|
41
42
|
* [io.js](CHANGELOG_IOJS.md)
|
|
42
43
|
* [Archive](CHANGELOG_ARCHIVE.md)
|
|
43
44
|
|
|
45
|
+
<a id="23.4.0"></a>
|
|
46
|
+
|
|
47
|
+
## 2024-12-10, Version 23.4.0 (Current), @aduh95 prepared by @targos
|
|
48
|
+
|
|
49
|
+
### Notable Changes
|
|
50
|
+
|
|
51
|
+
#### Introducing experimental `assert.partialDeepStrictEqual`
|
|
52
|
+
|
|
53
|
+
Sometimes, when writing test, we want to validate that some specific properties
|
|
54
|
+
are present, and the mere presence of additional keys are not exactly relevant
|
|
55
|
+
for that specific test. For this use case, we can now use
|
|
56
|
+
`assert.partialDeepStrictEqual`, which should be familiar to those already using
|
|
57
|
+
`assert.deepStrictEqual`, with the main difference that it does not require all
|
|
58
|
+
properties in the `actual` parameter to be present in the `expected` parameter.
|
|
59
|
+
|
|
60
|
+
Here are a few examples of usage:
|
|
61
|
+
|
|
62
|
+
```js
|
|
63
|
+
assert.partialDeepStrictEqual(
|
|
64
|
+
{ a: 1, b: 2, c: 3 },
|
|
65
|
+
{ a: 1, b: 2 },
|
|
66
|
+
);
|
|
67
|
+
|
|
68
|
+
assert.partialDeepStrictEqual(
|
|
69
|
+
[1, 2, 3, 4],
|
|
70
|
+
[2, 3],
|
|
71
|
+
);
|
|
72
|
+
|
|
73
|
+
assert.partialDeepStrictEqual(
|
|
74
|
+
{ a: { b: { c: 1, d: 2 } }, e: 3 },
|
|
75
|
+
{ a: { b: { c: 1 } } },
|
|
76
|
+
);
|
|
77
|
+
|
|
78
|
+
assert.partialDeepStrictEqual(
|
|
79
|
+
{ a: { b: { c: 1, d: 2 } }, e: 3 },
|
|
80
|
+
{ a: { b: { c: 1 } } },
|
|
81
|
+
);
|
|
82
|
+
|
|
83
|
+
assert.partialDeepStrictEqual(
|
|
84
|
+
new Set([{ a: 1 }, { b: 1 }]),
|
|
85
|
+
new Set([{ a: 1 }]),
|
|
86
|
+
);
|
|
87
|
+
|
|
88
|
+
assert.partialDeepStrictEqual(
|
|
89
|
+
{ a: new Set([{ a: 1 }, { b: 1 }]), b: new Map(), c: [1, 2, 3] },
|
|
90
|
+
{ a: new Set([{ a: 1 }]), c: [2] },
|
|
91
|
+
);
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
Contributed by Giovanni Bucci in [#54630](https://github.com/nodejs/node/pull/54630).
|
|
95
|
+
|
|
96
|
+
#### Other notable changes
|
|
97
|
+
|
|
98
|
+
* \[[`816d37a187`](https://github.com/nodejs/node/commit/816d37a187)] - **(SEMVER-MINOR)** **cli**: implement `--trace-env` and `--trace-env-[js|native]-stack` (Joyee Cheung) [#55604](https://github.com/nodejs/node/pull/55604)
|
|
99
|
+
* \[[`59d6891872`](https://github.com/nodejs/node/commit/59d6891872)] - **doc**: add LJHarb to collaborators (Jordan Harband) [#56132](https://github.com/nodejs/node/pull/56132)
|
|
100
|
+
* \[[`565b04a7be`](https://github.com/nodejs/node/commit/565b04a7be)] - **(SEMVER-MINOR)** **net**: add `BlockList.isBlockList(value)` (James M Snell) [#56078](https://github.com/nodejs/node/pull/56078)
|
|
101
|
+
* \[[`c9698ed6a4`](https://github.com/nodejs/node/commit/c9698ed6a4)] - **(SEMVER-MINOR)** **net**: support `blockList` in `net.connect` (theanarkh) [#56075](https://github.com/nodejs/node/pull/56075)
|
|
102
|
+
* \[[`30d604180d`](https://github.com/nodejs/node/commit/30d604180d)] - **(SEMVER-MINOR)** **net**: support `blockList` in `net.Server` (theanarkh) [#56079](https://github.com/nodejs/node/pull/56079)
|
|
103
|
+
* \[[`9fba5e1df1`](https://github.com/nodejs/node/commit/9fba5e1df1)] - **(SEMVER-MINOR)** **net**: add `SocketAddress.parse` (James M Snell) [#56076](https://github.com/nodejs/node/pull/56076)
|
|
104
|
+
* \[[`4cdb03201e`](https://github.com/nodejs/node/commit/4cdb03201e)] - **(SEMVER-MINOR)** **process**: deprecate `features.{ipv6,uv}` and `features.tls_*` (René) [#55545](https://github.com/nodejs/node/pull/55545)
|
|
105
|
+
* \[[`efb9f05f59`](https://github.com/nodejs/node/commit/efb9f05f59)] - **(SEMVER-MINOR)** **sqlite**: unflag `node:sqlite` module (Colin Ihrig) [#55890](https://github.com/nodejs/node/pull/55890)
|
|
106
|
+
* \[[`d777d4a52d`](https://github.com/nodejs/node/commit/d777d4a52d)] - **(SEMVER-MINOR)** **sqlite**: add `StatementSync.prototype.iterate` method (tpoisseau) [#54213](https://github.com/nodejs/node/pull/54213)
|
|
107
|
+
|
|
108
|
+
### Commits
|
|
109
|
+
|
|
110
|
+
* \[[`5b0ce376a2`](https://github.com/nodejs/node/commit/5b0ce376a2)] - **assert**: optimize partial comparison of two `Set`s (Antoine du Hamel) [#55970](https://github.com/nodejs/node/pull/55970)
|
|
111
|
+
* \[[`a4f57f0293`](https://github.com/nodejs/node/commit/a4f57f0293)] - **(SEMVER-MINOR)** **assert**: add partialDeepStrictEqual (Giovanni Bucci) [#54630](https://github.com/nodejs/node/pull/54630)
|
|
112
|
+
* \[[`1b81a7d003`](https://github.com/nodejs/node/commit/1b81a7d003)] - **build**: allow overriding clang usage (Shelley Vohr) [#56016](https://github.com/nodejs/node/pull/56016)
|
|
113
|
+
* \[[`39c901307f`](https://github.com/nodejs/node/commit/39c901307f)] - **build**: remove defaults for create-release-proposal (Rafael Gonzaga) [#56042](https://github.com/nodejs/node/pull/56042)
|
|
114
|
+
* \[[`7133c0459f`](https://github.com/nodejs/node/commit/7133c0459f)] - **build**: avoid compiling with VS v17.12 (Stefan Stojanovic) [#55930](https://github.com/nodejs/node/pull/55930)
|
|
115
|
+
* \[[`ce53f1689f`](https://github.com/nodejs/node/commit/ce53f1689f)] - **build**: set node\_arch to target\_cpu in GN (Shelley Vohr) [#55967](https://github.com/nodejs/node/pull/55967)
|
|
116
|
+
* \[[`2023b09d27`](https://github.com/nodejs/node/commit/2023b09d27)] - **build**: add create release proposal action (Rafael Gonzaga) [#55690](https://github.com/nodejs/node/pull/55690)
|
|
117
|
+
* \[[`26ec99634c`](https://github.com/nodejs/node/commit/26ec99634c)] - **build**: use variable for crypto dep path (Shelley Vohr) [#55928](https://github.com/nodejs/node/pull/55928)
|
|
118
|
+
* \[[`f48e289580`](https://github.com/nodejs/node/commit/f48e289580)] - **build**: fix GN build for sqlite (Cheng) [#55912](https://github.com/nodejs/node/pull/55912)
|
|
119
|
+
* \[[`fffabca6b8`](https://github.com/nodejs/node/commit/fffabca6b8)] - **build**: compile bundled simdutf conditionally (Jakub Jirutka) [#55886](https://github.com/nodejs/node/pull/55886)
|
|
120
|
+
* \[[`d8eb83c5c5`](https://github.com/nodejs/node/commit/d8eb83c5c5)] - **build**: compile bundled simdjson conditionally (Jakub Jirutka) [#55886](https://github.com/nodejs/node/pull/55886)
|
|
121
|
+
* \[[`83e02dc482`](https://github.com/nodejs/node/commit/83e02dc482)] - **build**: compile bundled ada conditionally (Jakub Jirutka) [#55886](https://github.com/nodejs/node/pull/55886)
|
|
122
|
+
* \[[`816d37a187`](https://github.com/nodejs/node/commit/816d37a187)] - **(SEMVER-MINOR)** **cli**: implement --trace-env and --trace-env-\[js|native]-stack (Joyee Cheung) [#55604](https://github.com/nodejs/node/pull/55604)
|
|
123
|
+
* \[[`53c0f2f186`](https://github.com/nodejs/node/commit/53c0f2f186)] - **crypto**: ensure CryptoKey usages and algorithm are cached objects (Filip Skokan) [#56108](https://github.com/nodejs/node/pull/56108)
|
|
124
|
+
* \[[`93d36bf1c8`](https://github.com/nodejs/node/commit/93d36bf1c8)] - **crypto**: allow non-multiple of 8 in SubtleCrypto.deriveBits (Filip Skokan) [#55296](https://github.com/nodejs/node/pull/55296)
|
|
125
|
+
* \[[`8680b8030c`](https://github.com/nodejs/node/commit/8680b8030c)] - **deps**: update ngtcp2 to 1.9.1 (Node.js GitHub Bot) [#56095](https://github.com/nodejs/node/pull/56095)
|
|
126
|
+
* \[[`78a2a6ca1e`](https://github.com/nodejs/node/commit/78a2a6ca1e)] - **deps**: upgrade npm to 10.9.2 (npm team) [#56135](https://github.com/nodejs/node/pull/56135)
|
|
127
|
+
* \[[`52dfe5af4b`](https://github.com/nodejs/node/commit/52dfe5af4b)] - **deps**: update sqlite to 3.47.1 (Node.js GitHub Bot) [#56094](https://github.com/nodejs/node/pull/56094)
|
|
128
|
+
* \[[`3852b5c8d1`](https://github.com/nodejs/node/commit/3852b5c8d1)] - **deps**: update zlib to 1.3.0.1-motley-82a5fec (Node.js GitHub Bot) [#55980](https://github.com/nodejs/node/pull/55980)
|
|
129
|
+
* \[[`f99f95f62f`](https://github.com/nodejs/node/commit/f99f95f62f)] - **deps**: update corepack to 0.30.0 (Node.js GitHub Bot) [#55977](https://github.com/nodejs/node/pull/55977)
|
|
130
|
+
* \[[`96e846de89`](https://github.com/nodejs/node/commit/96e846de89)] - **deps**: update ngtcp2 to 1.9.0 (Node.js GitHub Bot) [#55975](https://github.com/nodejs/node/pull/55975)
|
|
131
|
+
* \[[`d180a8aedb`](https://github.com/nodejs/node/commit/d180a8aedb)] - **deps**: update simdutf to 5.6.3 (Node.js GitHub Bot) [#55973](https://github.com/nodejs/node/pull/55973)
|
|
132
|
+
* \[[`288416a764`](https://github.com/nodejs/node/commit/288416a764)] - **deps**: upgrade npm to 10.9.1 (npm team) [#55951](https://github.com/nodejs/node/pull/55951)
|
|
133
|
+
* \[[`cf3f7ac512`](https://github.com/nodejs/node/commit/cf3f7ac512)] - **deps**: update zlib to 1.3.0.1-motley-7e2e4d7 (Node.js GitHub Bot) [#54432](https://github.com/nodejs/node/pull/54432)
|
|
134
|
+
* \[[`7768b3d054`](https://github.com/nodejs/node/commit/7768b3d054)] - **deps**: update simdjson to 3.10.1 (Node.js GitHub Bot) [#54678](https://github.com/nodejs/node/pull/54678)
|
|
135
|
+
* \[[`9c6103833b`](https://github.com/nodejs/node/commit/9c6103833b)] - **deps**: update simdutf to 5.6.2 (Node.js GitHub Bot) [#55889](https://github.com/nodejs/node/pull/55889)
|
|
136
|
+
* \[[`7b133d6220`](https://github.com/nodejs/node/commit/7b133d6220)] - **dgram**: check udp buffer size to avoid fd leak (theanarkh) [#56084](https://github.com/nodejs/node/pull/56084)
|
|
137
|
+
* \[[`e4529b8179`](https://github.com/nodejs/node/commit/e4529b8179)] - **doc**: add report version and history section (Chengzhong Wu) [#56130](https://github.com/nodejs/node/pull/56130)
|
|
138
|
+
* \[[`718625a03a`](https://github.com/nodejs/node/commit/718625a03a)] - **doc**: mention `-a` flag for the release script (Ruy Adorno) [#56124](https://github.com/nodejs/node/pull/56124)
|
|
139
|
+
* \[[`59d6891872`](https://github.com/nodejs/node/commit/59d6891872)] - **doc**: add LJHarb to collaborators (Jordan Harband) [#56132](https://github.com/nodejs/node/pull/56132)
|
|
140
|
+
* \[[`d7ed32404a`](https://github.com/nodejs/node/commit/d7ed32404a)] - **doc**: add create-release-action to process (Rafael Gonzaga) [#55993](https://github.com/nodejs/node/pull/55993)
|
|
141
|
+
* \[[`3b4ef93371`](https://github.com/nodejs/node/commit/3b4ef93371)] - **doc**: rename file to advocacy-ambassador-program.md (Tobias Nießen) [#56046](https://github.com/nodejs/node/pull/56046)
|
|
142
|
+
* \[[`59e4087d5e`](https://github.com/nodejs/node/commit/59e4087d5e)] - **doc**: add added tag and fix typo sqlite.md (Bart Louwers) [#56012](https://github.com/nodejs/node/pull/56012)
|
|
143
|
+
* \[[`a1b26608ae`](https://github.com/nodejs/node/commit/a1b26608ae)] - **doc**: remove unused import from sample code (Blended Bram) [#55570](https://github.com/nodejs/node/pull/55570)
|
|
144
|
+
* \[[`498f44ad73`](https://github.com/nodejs/node/commit/498f44ad73)] - **doc**: add FAQ to releases section (Rafael Gonzaga) [#55992](https://github.com/nodejs/node/pull/55992)
|
|
145
|
+
* \[[`d48348afaa`](https://github.com/nodejs/node/commit/d48348afaa)] - **doc**: move history entry to class description (Luigi Pinca) [#55991](https://github.com/nodejs/node/pull/55991)
|
|
146
|
+
* \[[`96926ce13c`](https://github.com/nodejs/node/commit/96926ce13c)] - **doc**: add history entry for textEncoder.encodeInto() (Luigi Pinca) [#55990](https://github.com/nodejs/node/pull/55990)
|
|
147
|
+
* \[[`e92d51d511`](https://github.com/nodejs/node/commit/e92d51d511)] - **doc**: improve GN build documentation a bit (Shelley Vohr) [#55968](https://github.com/nodejs/node/pull/55968)
|
|
148
|
+
* \[[`6be3824d6f`](https://github.com/nodejs/node/commit/6be3824d6f)] - **doc**: fix deprecation codes (Filip Skokan) [#56018](https://github.com/nodejs/node/pull/56018)
|
|
149
|
+
* \[[`fa2b35d28d`](https://github.com/nodejs/node/commit/fa2b35d28d)] - **doc**: remove confusing and outdated sentence (Luigi Pinca) [#55988](https://github.com/nodejs/node/pull/55988)
|
|
150
|
+
* \[[`baed2763df`](https://github.com/nodejs/node/commit/baed2763df)] - **doc**: deprecate passing invalid types in `fs.existsSync` (Carlos Espa) [#55892](https://github.com/nodejs/node/pull/55892)
|
|
151
|
+
* \[[`a3f7db6b6d`](https://github.com/nodejs/node/commit/a3f7db6b6d)] - **doc**: add doc for PerformanceObserver.takeRecords() (skyclouds2001) [#55786](https://github.com/nodejs/node/pull/55786)
|
|
152
|
+
* \[[`770572423b`](https://github.com/nodejs/node/commit/770572423b)] - **doc**: add vetted courses to the ambassador benefits (Matteo Collina) [#55934](https://github.com/nodejs/node/pull/55934)
|
|
153
|
+
* \[[`98f8f4a8a9`](https://github.com/nodejs/node/commit/98f8f4a8a9)] - **doc**: order `node:crypto` APIs alphabetically (Julian Gassner) [#55831](https://github.com/nodejs/node/pull/55831)
|
|
154
|
+
* \[[`1e0decb44c`](https://github.com/nodejs/node/commit/1e0decb44c)] - **doc**: doc how to add message for promotion (Michael Dawson) [#55843](https://github.com/nodejs/node/pull/55843)
|
|
155
|
+
* \[[`ff48c29724`](https://github.com/nodejs/node/commit/ff48c29724)] - **doc**: add esm example for zlib (Leonardo Peixoto) [#55946](https://github.com/nodejs/node/pull/55946)
|
|
156
|
+
* \[[`ccc5a6d552`](https://github.com/nodejs/node/commit/ccc5a6d552)] - **doc**: document approach for building wasm in deps (Michael Dawson) [#55940](https://github.com/nodejs/node/pull/55940)
|
|
157
|
+
* \[[`c8bb8a6ac5`](https://github.com/nodejs/node/commit/c8bb8a6ac5)] - **doc**: fix Node.js 23 column in CHANGELOG.md (Richard Lau) [#55935](https://github.com/nodejs/node/pull/55935)
|
|
158
|
+
* \[[`9d078802ad`](https://github.com/nodejs/node/commit/9d078802ad)] - **doc**: remove RedYetiDev from triagers team (Aviv Keller) [#55947](https://github.com/nodejs/node/pull/55947)
|
|
159
|
+
* \[[`5a2a757119`](https://github.com/nodejs/node/commit/5a2a757119)] - **doc**: add esm examples to node:timers (Alfredo González) [#55857](https://github.com/nodejs/node/pull/55857)
|
|
160
|
+
* \[[`f711a48e15`](https://github.com/nodejs/node/commit/f711a48e15)] - **doc**: fix relative path mention in --allow-fs (Rafael Gonzaga) [#55791](https://github.com/nodejs/node/pull/55791)
|
|
161
|
+
* \[[`219f5f2627`](https://github.com/nodejs/node/commit/219f5f2627)] - **doc**: include git node release --promote to steps (Rafael Gonzaga) [#55835](https://github.com/nodejs/node/pull/55835)
|
|
162
|
+
* \[[`f9d25ed3e4`](https://github.com/nodejs/node/commit/f9d25ed3e4)] - **doc**: add history entry for import assertion removal (Antoine du Hamel) [#55883](https://github.com/nodejs/node/pull/55883)
|
|
163
|
+
* \[[`efb9f05f59`](https://github.com/nodejs/node/commit/efb9f05f59)] - **(SEMVER-MINOR)** **doc,lib,src,test**: unflag sqlite module (Colin Ihrig) [#55890](https://github.com/nodejs/node/pull/55890)
|
|
164
|
+
* \[[`a37e5fe5f8`](https://github.com/nodejs/node/commit/a37e5fe5f8)] - **fs**: lazily load ReadFileContext (Gürgün Dayıoğlu) [#55998](https://github.com/nodejs/node/pull/55998)
|
|
165
|
+
* \[[`9289374248`](https://github.com/nodejs/node/commit/9289374248)] - **http2**: fix memory leak caused by premature listener removing (ywave620) [#55966](https://github.com/nodejs/node/pull/55966)
|
|
166
|
+
* \[[`49af1c33ac`](https://github.com/nodejs/node/commit/49af1c33ac)] - **lib**: add validation for options in compileFunction (Taejin Kim) [#56023](https://github.com/nodejs/node/pull/56023)
|
|
167
|
+
* \[[`8faf91846b`](https://github.com/nodejs/node/commit/8faf91846b)] - **lib**: fix `fs.readdir` recursive async (Rafael Gonzaga) [#56041](https://github.com/nodejs/node/pull/56041)
|
|
168
|
+
* \[[`a2382303d7`](https://github.com/nodejs/node/commit/a2382303d7)] - **lib**: refactor code to improve readability (Pietro Marchini) [#55995](https://github.com/nodejs/node/pull/55995)
|
|
169
|
+
* \[[`30f26ba254`](https://github.com/nodejs/node/commit/30f26ba254)] - **lib**: avoid excluding symlinks in recursive fs.readdir with filetypes (Juan José) [#55714](https://github.com/nodejs/node/pull/55714)
|
|
170
|
+
* \[[`9b272ae339`](https://github.com/nodejs/node/commit/9b272ae339)] - **meta**: bump github/codeql-action from 3.27.0 to 3.27.5 (dependabot\[bot]) [#56103](https://github.com/nodejs/node/pull/56103)
|
|
171
|
+
* \[[`fb0e6ca68b`](https://github.com/nodejs/node/commit/fb0e6ca68b)] - **meta**: bump actions/checkout from 4.1.7 to 4.2.2 (dependabot\[bot]) [#56102](https://github.com/nodejs/node/pull/56102)
|
|
172
|
+
* \[[`0ab611513c`](https://github.com/nodejs/node/commit/0ab611513c)] - **meta**: bump step-security/harden-runner from 2.10.1 to 2.10.2 (dependabot\[bot]) [#56101](https://github.com/nodejs/node/pull/56101)
|
|
173
|
+
* \[[`ff4839b8ab`](https://github.com/nodejs/node/commit/ff4839b8ab)] - **meta**: bump actions/setup-node from 4.0.3 to 4.1.0 (dependabot\[bot]) [#56100](https://github.com/nodejs/node/pull/56100)
|
|
174
|
+
* \[[`f262207356`](https://github.com/nodejs/node/commit/f262207356)] - **meta**: add releasers as CODEOWNERS to proposal action (Rafael Gonzaga) [#56043](https://github.com/nodejs/node/pull/56043)
|
|
175
|
+
* \[[`b6005b3fac`](https://github.com/nodejs/node/commit/b6005b3fac)] - **module**: mark evaluation rejection in require(esm) as handled (Joyee Cheung) [#56122](https://github.com/nodejs/node/pull/56122)
|
|
176
|
+
* \[[`b8ab5332a9`](https://github.com/nodejs/node/commit/b8ab5332a9)] - **module**: remove --experimental-default-type (Geoffrey Booth) [#56092](https://github.com/nodejs/node/pull/56092)
|
|
177
|
+
* \[[`4be5047030`](https://github.com/nodejs/node/commit/4be5047030)] - **module**: do not warn when require(esm) comes from node\_modules (Joyee Cheung) [#55960](https://github.com/nodejs/node/pull/55960)
|
|
178
|
+
* \[[`c9698ed6a4`](https://github.com/nodejs/node/commit/c9698ed6a4)] - **(SEMVER-MINOR)** **net**: support blocklist in net.connect (theanarkh) [#56075](https://github.com/nodejs/node/pull/56075)
|
|
179
|
+
* \[[`9fba5e1df1`](https://github.com/nodejs/node/commit/9fba5e1df1)] - **(SEMVER-MINOR)** **net**: add SocketAddress.parse (James M Snell) [#56076](https://github.com/nodejs/node/pull/56076)
|
|
180
|
+
* \[[`565b04a7be`](https://github.com/nodejs/node/commit/565b04a7be)] - **(SEMVER-MINOR)** **net**: add net.BlockList.isBlockList(value) (James M Snell) [#56078](https://github.com/nodejs/node/pull/56078)
|
|
181
|
+
* \[[`30d604180d`](https://github.com/nodejs/node/commit/30d604180d)] - **(SEMVER-MINOR)** **net**: support blocklist for net.Server (theanarkh) [#56079](https://github.com/nodejs/node/pull/56079)
|
|
182
|
+
* \[[`4cdb03201e`](https://github.com/nodejs/node/commit/4cdb03201e)] - **(SEMVER-MINOR)** **process**: deprecate `features.{ipv6,uv}` and `features.tls_*` (René) [#55545](https://github.com/nodejs/node/pull/55545)
|
|
183
|
+
* \[[`d09e57b26d`](https://github.com/nodejs/node/commit/d09e57b26d)] - **quic**: update more QUIC implementation (James M Snell) [#55986](https://github.com/nodejs/node/pull/55986)
|
|
184
|
+
* \[[`1fb30d6e86`](https://github.com/nodejs/node/commit/1fb30d6e86)] - **quic**: multiple updates to quic impl (James M Snell) [#55971](https://github.com/nodejs/node/pull/55971)
|
|
185
|
+
* \[[`9e4f7aa808`](https://github.com/nodejs/node/commit/9e4f7aa808)] - **sqlite**: deps include `sqlite3ext.h` (Alex Yang) [#56010](https://github.com/nodejs/node/pull/56010)
|
|
186
|
+
* \[[`d777d4a52d`](https://github.com/nodejs/node/commit/d777d4a52d)] - **(SEMVER-MINOR)** **sqlite**: add `StatementSync.prototype.iterate` method (tpoisseau) [#54213](https://github.com/nodejs/node/pull/54213)
|
|
187
|
+
* \[[`66451bb9ba`](https://github.com/nodejs/node/commit/66451bb9ba)] - **src**: use spaceship operator in SocketAddress (James M Snell) [#56059](https://github.com/nodejs/node/pull/56059)
|
|
188
|
+
* \[[`ad9ebe417a`](https://github.com/nodejs/node/commit/ad9ebe417a)] - **src**: add missing qualifiers to env.cc (Yagiz Nizipli) [#56062](https://github.com/nodejs/node/pull/56062)
|
|
189
|
+
* \[[`56c4da240d`](https://github.com/nodejs/node/commit/56c4da240d)] - **src**: use std::string\_view for process emit fns (Yagiz Nizipli) [#56086](https://github.com/nodejs/node/pull/56086)
|
|
190
|
+
* \[[`26ab8e9823`](https://github.com/nodejs/node/commit/26ab8e9823)] - **src**: remove dead code in async\_wrap (Gerhard Stöbich) [#56065](https://github.com/nodejs/node/pull/56065)
|
|
191
|
+
* \[[`4dea44e468`](https://github.com/nodejs/node/commit/4dea44e468)] - **src**: avoid copy on getV8FastApiCallCount (Yagiz Nizipli) [#56081](https://github.com/nodejs/node/pull/56081)
|
|
192
|
+
* \[[`b778a4fe46`](https://github.com/nodejs/node/commit/b778a4fe46)] - **src**: fix check fd (theanarkh) [#56000](https://github.com/nodejs/node/pull/56000)
|
|
193
|
+
* \[[`971f5f54df`](https://github.com/nodejs/node/commit/971f5f54df)] - **src**: safely remove the last line from dotenv (Shima Ryuhei) [#55982](https://github.com/nodejs/node/pull/55982)
|
|
194
|
+
* \[[`497a9aea1c`](https://github.com/nodejs/node/commit/497a9aea1c)] - **src**: fix kill signal on Windows (Hüseyin Açacak) [#55514](https://github.com/nodejs/node/pull/55514)
|
|
195
|
+
* \[[`8a935489f9`](https://github.com/nodejs/node/commit/8a935489f9)] - **src,build**: add no user defined deduction guides of CTAD check (Chengzhong Wu) [#56071](https://github.com/nodejs/node/pull/56071)
|
|
196
|
+
* \[[`5edb8d5919`](https://github.com/nodejs/node/commit/5edb8d5919)] - **test**: remove test-fs-utimes flaky designation (Luigi Pinca) [#56052](https://github.com/nodejs/node/pull/56052)
|
|
197
|
+
* \[[`046e642a80`](https://github.com/nodejs/node/commit/046e642a80)] - **test**: ensure `cli.md` is in alphabetical order (Antoine du Hamel) [#56025](https://github.com/nodejs/node/pull/56025)
|
|
198
|
+
* \[[`da354f46cd`](https://github.com/nodejs/node/commit/da354f46cd)] - **test**: update WPT for WebCryptoAPI to 3e3374efde (Node.js GitHub Bot) [#56093](https://github.com/nodejs/node/pull/56093)
|
|
199
|
+
* \[[`9486c7ce4c`](https://github.com/nodejs/node/commit/9486c7ce4c)] - **test**: update WPT for WebCryptoAPI to 76dfa54e5d (Node.js GitHub Bot) [#56093](https://github.com/nodejs/node/pull/56093)
|
|
200
|
+
* \[[`a8809fc0f5`](https://github.com/nodejs/node/commit/a8809fc0f5)] - **test**: move test-worker-arraybuffer-zerofill to parallel (Luigi Pinca) [#56053](https://github.com/nodejs/node/pull/56053)
|
|
201
|
+
* \[[`6194435b9e`](https://github.com/nodejs/node/commit/6194435b9e)] - **test**: update WPT for url to 67880a4eb83ca9aa732eec4b35a1971ff5bf37ff (Node.js GitHub Bot) [#55999](https://github.com/nodejs/node/pull/55999)
|
|
202
|
+
* \[[`f7567d46d8`](https://github.com/nodejs/node/commit/f7567d46d8)] - **test**: make HTTP/1.0 connection test more robust (Arne Keller) [#55959](https://github.com/nodejs/node/pull/55959)
|
|
203
|
+
* \[[`c157e026fc`](https://github.com/nodejs/node/commit/c157e026fc)] - **test**: convert readdir test to use test runner (Thomas Chetwin) [#55750](https://github.com/nodejs/node/pull/55750)
|
|
204
|
+
* \[[`29362ce673`](https://github.com/nodejs/node/commit/29362ce673)] - **test**: make x509 crypto tests work with BoringSSL (Shelley Vohr) [#55927](https://github.com/nodejs/node/pull/55927)
|
|
205
|
+
* \[[`493e16c852`](https://github.com/nodejs/node/commit/493e16c852)] - **test**: fix determining lower priority (Livia Medeiros) [#55908](https://github.com/nodejs/node/pull/55908)
|
|
206
|
+
* \[[`99858ceb9f`](https://github.com/nodejs/node/commit/99858ceb9f)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#55997](https://github.com/nodejs/node/pull/55997)
|
|
207
|
+
* \[[`7c3a4d4bcd`](https://github.com/nodejs/node/commit/7c3a4d4bcd)] - **test\_runner**: refactor Promise chain in run() (Colin Ihrig) [#55958](https://github.com/nodejs/node/pull/55958)
|
|
208
|
+
* \[[`95e8c4ef6c`](https://github.com/nodejs/node/commit/95e8c4ef6c)] - **test\_runner**: refactor build Promise in Suite() (Colin Ihrig) [#55958](https://github.com/nodejs/node/pull/55958)
|
|
209
|
+
* \[[`c048865199`](https://github.com/nodejs/node/commit/c048865199)] - **test\_runner**: simplify hook running logic (Colin Ihrig) [#55963](https://github.com/nodejs/node/pull/55963)
|
|
210
|
+
* \[[`8197815fe8`](https://github.com/nodejs/node/commit/8197815fe8)] - **test\_runner**: mark snapshot testing as stable (Colin Ihrig) [#55897](https://github.com/nodejs/node/pull/55897)
|
|
211
|
+
* \[[`8a5d8c7669`](https://github.com/nodejs/node/commit/8a5d8c7669)] - **test\_runner**: mark context.plan() as stable (Colin Ihrig) [#55895](https://github.com/nodejs/node/pull/55895)
|
|
212
|
+
* \[[`790a2ca3b7`](https://github.com/nodejs/node/commit/790a2ca3b7)] - **tools**: update `create-release-proposal` workflow (Antoine du Hamel) [#56054](https://github.com/nodejs/node/pull/56054)
|
|
213
|
+
* \[[`98ce4652e2`](https://github.com/nodejs/node/commit/98ce4652e2)] - **tools**: fix update-undici script (Michaël Zasso) [#56069](https://github.com/nodejs/node/pull/56069)
|
|
214
|
+
* \[[`d6a6c8ace1`](https://github.com/nodejs/node/commit/d6a6c8ace1)] - **tools**: allow dispatch of `tools.yml` from forks (Antoine du Hamel) [#56008](https://github.com/nodejs/node/pull/56008)
|
|
215
|
+
* \[[`cc96fce5eb`](https://github.com/nodejs/node/commit/cc96fce5eb)] - **tools**: fix nghttp3 updater script (Antoine du Hamel) [#56007](https://github.com/nodejs/node/pull/56007)
|
|
216
|
+
* \[[`2cd939cb95`](https://github.com/nodejs/node/commit/2cd939cb95)] - **tools**: filter release keys to reduce interactivity (Antoine du Hamel) [#55950](https://github.com/nodejs/node/pull/55950)
|
|
217
|
+
* \[[`4b3919f1be`](https://github.com/nodejs/node/commit/4b3919f1be)] - **tools**: update WPT updater (Antoine du Hamel) [#56003](https://github.com/nodejs/node/pull/56003)
|
|
218
|
+
* \[[`54c46b8464`](https://github.com/nodejs/node/commit/54c46b8464)] - **tools**: add WPT updater for specific subsystems (Mert Can Altin) [#54460](https://github.com/nodejs/node/pull/54460)
|
|
219
|
+
* \[[`32b1681b7f`](https://github.com/nodejs/node/commit/32b1681b7f)] - **tools**: use tokenless Codecov uploads (Michaël Zasso) [#55943](https://github.com/nodejs/node/pull/55943)
|
|
220
|
+
* \[[`475141e370`](https://github.com/nodejs/node/commit/475141e370)] - **tools**: add linter for release commit proposals (Antoine du Hamel) [#55923](https://github.com/nodejs/node/pull/55923)
|
|
221
|
+
* \[[`d093820f64`](https://github.com/nodejs/node/commit/d093820f64)] - **tools**: lint js in `doc/**/*.md` (Livia Medeiros) [#55904](https://github.com/nodejs/node/pull/55904)
|
|
222
|
+
* \[[`72eb710f0f`](https://github.com/nodejs/node/commit/72eb710f0f)] - **tools**: fix riscv64 build failed (Lu Yahan) [#52888](https://github.com/nodejs/node/pull/52888)
|
|
223
|
+
* \[[`882b70c83f`](https://github.com/nodejs/node/commit/882b70c83f)] - **tools**: bump cross-spawn from 7.0.3 to 7.0.5 in /tools/eslint (dependabot\[bot]) [#55894](https://github.com/nodejs/node/pull/55894)
|
|
224
|
+
* \[[`9eccd7dba9`](https://github.com/nodejs/node/commit/9eccd7dba9)] - **util**: add fast path for Latin1 decoding (Mert Can Altin) [#55275](https://github.com/nodejs/node/pull/55275)
|
|
225
|
+
|
|
44
226
|
<a id="23.3.0"></a>
|
|
45
227
|
|
|
46
228
|
## 2024-11-20, Version 23.3.0 (Current), @RafaelGSS
|
|
@@ -246,11 +428,11 @@ will now correctly change as the underlying `ArrayBuffer` size is changed.
|
|
|
246
428
|
```js
|
|
247
429
|
const ab = new ArrayBuffer(10, { maxByteLength: 20 });
|
|
248
430
|
const buffer = Buffer.from(ab);
|
|
249
|
-
console.log(buffer.byteLength); 10
|
|
431
|
+
console.log(buffer.byteLength); // 10
|
|
250
432
|
ab.resize(15);
|
|
251
|
-
console.log(buffer.byteLength); 15
|
|
433
|
+
console.log(buffer.byteLength); // 15
|
|
252
434
|
ab.resize(5);
|
|
253
|
-
console.log(buffer.byteLength); 5
|
|
435
|
+
console.log(buffer.byteLength); // 5
|
|
254
436
|
```
|
|
255
437
|
|
|
256
438
|
Contributed by James M Snell in [#55377](https://github.com/nodejs/node/pull/55377).
|
package/README.md
CHANGED
|
@@ -379,6 +379,8 @@ For information about the governance of the Node.js project, see
|
|
|
379
379
|
**Nitzan Uziely** <<linkgoron@gmail.com>>
|
|
380
380
|
* [LiviaMedeiros](https://github.com/LiviaMedeiros) -
|
|
381
381
|
**LiviaMedeiros** <<livia@cirno.name>>
|
|
382
|
+
* [ljharb](https://github.com/ljharb) -
|
|
383
|
+
**Jordan Harband** <<ljharb@gmail.com>>
|
|
382
384
|
* [lpinca](https://github.com/lpinca) -
|
|
383
385
|
**Luigi Pinca** <<luigipinca@gmail.com>> (he/him)
|
|
384
386
|
* [lukekarrys](https://github.com/lukekarrys) -
|
|
@@ -757,8 +759,6 @@ maintaining the Node.js project.
|
|
|
757
759
|
**Mert Can Altin** <<mertgold60@gmail.com>>
|
|
758
760
|
* [preveen-stack](https://github.com/preveen-stack) -
|
|
759
761
|
**Preveen Padmanabhan** <<wide4head@gmail.com>> (he/him)
|
|
760
|
-
* [RedYetiDev](https://github.com/RedYetiDev) -
|
|
761
|
-
**Aviv Keller** <<redyetidev@gmail.com>> (they/them)
|
|
762
762
|
* [VoltrexKeyva](https://github.com/VoltrexKeyva) -
|
|
763
763
|
**Mohammed Keyvanzadeh** <<mohammadkeyvanzade94@gmail.com>> (he/him)
|
|
764
764
|
|
package/bin/node
CHANGED
|
Binary file
|
package/include/node/config.gypi
CHANGED
|
@@ -236,6 +236,9 @@
|
|
|
236
236
|
'lib/internal/promise_hooks.js',
|
|
237
237
|
'lib/internal/querystring.js',
|
|
238
238
|
'lib/internal/quic/quic.js',
|
|
239
|
+
'lib/internal/quic/state.js',
|
|
240
|
+
'lib/internal/quic/stats.js',
|
|
241
|
+
'lib/internal/quic/symbols.js',
|
|
239
242
|
'lib/internal/readline/callbacks.js',
|
|
240
243
|
'lib/internal/readline/emitKeypressEvents.js',
|
|
241
244
|
'lib/internal/readline/interface.js',
|
package/include/node/node.exp
CHANGED
|
@@ -6017,7 +6017,7 @@ _GLOBAL__I_65535_0_.._deps_v8_src_sandbox_js_dispatch_table.cc_DFF67DD7_0x250143
|
|
|
6017
6017
|
_GLOBAL__I_65535_0_.._deps_v8_src_sandbox_sandbox.cc_D1AFF0D6_0xe15a04a663233df2
|
|
6018
6018
|
_GLOBAL__I_65535_0_.._deps_v8_src_sandbox_testing.cc_7874F2D3_0x72e1062cb6a817ff
|
|
6019
6019
|
_GLOBAL__I_65535_0_.._deps_v8_src_sandbox_trusted_pointer_table.cc_DFF67DD7_0x30766053216e0e26
|
|
6020
|
-
_GLOBAL__I_65535_0_.._src_connection_wrap.
|
|
6020
|
+
_GLOBAL__I_65535_0_.._src_connection_wrap.cc_DFF67DD7_0x836b85e5d9611796
|
|
6021
6021
|
_GLOBAL__I_65535_0_OPENSSL_ppccap_P
|
|
6022
6022
|
_GLOBAL__I_65535_0__Z17_register_symbolsv
|
|
6023
6023
|
_GLOBAL__I_65535_0__Z22_register_process_wrapv
|
|
@@ -7076,7 +7076,7 @@ _GLOBAL__I_65535_0__ZN4node20IsExceptionDecoratedEPNS_11EnvironmentEN2v85LocalIN
|
|
|
7076
7076
|
_GLOBAL__I_65535_0__ZN4node20SyncProcessStdioPipeC2EPNS_17SyncProcessRunnerEbb8uv_buf_t
|
|
7077
7077
|
_GLOBAL__I_65535_0__ZN4node21PromiseRejectCallbackEN2v820PromiseRejectMessageE
|
|
7078
7078
|
_GLOBAL__I_65535_0__ZN4node21SpinEventLoopInternalEPNS_11EnvironmentE
|
|
7079
|
-
|
|
7079
|
+
_GLOBAL__I_65535_0__ZN4node22ProcessEmitWarningSyncEPNS_11EnvironmentESt17basic_string_viewIcSt11char_traitsIcEE
|
|
7080
7080
|
_GLOBAL__I_65535_0__ZN4node23IsConstructCallCallbackERKN2v820FunctionCallbackInfoINS0_5ValueEEE
|
|
7081
7081
|
_GLOBAL__I_65535_0__ZN4node23WorkerThreadsTaskRunnerC2Ei
|
|
7082
7082
|
_GLOBAL__I_65535_0__ZN4node25ExternalReferenceRegistry19external_referencesEv
|
|
@@ -62539,7 +62539,6 @@ _ZN4heap4base8WorklistISt4pairIN2v88internal6TaggedINS4_10HeapObjectEEEiELt256EE
|
|
|
62539
62539
|
_ZN4heap4base8WorklistISt4pairIN2v88internal6TaggedINS4_10HeapObjectEEEiELt256EE7Segment6CreateEt
|
|
62540
62540
|
_ZN4heap4base8internal11SegmentBase25GetSentinelSegmentAddressEv
|
|
62541
62541
|
_ZN4node10AsyncHooks11DeserializeEN2v85LocalINS1_7ContextEEE
|
|
62542
|
-
_ZN4node10AsyncHooks15GetPromiseHooksEPN2v87IsolateE
|
|
62543
62542
|
_ZN4node10AsyncHooks17ResetPromiseHooksEN2v85LocalINS1_8FunctionEEES4_S4_S4_
|
|
62544
62543
|
_ZN4node10AsyncHooks17pop_async_contextEd
|
|
62545
62544
|
_ZN4node10AsyncHooks18push_async_contextEddN2v85LocalINS1_6ObjectEEE
|
|
@@ -62948,7 +62947,6 @@ _ZN4node11Environment23allocate_managed_bufferEm
|
|
|
62948
62947
|
_ZN4node11Environment24stop_sub_worker_contextsEv
|
|
62949
62948
|
_ZN4node11Environment25EnqueueDeserializeRequestEPFvN2v85LocalINS1_7ContextEEENS2_INS1_6ObjectEEEiPNS_21InternalFieldInfoBaseEES6_iS8_
|
|
62950
62949
|
_ZN4node11Environment25StartProfilerIdleNotifierEv
|
|
62951
|
-
_ZN4node11Environment27CheckUnsettledTopLevelAwaitEv
|
|
62952
62950
|
_ZN4node11Environment27PrintInfoForSnapshotIfDebugEv
|
|
62953
62951
|
_ZN4node11Environment27RunAndClearNativeImmediatesEb
|
|
62954
62952
|
_ZN4node11Environment33WaitForInspectorFrontendByOptionsEv
|
|
@@ -62978,7 +62976,7 @@ _ZN4node11IsolateDataD0Ev
|
|
|
62978
62976
|
_ZN4node11IsolateDataD1Ev
|
|
62979
62977
|
_ZN4node11IsolateDataD2Ev
|
|
62980
62978
|
_ZN4node11PathResolveB5cxx11EPNS_11EnvironmentERKSt6vectorISt17basic_string_viewIcSt11char_traitsIcEESaIS6_EE
|
|
62981
|
-
|
|
62979
|
+
_ZN4node11ProcessEmitEPNS_11EnvironmentESt17basic_string_viewIcSt11char_traitsIcEEN2v85LocalINS6_5ValueEEE
|
|
62982
62980
|
_ZN4node11RAIIIsolateC1EPKNS_12SnapshotDataE
|
|
62983
62981
|
_ZN4node11RAIIIsolateC2EPKNS_12SnapshotDataE
|
|
62984
62982
|
_ZN4node11RAIIIsolateD1Ev
|
|
@@ -63217,7 +63215,7 @@ _ZN4node11UDPWrapBaseD1Ev
|
|
|
63217
63215
|
_ZN4node11UDPWrapBaseD2Ev
|
|
63218
63216
|
_ZN4node11UVExceptionEPN2v87IsolateEiPKcS4_S4_S4_
|
|
63219
63217
|
_ZN4node11Uint32ToHexB5cxx11Ej
|
|
63220
|
-
|
|
63218
|
+
_ZN4node11credentials10SafeGetenvEPKcPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPNS_11EnvironmentE
|
|
63221
63219
|
_ZN4node11credentials26RegisterExternalReferencesEPNS_25ExternalReferenceRegistryE
|
|
63222
63220
|
_ZN4node11http_parser11BindingDataD0Ev
|
|
63223
63221
|
_ZN4node11http_parser11BindingDataD1Ev
|
|
@@ -63975,8 +63973,8 @@ _ZN4node16ERR_OUT_OF_RANGEIJiEEEN2v85LocalINS1_6ObjectEEEPNS1_7IsolateEPKcDpOT_
|
|
|
63975
63973
|
_ZN4node16ERR_PROTO_ACCESSIJEEEN2v85LocalINS1_6ObjectEEEPNS1_7IsolateEPKcDpOT_
|
|
63976
63974
|
_ZN4node16EmitAsyncDestroyEPN2v87IsolateENS_13async_contextE
|
|
63977
63975
|
_ZN4node16EmitAsyncDestroyEPNS_11EnvironmentENS_13async_contextE
|
|
63976
|
+
_ZN4node16EnabledDebugList5ParseEPNS_11EnvironmentE
|
|
63978
63977
|
_ZN4node16EnabledDebugList5ParseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE
|
|
63979
|
-
_ZN4node16EnabledDebugList5ParseESt10shared_ptrINS_7KVStoreEE
|
|
63980
63978
|
_ZN4node16GetActiveHandlesERKN2v820FunctionCallbackInfoINS0_5ValueEEE
|
|
63981
63979
|
_ZN4node16GetDefaultLocaleERKN2v820FunctionCallbackInfoINS0_5ValueEEE
|
|
63982
63980
|
_ZN4node16GetValidFileModeEPNS_11EnvironmentEN2v85LocalINS2_5ValueEEE10uv_fs_type
|
|
@@ -63994,6 +63992,7 @@ _ZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm1024EE25AllocateSufficientS
|
|
|
63994
63992
|
_ZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm128EE25AllocateSufficientStorageEm
|
|
63995
63993
|
_ZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm16EE25AllocateSufficientStorageEm
|
|
63996
63994
|
_ZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm256EE25AllocateSufficientStorageEm
|
|
63995
|
+
_ZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm32EE25AllocateSufficientStorageEm
|
|
63997
63996
|
_ZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm5EE25AllocateSufficientStorageEm
|
|
63998
63997
|
_ZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm64EE25AllocateSufficientStorageEm
|
|
63999
63998
|
_ZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm8EE25AllocateSufficientStorageEm
|
|
@@ -64022,6 +64021,7 @@ _ZN4node16WithoutCodeCacheERKNS_14SnapshotConfigE
|
|
|
64022
64021
|
_ZN4node16encoding_binding11BindingData10DecodeUTF8ERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
64023
64022
|
_ZN4node16encoding_binding11BindingData10EncodeIntoERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
64024
64023
|
_ZN4node16encoding_binding11BindingData11DeserializeEN2v85LocalINS2_7ContextEEENS3_INS2_6ObjectEEEiPNS_21InternalFieldInfoBaseE
|
|
64024
|
+
_ZN4node16encoding_binding11BindingData12DecodeLatin1ERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
64025
64025
|
_ZN4node16encoding_binding11BindingData16EncodeUtf8StringERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
64026
64026
|
_ZN4node16encoding_binding11BindingData23PrepareForSerializationEN2v85LocalINS2_7ContextEEEPNS2_15SnapshotCreatorE
|
|
64027
64027
|
_ZN4node16encoding_binding11BindingData26CreatePerContextPropertiesEN2v85LocalINS2_6ObjectEEENS3_INS2_5ValueEEENS3_INS2_7ContextEEEPv
|
|
@@ -64178,6 +64178,8 @@ _ZN4node18MemoryRetainerNode4NameEv
|
|
|
64178
64178
|
_ZN4node18MemoryRetainerNodeD0Ev
|
|
64179
64179
|
_ZN4node18MemoryRetainerNodeD1Ev
|
|
64180
64180
|
_ZN4node18PatchProcessObjectERKN2v820FunctionCallbackInfoINS0_5ValueEEE
|
|
64181
|
+
_ZN4node18PrintTraceEnvStackEPNS_11EnvironmentE
|
|
64182
|
+
_ZN4node18PrintTraceEnvStackESt10shared_ptrINS_18EnvironmentOptionsEE
|
|
64181
64183
|
_ZN4node18ReadSnapshotConfigEPKc
|
|
64182
64184
|
_ZN4node18RunEmbedderPreloadERKN2v820FunctionCallbackInfoINS0_5ValueEEE
|
|
64183
64185
|
_ZN4node18SerializeCodeCacheEN2v85LocalINS0_6ModuleEEE
|
|
@@ -64395,7 +64397,7 @@ _ZN4node22PerIsolatePlatformDataD0Ev
|
|
|
64395
64397
|
_ZN4node22PerIsolatePlatformDataD1Ev
|
|
64396
64398
|
_ZN4node22PerIsolatePlatformDataD2Ev
|
|
64397
64399
|
_ZN4node22PrintCurrentStackTraceEPN2v87IsolateENS_16StackTracePrefixE
|
|
64398
|
-
|
|
64400
|
+
_ZN4node22ProcessEmitWarningSyncEPNS_11EnvironmentESt17basic_string_viewIcSt11char_traitsIcEE
|
|
64399
64401
|
_ZN4node22SetConstructorFunctionEN2v85LocalINS0_7ContextEEENS1_INS0_6ObjectEEENS1_INS0_6StringEEENS1_INS0_16FunctionTemplateEEENS_26SetConstructorFunctionFlagE
|
|
64400
64402
|
_ZN4node22SetConstructorFunctionEN2v85LocalINS0_7ContextEEENS1_INS0_6ObjectEEEPKcNS1_INS0_16FunctionTemplateEEENS_26SetConstructorFunctionFlagE
|
|
64401
64403
|
_ZN4node22SetConstructorFunctionEPN2v87IsolateENS0_5LocalINS0_8TemplateEEENS3_INS0_6StringEEENS3_INS0_16FunctionTemplateEEENS_26SetConstructorFunctionFlagE
|
|
@@ -64510,7 +64512,7 @@ _ZN4node25InspectorParentHandleImplD0Ev
|
|
|
64510
64512
|
_ZN4node25InspectorParentHandleImplD1Ev
|
|
64511
64513
|
_ZN4node25MapStaticCodeToLargePagesEv
|
|
64512
64514
|
_ZN4node25PrepareStackTraceCallbackEN2v85LocalINS0_7ContextEEENS1_INS0_5ValueEEENS1_INS0_5ArrayEEE
|
|
64513
|
-
|
|
64515
|
+
_ZN4node25ProcessEmitWarningGenericEPNS_11EnvironmentESt17basic_string_viewIcSt11char_traitsIcEES5_S5_
|
|
64514
64516
|
_ZN4node25SetFastMethodNoSideEffectEN2v85LocalINS0_7ContextEEENS1_INS0_6ObjectEEESt17basic_string_viewIcSt11char_traitsIcEEPFvRKNS0_20FunctionCallbackInfoINS0_5ValueEEEEPKNS0_9CFunctionE
|
|
64515
64517
|
_ZN4node25SetFastMethodNoSideEffectEPN2v87IsolateENS0_5LocalINS0_8TemplateEEESt17basic_string_viewIcSt11char_traitsIcEEPFvRKNS0_20FunctionCallbackInfoINS0_5ValueEEEEPKNS0_9CFunctionE
|
|
64516
64518
|
_ZN4node25SetFastMethodNoSideEffectEPN2v87IsolateENS0_5LocalINS0_8TemplateEEESt17basic_string_viewIcSt11char_traitsIcEEPFvRKNS0_20FunctionCallbackInfoINS0_5ValueEEEERKNS0_10MemorySpanIKNS0_9CFunctionEEE
|
|
@@ -64662,7 +64664,7 @@ _ZN4node29DebuggingArrayBufferAllocatorD2Ev
|
|
|
64662
64664
|
_ZN4node29DeserializeNodeInternalFieldsEN2v85LocalINS0_6ObjectEEEiNS0_11StartupDataEPv
|
|
64663
64665
|
_ZN4node29ERR_CRYPTO_INVALID_MESSAGELENIJEEEN2v85LocalINS1_6ObjectEEEPNS1_7IsolateEPKcDpOT_
|
|
64664
64666
|
_ZN4node29ERR_CRYPTO_INVALID_TAG_LENGTHIJEEEN2v85LocalINS1_6ObjectEEEPNS1_7IsolateEPKcDpOT_
|
|
64665
|
-
|
|
64667
|
+
_ZN4node29ProcessEmitDeprecationWarningEPNS_11EnvironmentERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt17basic_string_viewIcS5_E
|
|
64666
64668
|
_ZN4node29SetIsolateCreateParamsForNodeEPN2v87Isolate12CreateParamsE
|
|
64667
64669
|
_ZN4node2fs10FileHandle10AfterCloseEv
|
|
64668
64670
|
_ZN4node2fs10FileHandle10DoShutdownEPNS_12ShutdownWrapE
|
|
@@ -64783,7 +64785,7 @@ _ZN4node2uv7ErrNameERKN2v820FunctionCallbackInfoINS1_5ValueEEE
|
|
|
64783
64785
|
_ZN4node2uv9GetErrMapERKN2v820FunctionCallbackInfoINS1_5ValueEEE
|
|
64784
64786
|
_ZN4node30ERR_NON_CONTEXT_AWARE_DISABLEDIJEEEN2v85LocalINS1_6ObjectEEEPNS1_7IsolateEPKcDpOT_
|
|
64785
64787
|
_ZN4node30ERR_ZLIB_INITIALIZATION_FAILEDIJEEEN2v85LocalINS1_6ObjectEEEPNS1_7IsolateEPKcDpOT_
|
|
64786
|
-
|
|
64788
|
+
_ZN4node30ProcessEmitExperimentalWarningEPNS_11EnvironmentERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE
|
|
64787
64789
|
_ZN4node30ReportWritesToJSStreamListener18OnStreamAfterWriteEPNS_9WriteWrapEi
|
|
64788
64790
|
_ZN4node30ReportWritesToJSStreamListener21OnStreamAfterShutdownEPNS_12ShutdownWrapEi
|
|
64789
64791
|
_ZN4node30ReportWritesToJSStreamListener24OnStreamAfterReqFinishedEPNS_9StreamReqEi
|
|
@@ -64831,6 +64833,7 @@ _ZN4node38THROW_ERR_BUFFER_CONTEXT_NOT_AVAILABLEEPN2v87IsolateE
|
|
|
64831
64833
|
_ZN4node38THROW_ERR_CRYPTO_UNSUPPORTED_OPERATIONEPN2v87IsolateE
|
|
64832
64834
|
_ZN4node39ERR_EXECUTION_ENVIRONMENT_NOT_AVAILABLEIJEEEN2v85LocalINS1_6ObjectEEEPNS1_7IsolateEPKcDpOT_
|
|
64833
64835
|
_ZN4node39RegisterStringDecoderExternalReferencesEPNS_25ExternalReferenceRegistryE
|
|
64836
|
+
_ZN4node39THROW_ERR_ENCODING_INVALID_ENCODED_DATAIJEEEvPN2v87IsolateEPKcDpOT_
|
|
64834
64837
|
_ZN4node3bob10SourceImplI10ngtcp2_vecE4PullESt8functionIFviPKS2_mS4_IFvmEEEEiPS2_mm
|
|
64835
64838
|
_ZN4node3mem18NgLibMemoryManagerINS_4quic11BindingDataE10ngtcp2_memE10CallocImplEmmPv
|
|
64836
64839
|
_ZN4node3mem18NgLibMemoryManagerINS_4quic11BindingDataE10ngtcp2_memE10MallocImplEmPv
|
|
@@ -66803,12 +66806,15 @@ _ZN4node6sqlite13StatementSync14SetReadBigIntsERKN2v820FunctionCallbackInfoINS2_
|
|
|
66803
66806
|
_ZN4node6sqlite13StatementSync15SourceSQLGetterERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
66804
66807
|
_ZN4node6sqlite13StatementSync16ColumnNameToNameEi
|
|
66805
66808
|
_ZN4node6sqlite13StatementSync17ExpandedSQLGetterERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
66809
|
+
_ZN4node6sqlite13StatementSync19IterateNextCallbackERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
66810
|
+
_ZN4node6sqlite13StatementSync21IterateReturnCallbackERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
66806
66811
|
_ZN4node6sqlite13StatementSync22GetConstructorTemplateEPNS_11EnvironmentE
|
|
66807
66812
|
_ZN4node6sqlite13StatementSync27SetAllowBareNamedParametersERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
66808
66813
|
_ZN4node6sqlite13StatementSync3AllERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
66809
66814
|
_ZN4node6sqlite13StatementSync3GetERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
66810
66815
|
_ZN4node6sqlite13StatementSync3RunERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
66811
66816
|
_ZN4node6sqlite13StatementSync6CreateEPNS_11EnvironmentEPNS0_12DatabaseSyncEP12sqlite3_stmt
|
|
66817
|
+
_ZN4node6sqlite13StatementSync7IterateERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
66812
66818
|
_ZN4node6sqlite13StatementSync8FinalizeEv
|
|
66813
66819
|
_ZN4node6sqlite13StatementSync9BindValueERKN2v85LocalINS2_5ValueEEEi
|
|
66814
66820
|
_ZN4node6sqlite13StatementSyncC1EPNS_11EnvironmentEN2v85LocalINS4_6ObjectEEEPNS0_12DatabaseSyncEP12sqlite3_stmt
|
|
@@ -66817,6 +66823,7 @@ _ZN4node6sqlite13StatementSyncD0Ev
|
|
|
66817
66823
|
_ZN4node6sqlite13StatementSyncD1Ev
|
|
66818
66824
|
_ZN4node6sqlite13StatementSyncD2Ev
|
|
66819
66825
|
_ZN4node6sqlite18IllegalConstructorERKN2v820FunctionCallbackInfoINS1_5ValueEEE
|
|
66826
|
+
_ZN4node6sqlite22THROW_ERR_SQLITE_ERROREPN2v87IsolateEP7sqlite3
|
|
66820
66827
|
_ZN4node6sqlite7Session22GetConstructorTemplateEPNS_11EnvironmentE
|
|
66821
66828
|
_ZN4node6sqlite7Session5CloseERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
66822
66829
|
_ZN4node6sqlite7Session6CreateEPNS_11EnvironmentENS_17BaseObjectPtrImplINS0_12DatabaseSyncELb1EEEP15sqlite3_session
|
|
@@ -67086,7 +67093,6 @@ _ZN4node7FPrintFIJmPKcmRmS2_EEEvP4FILES2_DpOT_
|
|
|
67086
67093
|
_ZN4node7FPrintFIJmPKcmmS2_EEEvP4FILES2_DpOT_
|
|
67087
67094
|
_ZN4node7FPrintFIJmRKjEEEvP4FILEPKcDpOT_
|
|
67088
67095
|
_ZN4node7FPrintFIJmRiEEEvP4FILEPKcDpOT_
|
|
67089
|
-
_ZN4node7FPrintFIJmmEEEvP4FILEPKcDpOT_
|
|
67090
67096
|
_ZN4node7FPrintFIJmmPKcEEEvP4FILES2_DpOT_
|
|
67091
67097
|
_ZN4node7FPrintFIJmmmmEEEvP4FILEPKcDpOT_
|
|
67092
67098
|
_ZN4node7GetHashEPKcm
|
|
@@ -67254,7 +67260,6 @@ _ZN4node7SPrintFIJmPKcmRmS2_EEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIc
|
|
|
67254
67260
|
_ZN4node7SPrintFIJmPKcmmS2_EEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_DpOT_
|
|
67255
67261
|
_ZN4node7SPrintFIJmRKjEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcDpOT_
|
|
67256
67262
|
_ZN4node7SPrintFIJmRiEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcDpOT_
|
|
67257
|
-
_ZN4node7SPrintFIJmmEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcDpOT_
|
|
67258
67263
|
_ZN4node7SPrintFIJmmPKcEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_DpOT_
|
|
67259
67264
|
_ZN4node7SPrintFIJmmmmEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcDpOT_
|
|
67260
67265
|
_ZN4node7TCPWrap10InitializeEN2v85LocalINS1_6ObjectEEENS2_INS1_5ValueEEENS2_INS1_7ContextEEEPv
|
|
@@ -67609,7 +67614,7 @@ _ZN4node8v8_utils26UpdateHeapStatisticsBufferERKN2v820FunctionCallbackInfoINS1_5
|
|
|
67609
67614
|
_ZN4node8v8_utils28SetHeapSnapshotNearHeapLimitERKN2v820FunctionCallbackInfoINS1_5ValueEEE
|
|
67610
67615
|
_ZN4node8v8_utils30UpdateHeapCodeStatisticsBufferERKN2v820FunctionCallbackInfoINS1_5ValueEEE
|
|
67611
67616
|
_ZN4node8v8_utils31UpdateHeapSpaceStatisticsBufferERKN2v820FunctionCallbackInfoINS1_5ValueEEE
|
|
67612
|
-
|
|
67617
|
+
_ZN4node9AsyncWrap10AsyncResetEN2v85LocalINS1_6ObjectEEEd
|
|
67613
67618
|
_ZN4node9AsyncWrap10AsyncResetERKN2v820FunctionCallbackInfoINS1_5ValueEEE
|
|
67614
67619
|
_ZN4node9AsyncWrap10EmitBeforeEPNS_11EnvironmentEd
|
|
67615
67620
|
_ZN4node9AsyncWrap10GetAsyncIdERKN2v820FunctionCallbackInfoINS1_5ValueEEE
|
|
@@ -67640,12 +67645,8 @@ _ZN4node9AsyncWrap8GetOwnerEv
|
|
|
67640
67645
|
_ZN4node9AsyncWrap9EmitAfterEPNS_11EnvironmentEd
|
|
67641
67646
|
_ZN4node9AsyncWrapC1EPNS_11EnvironmentEN2v85LocalINS3_6ObjectEEE
|
|
67642
67647
|
_ZN4node9AsyncWrapC1EPNS_11EnvironmentEN2v85LocalINS3_6ObjectEEENS0_12ProviderTypeEd
|
|
67643
|
-
_ZN4node9AsyncWrapC1EPNS_11EnvironmentEN2v85LocalINS3_6ObjectEEENS0_12ProviderTypeEdb
|
|
67644
|
-
_ZN4node9AsyncWrapC1EPNS_11EnvironmentEN2v85LocalINS3_6ObjectEEENS0_12ProviderTypeEdd
|
|
67645
67648
|
_ZN4node9AsyncWrapC2EPNS_11EnvironmentEN2v85LocalINS3_6ObjectEEE
|
|
67646
67649
|
_ZN4node9AsyncWrapC2EPNS_11EnvironmentEN2v85LocalINS3_6ObjectEEENS0_12ProviderTypeEd
|
|
67647
|
-
_ZN4node9AsyncWrapC2EPNS_11EnvironmentEN2v85LocalINS3_6ObjectEEENS0_12ProviderTypeEdb
|
|
67648
|
-
_ZN4node9AsyncWrapC2EPNS_11EnvironmentEN2v85LocalINS3_6ObjectEEENS0_12ProviderTypeEdd
|
|
67649
67650
|
_ZN4node9AsyncWrapD0Ev
|
|
67650
67651
|
_ZN4node9AsyncWrapD1Ev
|
|
67651
67652
|
_ZN4node9AsyncWrapD2Ev
|
|
@@ -80656,6 +80657,7 @@ _ZNK4heap4base5Stack23IterateBackgroundStacksEPNS0_12StackVisitorE
|
|
|
80656
80657
|
_ZNK4heap4base5Stack26IteratePointersUntilMarkerEPNS0_12StackVisitorE
|
|
80657
80658
|
_ZNK4node10AsyncHooks10MemoryInfoEPNS_13MemoryTrackerE
|
|
80658
80659
|
_ZNK4node10AsyncHooks14MemoryInfoNameEv
|
|
80660
|
+
_ZNK4node10AsyncHooks15GetPromiseHooksEPN2v87IsolateE
|
|
80659
80661
|
_ZNK4node10AsyncHooks8SelfSizeEv
|
|
80660
80662
|
_ZNK4node10BaseObject10IsRootNodeEv
|
|
80661
80663
|
_ZNK4node10BaseObject13WrappedObjectEv
|
|
@@ -80756,6 +80758,7 @@ _ZNK4node11Environment14MemoryInfoNameEv
|
|
|
80756
80758
|
_ZNK4node11Environment14PrintSyncTraceEv
|
|
80757
80759
|
_ZNK4node11Environment17worker_parent_envEv
|
|
80758
80760
|
_ZNK4node11Environment26RunSnapshotDeserializeMainEv
|
|
80761
|
+
_ZNK4node11Environment27CheckUnsettledTopLevelAwaitEv
|
|
80759
80762
|
_ZNK4node11Environment28RunSnapshotSerializeCallbackEv
|
|
80760
80763
|
_ZNK4node11Environment8SelfSizeEv
|
|
80761
80764
|
_ZNK4node11IsolateData10MemoryInfoEPNS_13MemoryTrackerE
|
|
@@ -95225,6 +95228,7 @@ _ZZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm16EE25AllocateSufficientSt
|
|
|
95225
95228
|
_ZZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm16EEixEmE20error_and_abort_args
|
|
95226
95229
|
_ZZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm256EE25AllocateSufficientStorageEmE20error_and_abort_args
|
|
95227
95230
|
_ZZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm256EEixEmE20error_and_abort_args
|
|
95231
|
+
_ZZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm32EE25AllocateSufficientStorageEmE20error_and_abort_args
|
|
95228
95232
|
_ZZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm32EEixEmE20error_and_abort_args
|
|
95229
95233
|
_ZZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm5EE25AllocateSufficientStorageEmE20error_and_abort_args
|
|
95230
95234
|
_ZZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm5EEixEmE20error_and_abort_args
|
|
@@ -98609,18 +98613,13 @@ ngtcp2_cbrt
|
|
|
98609
98613
|
ngtcp2_cc_bbr_init
|
|
98610
98614
|
ngtcp2_cc_compute_initcwnd
|
|
98611
98615
|
ngtcp2_cc_cubic_cc_congestion_event
|
|
98612
|
-
ngtcp2_cc_cubic_cc_event
|
|
98613
|
-
ngtcp2_cc_cubic_cc_new_rtt_sample
|
|
98614
98616
|
ngtcp2_cc_cubic_cc_on_ack_recv
|
|
98615
98617
|
ngtcp2_cc_cubic_cc_on_persistent_congestion
|
|
98616
|
-
ngtcp2_cc_cubic_cc_on_pkt_acked
|
|
98617
|
-
ngtcp2_cc_cubic_cc_on_pkt_sent
|
|
98618
98618
|
ngtcp2_cc_cubic_cc_on_spurious_congestion
|
|
98619
98619
|
ngtcp2_cc_cubic_cc_reset
|
|
98620
98620
|
ngtcp2_cc_cubic_init
|
|
98621
98621
|
ngtcp2_cc_pkt_init
|
|
98622
98622
|
ngtcp2_cc_reno_cc_congestion_event
|
|
98623
|
-
ngtcp2_cc_reno_cc_on_ack_recv
|
|
98624
98623
|
ngtcp2_cc_reno_cc_on_persistent_congestion
|
|
98625
98624
|
ngtcp2_cc_reno_cc_on_pkt_acked
|
|
98626
98625
|
ngtcp2_cc_reno_cc_reset
|
|
@@ -98639,6 +98638,8 @@ ngtcp2_cmemeq
|
|
|
98639
98638
|
ngtcp2_conn_ack_delay_expiry
|
|
98640
98639
|
ngtcp2_conn_after_retry
|
|
98641
98640
|
ngtcp2_conn_cancel_expired_ack_delay_timer
|
|
98641
|
+
ngtcp2_conn_cancel_loss_detection_timer
|
|
98642
|
+
ngtcp2_conn_check_retired_dcid_tracked
|
|
98642
98643
|
ngtcp2_conn_client_new_versioned
|
|
98643
98644
|
ngtcp2_conn_close_stream
|
|
98644
98645
|
ngtcp2_conn_close_stream_if_shut_rdwr
|
|
@@ -98649,6 +98650,8 @@ ngtcp2_conn_decode_and_set_0rtt_transport_params
|
|
|
98649
98650
|
ngtcp2_conn_decode_and_set_remote_transport_params
|
|
98650
98651
|
ngtcp2_conn_del
|
|
98651
98652
|
ngtcp2_conn_detect_lost_pkt
|
|
98653
|
+
ngtcp2_conn_discard_handshake_state
|
|
98654
|
+
ngtcp2_conn_discard_initial_state
|
|
98652
98655
|
ngtcp2_conn_encode_0rtt_transport_params
|
|
98653
98656
|
ngtcp2_conn_encode_local_transport_params
|
|
98654
98657
|
ngtcp2_conn_extend_max_offset
|
|
@@ -98786,6 +98789,7 @@ ngtcp2_crypto_encrypt
|
|
|
98786
98789
|
ngtcp2_crypto_encrypt_cb
|
|
98787
98790
|
ngtcp2_crypto_generate_regular_token
|
|
98788
98791
|
ngtcp2_crypto_generate_retry_token
|
|
98792
|
+
ngtcp2_crypto_generate_retry_token2
|
|
98789
98793
|
ngtcp2_crypto_generate_stateless_reset_token
|
|
98790
98794
|
ngtcp2_crypto_get_path_challenge_data_cb
|
|
98791
98795
|
ngtcp2_crypto_hkdf
|
|
@@ -98818,6 +98822,7 @@ ngtcp2_crypto_update_key_cb
|
|
|
98818
98822
|
ngtcp2_crypto_update_traffic_secret
|
|
98819
98823
|
ngtcp2_crypto_verify_regular_token
|
|
98820
98824
|
ngtcp2_crypto_verify_retry_token
|
|
98825
|
+
ngtcp2_crypto_verify_retry_token2
|
|
98821
98826
|
ngtcp2_crypto_version_negotiation_cb
|
|
98822
98827
|
ngtcp2_crypto_write_connection_close
|
|
98823
98828
|
ngtcp2_crypto_write_retry
|
|
@@ -98855,14 +98860,12 @@ ngtcp2_get_bytes
|
|
|
98855
98860
|
ngtcp2_get_pkt_num
|
|
98856
98861
|
ngtcp2_get_uint16
|
|
98857
98862
|
ngtcp2_get_uint16be
|
|
98858
|
-
|
|
98859
|
-
|
|
98860
|
-
|
|
98861
|
-
ngtcp2_get_uint64
|
|
98863
|
+
ngtcp2_get_uint24be
|
|
98864
|
+
ngtcp2_get_uint32be
|
|
98865
|
+
ngtcp2_get_uint64be
|
|
98862
98866
|
ngtcp2_get_uvarint
|
|
98863
98867
|
ngtcp2_get_uvarintlen
|
|
98864
98868
|
ngtcp2_get_varint
|
|
98865
|
-
ngtcp2_idtr_first_gap
|
|
98866
98869
|
ngtcp2_idtr_free
|
|
98867
98870
|
ngtcp2_idtr_init
|
|
98868
98871
|
ngtcp2_idtr_is_open
|
|
@@ -98876,17 +98879,23 @@ ngtcp2_ksl_end
|
|
|
98876
98879
|
ngtcp2_ksl_free
|
|
98877
98880
|
ngtcp2_ksl_init
|
|
98878
98881
|
ngtcp2_ksl_insert
|
|
98882
|
+
ngtcp2_ksl_int64_greater
|
|
98883
|
+
ngtcp2_ksl_int64_greater_search
|
|
98879
98884
|
ngtcp2_ksl_it_begin
|
|
98880
98885
|
ngtcp2_ksl_it_init
|
|
98881
98886
|
ngtcp2_ksl_it_prev
|
|
98882
98887
|
ngtcp2_ksl_len
|
|
98883
98888
|
ngtcp2_ksl_lower_bound
|
|
98884
|
-
|
|
98889
|
+
ngtcp2_ksl_lower_bound_search
|
|
98885
98890
|
ngtcp2_ksl_print
|
|
98886
98891
|
ngtcp2_ksl_range_compar
|
|
98887
98892
|
ngtcp2_ksl_range_exclusive_compar
|
|
98893
|
+
ngtcp2_ksl_range_exclusive_search
|
|
98894
|
+
ngtcp2_ksl_range_search
|
|
98888
98895
|
ngtcp2_ksl_remove
|
|
98889
98896
|
ngtcp2_ksl_remove_hint
|
|
98897
|
+
ngtcp2_ksl_uint64_less
|
|
98898
|
+
ngtcp2_ksl_uint64_less_search
|
|
98890
98899
|
ngtcp2_ksl_update_key
|
|
98891
98900
|
ngtcp2_log_info
|
|
98892
98901
|
ngtcp2_log_init
|
|
@@ -98901,7 +98910,6 @@ ngtcp2_log_tx_fr
|
|
|
98901
98910
|
ngtcp2_log_tx_pkt_hd
|
|
98902
98911
|
ngtcp2_map_clear
|
|
98903
98912
|
ngtcp2_map_each
|
|
98904
|
-
ngtcp2_map_each_free
|
|
98905
98913
|
ngtcp2_map_find
|
|
98906
98914
|
ngtcp2_map_free
|
|
98907
98915
|
ngtcp2_map_init
|
|
@@ -98914,10 +98922,6 @@ ngtcp2_mem_default
|
|
|
98914
98922
|
ngtcp2_mem_free
|
|
98915
98923
|
ngtcp2_mem_malloc
|
|
98916
98924
|
ngtcp2_mem_realloc
|
|
98917
|
-
ngtcp2_nth_client_bidi_id
|
|
98918
|
-
ngtcp2_nth_client_uni_id
|
|
98919
|
-
ngtcp2_nth_server_bidi_id
|
|
98920
|
-
ngtcp2_nth_server_uni_id
|
|
98921
98925
|
ngtcp2_objalloc_acktr_entry_get
|
|
98922
98926
|
ngtcp2_objalloc_acktr_entry_len_get
|
|
98923
98927
|
ngtcp2_objalloc_clear
|
|
@@ -99020,14 +99024,14 @@ ngtcp2_pmtud_probe_sent
|
|
|
99020
99024
|
ngtcp2_pmtud_probe_success
|
|
99021
99025
|
ngtcp2_pmtud_probelen
|
|
99022
99026
|
ngtcp2_pmtud_require_probe
|
|
99027
|
+
ngtcp2_ppe_dgram_padding
|
|
99028
|
+
ngtcp2_ppe_dgram_padding_size
|
|
99023
99029
|
ngtcp2_ppe_encode_frame
|
|
99024
99030
|
ngtcp2_ppe_encode_hd
|
|
99025
99031
|
ngtcp2_ppe_ensure_hp_sample
|
|
99026
99032
|
ngtcp2_ppe_final
|
|
99027
99033
|
ngtcp2_ppe_init
|
|
99028
99034
|
ngtcp2_ppe_left
|
|
99029
|
-
ngtcp2_ppe_padding
|
|
99030
|
-
ngtcp2_ppe_padding_hp_sample
|
|
99031
99035
|
ngtcp2_ppe_padding_size
|
|
99032
99036
|
ngtcp2_ppe_pktlen
|
|
99033
99037
|
ngtcp2_pq_each
|
|
@@ -99044,7 +99048,6 @@ ngtcp2_put_uint16
|
|
|
99044
99048
|
ngtcp2_put_uint16be
|
|
99045
99049
|
ngtcp2_put_uint24be
|
|
99046
99050
|
ngtcp2_put_uint32be
|
|
99047
|
-
ngtcp2_put_uint48be
|
|
99048
99051
|
ngtcp2_put_uint64be
|
|
99049
99052
|
ngtcp2_put_uvarint
|
|
99050
99053
|
ngtcp2_put_uvarint30
|
|
@@ -99127,7 +99130,10 @@ ngtcp2_scid_copy
|
|
|
99127
99130
|
ngtcp2_scid_init
|
|
99128
99131
|
ngtcp2_select_version
|
|
99129
99132
|
ngtcp2_setmem
|
|
99133
|
+
ngtcp2_settings_convert_to_latest
|
|
99134
|
+
ngtcp2_settings_convert_to_old
|
|
99130
99135
|
ngtcp2_settings_default_versioned
|
|
99136
|
+
ngtcp2_settingslen_version
|
|
99131
99137
|
ngtcp2_strerror
|
|
99132
99138
|
ngtcp2_strm_ack_data
|
|
99133
99139
|
ngtcp2_strm_discard_reordered_data
|
package/package.json
CHANGED
package/share/man/man1/node.1
CHANGED
|
@@ -163,11 +163,6 @@ Enable Source Map V3 support for stack traces.
|
|
|
163
163
|
.It Fl -entry-url
|
|
164
164
|
Interpret the entry point as a URL.
|
|
165
165
|
.
|
|
166
|
-
.It Fl -experimental-default-type Ns = Ns Ar type
|
|
167
|
-
Interpret as either ES modules or CommonJS modules input via --eval or STDIN, when --input-type is unspecified;
|
|
168
|
-
.js or extensionless files with no sibling or parent package.json;
|
|
169
|
-
.js or extensionless files whose nearest parent package.json lacks a "type" field, unless under node_modules.
|
|
170
|
-
.
|
|
171
166
|
.It Fl -experimental-import-meta-resolve
|
|
172
167
|
Enable experimental ES modules support for import.meta.resolve().
|
|
173
168
|
.
|
|
@@ -182,9 +177,6 @@ Enable the experimental permission model.
|
|
|
182
177
|
.It Fl -experimental-shadow-realm
|
|
183
178
|
Use this flag to enable ShadowRealm support.
|
|
184
179
|
.
|
|
185
|
-
.It Fl -experimental-sqlite
|
|
186
|
-
Enable the experimental node:sqlite module.
|
|
187
|
-
.
|
|
188
180
|
.It Fl -experimental-test-coverage
|
|
189
181
|
Enable code coverage in the test runner.
|
|
190
182
|
.
|
|
@@ -194,9 +186,6 @@ Configures the type of test isolation used in the test runner.
|
|
|
194
186
|
.It Fl -experimental-test-module-mocks
|
|
195
187
|
Enable module mocking in the test runner.
|
|
196
188
|
.
|
|
197
|
-
.It Fl -experimental-test-snapshots
|
|
198
|
-
Enable snapshot testing in the test runner.
|
|
199
|
-
.
|
|
200
189
|
.It Fl -experimental-strip-types
|
|
201
190
|
Enable experimental type-stripping for TypeScript files.
|
|
202
191
|
.
|
|
@@ -215,6 +204,9 @@ Enable experimental support for the Web Storage API.
|
|
|
215
204
|
.It Fl -no-experimental-repl-await
|
|
216
205
|
Disable top-level await keyword support in REPL.
|
|
217
206
|
.
|
|
207
|
+
.It Fl -no-experimental-sqlite
|
|
208
|
+
Disable the experimental node:sqlite module.
|
|
209
|
+
.
|
|
218
210
|
.It Fl -experimental-vm-modules
|
|
219
211
|
Enable experimental ES module support in VM module.
|
|
220
212
|
.
|