node-aix-ppc64 23.3.0 → 23.5.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 +355 -3
- package/README.md +2 -2
- package/bin/node +0 -0
- package/include/node/common.gypi +1 -1
- package/include/node/config.gypi +4 -0
- package/include/node/node.exp +77 -43
- package/include/node/node_version.h +1 -1
- package/include/node/uv/version.h +1 -1
- package/include/node/v8config.h +4 -0
- package/package.json +1 -1
- package/share/man/man1/node.1 +5 -13
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,8 @@
|
|
|
8
8
|
</tr>
|
|
9
9
|
<tr>
|
|
10
10
|
<td>
|
|
11
|
+
<a href="#23.5.0">23.5.0</a><br/>
|
|
12
|
+
<a href="#23.4.0">23.4.0</a><br/>
|
|
11
13
|
<a href="#23.3.0">23.3.0</a><br/>
|
|
12
14
|
<a href="#23.2.0">23.2.0</a><br/>
|
|
13
15
|
<a href="#23.1.0">23.1.0</a><br/>
|
|
@@ -41,6 +43,356 @@
|
|
|
41
43
|
* [io.js](CHANGELOG_IOJS.md)
|
|
42
44
|
* [Archive](CHANGELOG_ARCHIVE.md)
|
|
43
45
|
|
|
46
|
+
<a id="23.5.0"></a>
|
|
47
|
+
|
|
48
|
+
## 2024-12-19, Version 23.5.0 (Current), @aduh95
|
|
49
|
+
|
|
50
|
+
### Notable Changes
|
|
51
|
+
|
|
52
|
+
#### WebCryptoAPI Ed25519 and X25519 algorithms are now stable
|
|
53
|
+
|
|
54
|
+
Following the merge of Curve25519 into the
|
|
55
|
+
[Web Cryptography API Editor's Draft](https://w3c.github.io/webcrypto/) the
|
|
56
|
+
`Ed25519` and `X25519` algorithm identifiers are now stable and will no longer
|
|
57
|
+
emit an ExperimentalWarning upon use.
|
|
58
|
+
|
|
59
|
+
Contributed by Filip Skokan in [#56142](https://github.com/nodejs/node/pull/56142).
|
|
60
|
+
|
|
61
|
+
#### On-thread hooks are back
|
|
62
|
+
|
|
63
|
+
This release introduces `module.registerHooks()` for registering module loader
|
|
64
|
+
customization hooks that are run for all modules loaded by `require()`, `import`
|
|
65
|
+
and functions returned by `createRequire()` in the same thread, which makes them
|
|
66
|
+
easier for CJS monkey-patchers to migrate to.
|
|
67
|
+
|
|
68
|
+
```mjs
|
|
69
|
+
import assert from 'node:assert';
|
|
70
|
+
import { registerHooks, createRequire } from 'node:module';
|
|
71
|
+
import { writeFileSync } from 'node:fs';
|
|
72
|
+
|
|
73
|
+
writeFileSync('./bar.js', 'export const id = 123;', 'utf8');
|
|
74
|
+
|
|
75
|
+
registerHooks({
|
|
76
|
+
resolve(specifier, context, nextResolve) {
|
|
77
|
+
const replaced = specifier.replace('foo', 'bar');
|
|
78
|
+
return nextResolve(replaced, context);
|
|
79
|
+
},
|
|
80
|
+
load(url, context, nextLoad) {
|
|
81
|
+
const result = nextLoad(url, context);
|
|
82
|
+
return {
|
|
83
|
+
...result,
|
|
84
|
+
source: result.source.toString().replace('123', '456'),
|
|
85
|
+
};
|
|
86
|
+
},
|
|
87
|
+
});
|
|
88
|
+
|
|
89
|
+
// Checks that it works with require.
|
|
90
|
+
const require = createRequire(import.meta.url);
|
|
91
|
+
const required = require('./foo.js'); // Redirected by resolve hook to bar.js
|
|
92
|
+
assert.strictEqual(required.id, 456); // Replaced by load hook to 456
|
|
93
|
+
|
|
94
|
+
// Checks that it works with import.
|
|
95
|
+
const imported = await import('./foo.js'); // Redirected by resolve hook to bar.js
|
|
96
|
+
assert.strictEqual(imported.id, 456); // Replaced by load hook to 456
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
This complements the `module.register()` hooks - the new hooks fit better
|
|
100
|
+
internally and cover all corners in the module graph; whereas
|
|
101
|
+
`module.register()` previously could not cover `require()` while it was
|
|
102
|
+
on-thread, and still cannot cover `createRequire()` after being moved
|
|
103
|
+
off-thread.
|
|
104
|
+
|
|
105
|
+
They are also run in the same thread as the modules being loaded and where the
|
|
106
|
+
hooks are registered, which means they are easier to debug (no more
|
|
107
|
+
`console.log()` getting lost) and do not have the many deadlock issues haunting
|
|
108
|
+
the `module.register()` hooks. The new API also takes functions directly so that
|
|
109
|
+
it's easier for intermediate loader packages to take user options from files
|
|
110
|
+
that the hooks can't be aware of, like many existing CJS monkey-patchers do.
|
|
111
|
+
|
|
112
|
+
Contributed by Joyee Cheung in [#55698](https://github.com/nodejs/node/pull/55698).
|
|
113
|
+
|
|
114
|
+
#### Other notable changes
|
|
115
|
+
|
|
116
|
+
* \[[`59cae91465`](https://github.com/nodejs/node/commit/59cae91465)] - **(SEMVER-MINOR)** **dgram**: support blocklist in udp (theanarkh) [#56087](https://github.com/nodejs/node/pull/56087)
|
|
117
|
+
* \[[`72f79b44ed`](https://github.com/nodejs/node/commit/72f79b44ed)] - **doc**: stabilize util.styleText (Rafael Gonzaga) [#56265](https://github.com/nodejs/node/pull/56265)
|
|
118
|
+
* \[[`b5a2c0777d`](https://github.com/nodejs/node/commit/b5a2c0777d)] - **(SEMVER-MINOR)** **module**: add prefix-only modules to `module.builtinModules` (Jordan Harband) [#56185](https://github.com/nodejs/node/pull/56185)
|
|
119
|
+
* \[[`9863d27566`](https://github.com/nodejs/node/commit/9863d27566)] - **(SEMVER-MINOR)** **module**: only emit require(esm) warning under --trace-require-module (Joyee Cheung) [#56194](https://github.com/nodejs/node/pull/56194)
|
|
120
|
+
* \[[`8e780bc5ae`](https://github.com/nodejs/node/commit/8e780bc5ae)] - **(SEMVER-MINOR)** **module**: use synchronous hooks for preparsing in import(cjs) (Joyee Cheung) [#55698](https://github.com/nodejs/node/pull/55698)
|
|
121
|
+
* \[[`65bc8e847f`](https://github.com/nodejs/node/commit/65bc8e847f)] - **(SEMVER-MINOR)** **report**: fix typos in report keys and bump the version (Yuan-Ming Hsu) [#56068](https://github.com/nodejs/node/pull/56068)
|
|
122
|
+
* \[[`0ab36e1937`](https://github.com/nodejs/node/commit/0ab36e1937)] - **(SEMVER-MINOR)** **sqlite**: aggregate constants in a single property (Edigleysson Silva (Edy)) [#56213](https://github.com/nodejs/node/pull/56213)
|
|
123
|
+
* \[[`efcc5d90c5`](https://github.com/nodejs/node/commit/efcc5d90c5)] - **(SEMVER-MINOR)** **src,lib**: stabilize permission model (Rafael Gonzaga) [#56201](https://github.com/nodejs/node/pull/56201)
|
|
124
|
+
|
|
125
|
+
### Commits
|
|
126
|
+
|
|
127
|
+
* \[[`2314e4916e`](https://github.com/nodejs/node/commit/2314e4916e)] - **assert**: make Maps be partially compared in partialDeepStrictEqual (Giovanni Bucci) [#56195](https://github.com/nodejs/node/pull/56195)
|
|
128
|
+
* \[[`cfbdff7b45`](https://github.com/nodejs/node/commit/cfbdff7b45)] - **assert**: make partialDeepStrictEqual work with ArrayBuffers (Giovanni Bucci) [#56098](https://github.com/nodejs/node/pull/56098)
|
|
129
|
+
* \[[`f264dd6d20`](https://github.com/nodejs/node/commit/f264dd6d20)] - **buffer**: document concat zero-fill (Duncan) [#55562](https://github.com/nodejs/node/pull/55562)
|
|
130
|
+
* \[[`4831b87d83`](https://github.com/nodejs/node/commit/4831b87d83)] - **build**: set DESTCPU correctly for 'make binary' on loongarch64 (吴小白) [#56271](https://github.com/nodejs/node/pull/56271)
|
|
131
|
+
* \[[`1497bb405e`](https://github.com/nodejs/node/commit/1497bb405e)] - **build**: fix missing fp16 dependency in d8 builds (Joyee Cheung) [#56266](https://github.com/nodejs/node/pull/56266)
|
|
132
|
+
* \[[`445c8c7489`](https://github.com/nodejs/node/commit/445c8c7489)] - **build**: add major release action (Rafael Gonzaga) [#56199](https://github.com/nodejs/node/pull/56199)
|
|
133
|
+
* \[[`f4faedfa69`](https://github.com/nodejs/node/commit/f4faedfa69)] - **build**: fix C string encoding for `PRODUCT_DIR_ABS` (Anna Henningsen) [#56111](https://github.com/nodejs/node/pull/56111)
|
|
134
|
+
* \[[`6f49c8006c`](https://github.com/nodejs/node/commit/6f49c8006c)] - **build**: use variable for simdutf path (Shelley Vohr) [#56196](https://github.com/nodejs/node/pull/56196)
|
|
135
|
+
* \[[`fcaa2c82a6`](https://github.com/nodejs/node/commit/fcaa2c82a6)] - **build**: fix GN build on macOS (Joyee Cheung) [#56141](https://github.com/nodejs/node/pull/56141)
|
|
136
|
+
* \[[`08e5309f4f`](https://github.com/nodejs/node/commit/08e5309f4f)] - _**Revert**_ "**build**: avoid compiling with VS v17.12" (Gerhard Stöbich) [#56151](https://github.com/nodejs/node/pull/56151)
|
|
137
|
+
* \[[`c2fb38cfdf`](https://github.com/nodejs/node/commit/c2fb38cfdf)] - **crypto**: graduate WebCryptoAPI Ed25519 and X25519 algorithms as stable (Filip Skokan) [#56142](https://github.com/nodejs/node/pull/56142)
|
|
138
|
+
* \[[`8658833884`](https://github.com/nodejs/node/commit/8658833884)] - **deps**: update nghttp3 to 1.6.0 (Node.js GitHub Bot) [#56258](https://github.com/nodejs/node/pull/56258)
|
|
139
|
+
* \[[`7c941d4610`](https://github.com/nodejs/node/commit/7c941d4610)] - **deps**: update simdutf to 5.6.4 (Node.js GitHub Bot) [#56255](https://github.com/nodejs/node/pull/56255)
|
|
140
|
+
* \[[`4e9113eada`](https://github.com/nodejs/node/commit/4e9113eada)] - **deps**: update libuv to 1.49.2 (Luigi Pinca) [#56224](https://github.com/nodejs/node/pull/56224)
|
|
141
|
+
* \[[`db6aba12e4`](https://github.com/nodejs/node/commit/db6aba12e4)] - **deps**: update c-ares to v1.34.4 (Node.js GitHub Bot) [#56256](https://github.com/nodejs/node/pull/56256)
|
|
142
|
+
* \[[`25bb462bc2`](https://github.com/nodejs/node/commit/25bb462bc2)] - **deps**: define V8\_PRESERVE\_MOST as no-op on Windows (Stefan Stojanovic) [#56238](https://github.com/nodejs/node/pull/56238)
|
|
143
|
+
* \[[`54308c51bb`](https://github.com/nodejs/node/commit/54308c51bb)] - **deps**: update sqlite to 3.47.2 (Node.js GitHub Bot) [#56178](https://github.com/nodejs/node/pull/56178)
|
|
144
|
+
* \[[`59cae91465`](https://github.com/nodejs/node/commit/59cae91465)] - **(SEMVER-MINOR)** **dgram**: support blocklist in udp (theanarkh) [#56087](https://github.com/nodejs/node/pull/56087)
|
|
145
|
+
* \[[`52c18e605e`](https://github.com/nodejs/node/commit/52c18e605e)] - **doc**: fix color contrast issue in light mode (Rich Trott) [#56272](https://github.com/nodejs/node/pull/56272)
|
|
146
|
+
* \[[`72f79b44ed`](https://github.com/nodejs/node/commit/72f79b44ed)] - **doc**: stabilize util.styleText (Rafael Gonzaga) [#56265](https://github.com/nodejs/node/pull/56265)
|
|
147
|
+
* \[[`0d08756d0c`](https://github.com/nodejs/node/commit/0d08756d0c)] - **doc**: clarify util.aborted resource usage (Kunal Kumar) [#55780](https://github.com/nodejs/node/pull/55780)
|
|
148
|
+
* \[[`f94f21080b`](https://github.com/nodejs/node/commit/f94f21080b)] - **doc**: add esm examples to node:repl (Alfredo González) [#55432](https://github.com/nodejs/node/pull/55432)
|
|
149
|
+
* \[[`7a10ef88d9`](https://github.com/nodejs/node/commit/7a10ef88d9)] - **doc**: add esm examples to node:readline (Alfredo González) [#55335](https://github.com/nodejs/node/pull/55335)
|
|
150
|
+
* \[[`cc7a7c391b`](https://github.com/nodejs/node/commit/cc7a7c391b)] - **doc**: fix 'which' to 'that' and add commas (Selveter Senitro) [#56216](https://github.com/nodejs/node/pull/56216)
|
|
151
|
+
* \[[`c5b086250e`](https://github.com/nodejs/node/commit/c5b086250e)] - **doc**: fix winget config path (Alex Yang) [#56233](https://github.com/nodejs/node/pull/56233)
|
|
152
|
+
* \[[`71c38a24d4`](https://github.com/nodejs/node/commit/71c38a24d4)] - **doc**: add esm examples to node:tls (Alfredo González) [#56229](https://github.com/nodejs/node/pull/56229)
|
|
153
|
+
* \[[`394fffbbde`](https://github.com/nodejs/node/commit/394fffbbde)] - **doc**: add esm examples to node:perf\_hooks (Alfredo González) [#55257](https://github.com/nodejs/node/pull/55257)
|
|
154
|
+
* \[[`7b2a6ee61e`](https://github.com/nodejs/node/commit/7b2a6ee61e)] - **doc**: `sea.getRawAsset(key)` always returns an ArrayBuffer (沈鸿飞) [#56206](https://github.com/nodejs/node/pull/56206)
|
|
155
|
+
* \[[`8092dcf27e`](https://github.com/nodejs/node/commit/8092dcf27e)] - **doc**: update announce documentation for releases (Rafael Gonzaga) [#56200](https://github.com/nodejs/node/pull/56200)
|
|
156
|
+
* \[[`2974667815`](https://github.com/nodejs/node/commit/2974667815)] - **doc**: update blog link to /vulnerability (Rafael Gonzaga) [#56198](https://github.com/nodejs/node/pull/56198)
|
|
157
|
+
* \[[`f3b3ff85e0`](https://github.com/nodejs/node/commit/f3b3ff85e0)] - **doc**: call out import.meta is only supported in ES modules (Anton Kastritskii) [#56186](https://github.com/nodejs/node/pull/56186)
|
|
158
|
+
* \[[`a9e67280e7`](https://github.com/nodejs/node/commit/a9e67280e7)] - **doc**: add ambassador message - benefits of Node.js (Michael Dawson) [#56085](https://github.com/nodejs/node/pull/56085)
|
|
159
|
+
* \[[`e4922ab15f`](https://github.com/nodejs/node/commit/e4922ab15f)] - **doc**: fix incorrect link to style guide (Yuan-Ming Hsu) [#56181](https://github.com/nodejs/node/pull/56181)
|
|
160
|
+
* \[[`114a3e5a05`](https://github.com/nodejs/node/commit/114a3e5a05)] - **doc**: fix c++ addon hello world sample (Edigleysson Silva (Edy)) [#56172](https://github.com/nodejs/node/pull/56172)
|
|
161
|
+
* \[[`f1c2d2f65e`](https://github.com/nodejs/node/commit/f1c2d2f65e)] - **doc**: update blog release-post link (Ruy Adorno) [#56123](https://github.com/nodejs/node/pull/56123)
|
|
162
|
+
* \[[`d48b5224c0`](https://github.com/nodejs/node/commit/d48b5224c0)] - **doc**: fix module.md headings (Chengzhong Wu) [#56131](https://github.com/nodejs/node/pull/56131)
|
|
163
|
+
* \[[`4cc0493a0b`](https://github.com/nodejs/node/commit/4cc0493a0b)] - **fs**: make mutating `options` in Callback `readdir()` not affect results (LiviaMedeiros) [#56057](https://github.com/nodejs/node/pull/56057)
|
|
164
|
+
* \[[`8d485f1c09`](https://github.com/nodejs/node/commit/8d485f1c09)] - **fs**: make mutating `options` in Promises `readdir()` not affect results (LiviaMedeiros) [#56057](https://github.com/nodejs/node/pull/56057)
|
|
165
|
+
* \[[`595851b5ed`](https://github.com/nodejs/node/commit/595851b5ed)] - **fs,win**: fix readdir for named pipe (Hüseyin Açacak) [#56110](https://github.com/nodejs/node/pull/56110)
|
|
166
|
+
* \[[`075b36b7b4`](https://github.com/nodejs/node/commit/075b36b7b4)] - **http**: add setDefaultHeaders option to http.request (Tim Perry) [#56112](https://github.com/nodejs/node/pull/56112)
|
|
167
|
+
* \[[`febd969c46`](https://github.com/nodejs/node/commit/febd969c46)] - **http2**: remove duplicate codeblock (Vitaly Aminev) [#55915](https://github.com/nodejs/node/pull/55915)
|
|
168
|
+
* \[[`b0ebd23e52`](https://github.com/nodejs/node/commit/b0ebd23e52)] - **http2**: support ALPNCallback option (ZYSzys) [#56187](https://github.com/nodejs/node/pull/56187)
|
|
169
|
+
* \[[`f10239fde7`](https://github.com/nodejs/node/commit/f10239fde7)] - **lib**: remove redundant global regexps (Gürgün Dayıoğlu) [#56182](https://github.com/nodejs/node/pull/56182)
|
|
170
|
+
* \[[`fd55d3cbdd`](https://github.com/nodejs/node/commit/fd55d3cbdd)] - **lib**: clean up persisted signals when they are settled (Edigleysson Silva (Edy)) [#56001](https://github.com/nodejs/node/pull/56001)
|
|
171
|
+
* \[[`889094fdbc`](https://github.com/nodejs/node/commit/889094fdbc)] - **lib**: handle Float16Array in node:v8 serdes (Bartek Iwańczuk) [#55996](https://github.com/nodejs/node/pull/55996)
|
|
172
|
+
* \[[`5aec513207`](https://github.com/nodejs/node/commit/5aec513207)] - **lib**: disable default memory leak warning for AbortSignal (Lenz Weber-Tronic) [#55816](https://github.com/nodejs/node/pull/55816)
|
|
173
|
+
* \[[`b5a2c0777d`](https://github.com/nodejs/node/commit/b5a2c0777d)] - **(SEMVER-MINOR)** **module**: add prefix-only modules to `module.builtinModules` (Jordan Harband) [#56185](https://github.com/nodejs/node/pull/56185)
|
|
174
|
+
* \[[`9863d27566`](https://github.com/nodejs/node/commit/9863d27566)] - **(SEMVER-MINOR)** **module**: only emit require(esm) warning under --trace-require-module (Joyee Cheung) [#56194](https://github.com/nodejs/node/pull/56194)
|
|
175
|
+
* \[[`5665e86da6`](https://github.com/nodejs/node/commit/5665e86da6)] - **module**: prevent main thread exiting before esm worker ends (Shima Ryuhei) [#56183](https://github.com/nodejs/node/pull/56183)
|
|
176
|
+
* \[[`8e780bc5ae`](https://github.com/nodejs/node/commit/8e780bc5ae)] - **(SEMVER-MINOR)** **module**: use synchronous hooks for preparsing in import(cjs) (Joyee Cheung) [#55698](https://github.com/nodejs/node/pull/55698)
|
|
177
|
+
* \[[`e5bb6c2303`](https://github.com/nodejs/node/commit/e5bb6c2303)] - **(SEMVER-MINOR)** **module**: implement module.registerHooks() (Joyee Cheung) [#55698](https://github.com/nodejs/node/pull/55698)
|
|
178
|
+
* \[[`f883bedceb`](https://github.com/nodejs/node/commit/f883bedceb)] - **node-api**: allow napi\_delete\_reference in finalizers (Chengzhong Wu) [#55620](https://github.com/nodejs/node/pull/55620)
|
|
179
|
+
* \[[`65bc8e847f`](https://github.com/nodejs/node/commit/65bc8e847f)] - **(SEMVER-MINOR)** **report**: fix typos in report keys and bump the version (Yuan-Ming Hsu) [#56068](https://github.com/nodejs/node/pull/56068)
|
|
180
|
+
* \[[`a6f0cfa468`](https://github.com/nodejs/node/commit/a6f0cfa468)] - **sea**: only assert snapshot main function for main threads (Joyee Cheung) [#56120](https://github.com/nodejs/node/pull/56120)
|
|
181
|
+
* \[[`0ab36e1937`](https://github.com/nodejs/node/commit/0ab36e1937)] - **(SEMVER-MINOR)** **sqlite**: aggregate constants in a single property (Edigleysson Silva (Edy)) [#56213](https://github.com/nodejs/node/pull/56213)
|
|
182
|
+
* \[[`4745798225`](https://github.com/nodejs/node/commit/4745798225)] - **sqlite**: add support for custom functions (Colin Ihrig) [#55985](https://github.com/nodejs/node/pull/55985)
|
|
183
|
+
* \[[`53cc0cc744`](https://github.com/nodejs/node/commit/53cc0cc744)] - **sqlite**: support `db.loadExtension` (Alex Yang) [#53900](https://github.com/nodejs/node/pull/53900)
|
|
184
|
+
* \[[`3968599702`](https://github.com/nodejs/node/commit/3968599702)] - **src**: fix outdated js2c.cc references (Chengzhong Wu) [#56133](https://github.com/nodejs/node/pull/56133)
|
|
185
|
+
* \[[`efcc5d90c5`](https://github.com/nodejs/node/commit/efcc5d90c5)] - **(SEMVER-MINOR)** **src,lib**: stabilize permission model (Rafael Gonzaga) [#56201](https://github.com/nodejs/node/pull/56201)
|
|
186
|
+
* \[[`a4a83613cb`](https://github.com/nodejs/node/commit/a4a83613cb)] - **stream**: commit pull-into descriptors after filling from queue (Mattias Buelens) [#56072](https://github.com/nodejs/node/pull/56072)
|
|
187
|
+
* \[[`3298ef4891`](https://github.com/nodejs/node/commit/3298ef4891)] - **test**: remove test-sqlite-statement-sync flaky designation (Luigi Pinca) [#56051](https://github.com/nodejs/node/pull/56051)
|
|
188
|
+
* \[[`1d8cc6179d`](https://github.com/nodejs/node/commit/1d8cc6179d)] - **test**: use --permission over --experimental-permission (Rafael Gonzaga) [#56239](https://github.com/nodejs/node/pull/56239)
|
|
189
|
+
* \[[`5d252b7a67`](https://github.com/nodejs/node/commit/5d252b7a67)] - **test**: remove exludes for sea tests on PPC (Michael Dawson) [#56217](https://github.com/nodejs/node/pull/56217)
|
|
190
|
+
* \[[`8288f57724`](https://github.com/nodejs/node/commit/8288f57724)] - **test**: fix test-abortsignal-drop-settled-signals flakiness (Edigleysson Silva (Edy)) [#56197](https://github.com/nodejs/node/pull/56197)
|
|
191
|
+
* \[[`683cc15796`](https://github.com/nodejs/node/commit/683cc15796)] - **test**: move localizationd data from `test-icu-env` to external file (Livia Medeiros) [#55618](https://github.com/nodejs/node/pull/55618)
|
|
192
|
+
* \[[`a0c4a5f122`](https://github.com/nodejs/node/commit/a0c4a5f122)] - **test**: update WPT for url to 6fa3fe8a92 (Node.js GitHub Bot) [#56136](https://github.com/nodejs/node/pull/56136)
|
|
193
|
+
* \[[`a0e3926285`](https://github.com/nodejs/node/commit/a0e3926285)] - **test**: remove `hasOpenSSL3x` utils (Antoine du Hamel) [#56164](https://github.com/nodejs/node/pull/56164)
|
|
194
|
+
* \[[`041a49094e`](https://github.com/nodejs/node/commit/041a49094e)] - **test**: update streams wpt (Mattias Buelens) [#56072](https://github.com/nodejs/node/pull/56072)
|
|
195
|
+
* \[[`ea9a675f56`](https://github.com/nodejs/node/commit/ea9a675f56)] - **test\_runner**: exclude test files from coverage by default (Pietro Marchini) [#56060](https://github.com/nodejs/node/pull/56060)
|
|
196
|
+
* \[[`118cd9998f`](https://github.com/nodejs/node/commit/118cd9998f)] - **tools**: fix `node:` enforcement for docs (Antoine du Hamel) [#56284](https://github.com/nodejs/node/pull/56284)
|
|
197
|
+
* \[[`c4c56daae8`](https://github.com/nodejs/node/commit/c4c56daae8)] - **tools**: update github\_reporter to 1.7.2 (Node.js GitHub Bot) [#56205](https://github.com/nodejs/node/pull/56205)
|
|
198
|
+
* \[[`78743b1533`](https://github.com/nodejs/node/commit/78743b1533)] - **tools**: add REPLACEME check to workflow (Mert Can Altin) [#56251](https://github.com/nodejs/node/pull/56251)
|
|
199
|
+
* \[[`002ee71d9b`](https://github.com/nodejs/node/commit/002ee71d9b)] - **tools**: use `github.actor` instead of bot username for release proposals (Antoine du Hamel) [#56232](https://github.com/nodejs/node/pull/56232)
|
|
200
|
+
* \[[`d25d16efeb`](https://github.com/nodejs/node/commit/d25d16efeb)] - _**Revert**_ "**tools**: disable automated libuv updates" (Luigi Pinca) [#56223](https://github.com/nodejs/node/pull/56223)
|
|
201
|
+
* \[[`b395e0c8c9`](https://github.com/nodejs/node/commit/b395e0c8c9)] - **tools**: update gyp-next to 0.19.1 (Anna Henningsen) [#56111](https://github.com/nodejs/node/pull/56111)
|
|
202
|
+
* \[[`a5aaf31c50`](https://github.com/nodejs/node/commit/a5aaf31c50)] - **tools**: fix release proposal linter to support more than 1 folk preparing (Antoine du Hamel) [#56203](https://github.com/nodejs/node/pull/56203)
|
|
203
|
+
* \[[`fa667d609e`](https://github.com/nodejs/node/commit/fa667d609e)] - **tools**: remove has\_absl\_stringify from gyp file (Michaël Zasso) [#56157](https://github.com/nodejs/node/pull/56157)
|
|
204
|
+
* \[[`65b541e70e`](https://github.com/nodejs/node/commit/65b541e70e)] - **tools**: enable linter for `tools/icu/**` (Livia Medeiros) [#56176](https://github.com/nodejs/node/pull/56176)
|
|
205
|
+
* \[[`28a4b6ff58`](https://github.com/nodejs/node/commit/28a4b6ff58)] - **tools**: use commit title as PR title when creating release proposal (Antoine du Hamel) [#56165](https://github.com/nodejs/node/pull/56165)
|
|
206
|
+
* \[[`e20eef659f`](https://github.com/nodejs/node/commit/e20eef659f)] - **tools**: update gyp-next to 0.19.0 (Node.js GitHub Bot) [#56158](https://github.com/nodejs/node/pull/56158)
|
|
207
|
+
* \[[`efcc829085`](https://github.com/nodejs/node/commit/efcc829085)] - **tools**: bump the eslint group in /tools/eslint with 4 updates (dependabot\[bot]) [#56099](https://github.com/nodejs/node/pull/56099)
|
|
208
|
+
* \[[`5620b2be8a`](https://github.com/nodejs/node/commit/5620b2be8a)] - **tools**: improve release proposal PR opening (Antoine du Hamel) [#56161](https://github.com/nodejs/node/pull/56161)
|
|
209
|
+
* \[[`3e17a8e78e`](https://github.com/nodejs/node/commit/3e17a8e78e)] - **util**: harden more built-in classes against prototype pollution (Antoine du Hamel) [#56225](https://github.com/nodejs/node/pull/56225)
|
|
210
|
+
* \[[`13815417c7`](https://github.com/nodejs/node/commit/13815417c7)] - **util**: fix Latin1 decoding to return string output (Mert Can Altin) [#56222](https://github.com/nodejs/node/pull/56222)
|
|
211
|
+
* \[[`77397c5013`](https://github.com/nodejs/node/commit/77397c5013)] - **util**: do not rely on mutable `Object` and `Function`' `constructor` prop (Antoine du Hamel) [#56188](https://github.com/nodejs/node/pull/56188)
|
|
212
|
+
* \[[`84f98e0a74`](https://github.com/nodejs/node/commit/84f98e0a74)] - **v8,tools**: expose experimental wasm revectorize feature (Yolanda-Chen) [#54896](https://github.com/nodejs/node/pull/54896)
|
|
213
|
+
* \[[`8325fa5c04`](https://github.com/nodejs/node/commit/8325fa5c04)] - **worker**: fix crash when a worker joins after exit (Stephen Belanger) [#56191](https://github.com/nodejs/node/pull/56191)
|
|
214
|
+
|
|
215
|
+
<a id="23.4.0"></a>
|
|
216
|
+
|
|
217
|
+
## 2024-12-10, Version 23.4.0 (Current), @aduh95 prepared by @targos
|
|
218
|
+
|
|
219
|
+
### Notable Changes
|
|
220
|
+
|
|
221
|
+
#### Introducing experimental `assert.partialDeepStrictEqual`
|
|
222
|
+
|
|
223
|
+
Sometimes, when writing test, we want to validate that some specific properties
|
|
224
|
+
are present, and the mere presence of additional keys are not exactly relevant
|
|
225
|
+
for that specific test. For this use case, we can now use
|
|
226
|
+
`assert.partialDeepStrictEqual`, which should be familiar to those already using
|
|
227
|
+
`assert.deepStrictEqual`, with the main difference that it does not require all
|
|
228
|
+
properties in the `actual` parameter to be present in the `expected` parameter.
|
|
229
|
+
|
|
230
|
+
Here are a few examples of usage:
|
|
231
|
+
|
|
232
|
+
```js
|
|
233
|
+
assert.partialDeepStrictEqual(
|
|
234
|
+
{ a: 1, b: 2, c: 3 },
|
|
235
|
+
{ a: 1, b: 2 },
|
|
236
|
+
);
|
|
237
|
+
|
|
238
|
+
assert.partialDeepStrictEqual(
|
|
239
|
+
[1, 2, 3, 4],
|
|
240
|
+
[2, 3],
|
|
241
|
+
);
|
|
242
|
+
|
|
243
|
+
assert.partialDeepStrictEqual(
|
|
244
|
+
{ a: { b: { c: 1, d: 2 } }, e: 3 },
|
|
245
|
+
{ a: { b: { c: 1 } } },
|
|
246
|
+
);
|
|
247
|
+
|
|
248
|
+
assert.partialDeepStrictEqual(
|
|
249
|
+
{ a: { b: { c: 1, d: 2 } }, e: 3 },
|
|
250
|
+
{ a: { b: { c: 1 } } },
|
|
251
|
+
);
|
|
252
|
+
|
|
253
|
+
assert.partialDeepStrictEqual(
|
|
254
|
+
new Set([{ a: 1 }, { b: 1 }]),
|
|
255
|
+
new Set([{ a: 1 }]),
|
|
256
|
+
);
|
|
257
|
+
|
|
258
|
+
assert.partialDeepStrictEqual(
|
|
259
|
+
{ a: new Set([{ a: 1 }, { b: 1 }]), b: new Map(), c: [1, 2, 3] },
|
|
260
|
+
{ a: new Set([{ a: 1 }]), c: [2] },
|
|
261
|
+
);
|
|
262
|
+
```
|
|
263
|
+
|
|
264
|
+
Contributed by Giovanni Bucci in [#54630](https://github.com/nodejs/node/pull/54630).
|
|
265
|
+
|
|
266
|
+
#### Other notable changes
|
|
267
|
+
|
|
268
|
+
* \[[`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)
|
|
269
|
+
* \[[`59d6891872`](https://github.com/nodejs/node/commit/59d6891872)] - **doc**: add LJHarb to collaborators (Jordan Harband) [#56132](https://github.com/nodejs/node/pull/56132)
|
|
270
|
+
* \[[`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)
|
|
271
|
+
* \[[`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)
|
|
272
|
+
* \[[`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)
|
|
273
|
+
* \[[`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)
|
|
274
|
+
* \[[`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)
|
|
275
|
+
* \[[`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)
|
|
276
|
+
* \[[`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)
|
|
277
|
+
|
|
278
|
+
### Commits
|
|
279
|
+
|
|
280
|
+
* \[[`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)
|
|
281
|
+
* \[[`a4f57f0293`](https://github.com/nodejs/node/commit/a4f57f0293)] - **(SEMVER-MINOR)** **assert**: add partialDeepStrictEqual (Giovanni Bucci) [#54630](https://github.com/nodejs/node/pull/54630)
|
|
282
|
+
* \[[`1b81a7d003`](https://github.com/nodejs/node/commit/1b81a7d003)] - **build**: allow overriding clang usage (Shelley Vohr) [#56016](https://github.com/nodejs/node/pull/56016)
|
|
283
|
+
* \[[`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)
|
|
284
|
+
* \[[`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)
|
|
285
|
+
* \[[`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)
|
|
286
|
+
* \[[`2023b09d27`](https://github.com/nodejs/node/commit/2023b09d27)] - **build**: add create release proposal action (Rafael Gonzaga) [#55690](https://github.com/nodejs/node/pull/55690)
|
|
287
|
+
* \[[`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)
|
|
288
|
+
* \[[`f48e289580`](https://github.com/nodejs/node/commit/f48e289580)] - **build**: fix GN build for sqlite (Cheng) [#55912](https://github.com/nodejs/node/pull/55912)
|
|
289
|
+
* \[[`fffabca6b8`](https://github.com/nodejs/node/commit/fffabca6b8)] - **build**: compile bundled simdutf conditionally (Jakub Jirutka) [#55886](https://github.com/nodejs/node/pull/55886)
|
|
290
|
+
* \[[`d8eb83c5c5`](https://github.com/nodejs/node/commit/d8eb83c5c5)] - **build**: compile bundled simdjson conditionally (Jakub Jirutka) [#55886](https://github.com/nodejs/node/pull/55886)
|
|
291
|
+
* \[[`83e02dc482`](https://github.com/nodejs/node/commit/83e02dc482)] - **build**: compile bundled ada conditionally (Jakub Jirutka) [#55886](https://github.com/nodejs/node/pull/55886)
|
|
292
|
+
* \[[`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)
|
|
293
|
+
* \[[`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)
|
|
294
|
+
* \[[`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)
|
|
295
|
+
* \[[`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)
|
|
296
|
+
* \[[`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)
|
|
297
|
+
* \[[`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)
|
|
298
|
+
* \[[`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)
|
|
299
|
+
* \[[`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)
|
|
300
|
+
* \[[`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)
|
|
301
|
+
* \[[`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)
|
|
302
|
+
* \[[`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)
|
|
303
|
+
* \[[`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)
|
|
304
|
+
* \[[`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)
|
|
305
|
+
* \[[`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)
|
|
306
|
+
* \[[`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)
|
|
307
|
+
* \[[`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)
|
|
308
|
+
* \[[`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)
|
|
309
|
+
* \[[`59d6891872`](https://github.com/nodejs/node/commit/59d6891872)] - **doc**: add LJHarb to collaborators (Jordan Harband) [#56132](https://github.com/nodejs/node/pull/56132)
|
|
310
|
+
* \[[`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)
|
|
311
|
+
* \[[`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)
|
|
312
|
+
* \[[`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)
|
|
313
|
+
* \[[`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)
|
|
314
|
+
* \[[`498f44ad73`](https://github.com/nodejs/node/commit/498f44ad73)] - **doc**: add FAQ to releases section (Rafael Gonzaga) [#55992](https://github.com/nodejs/node/pull/55992)
|
|
315
|
+
* \[[`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)
|
|
316
|
+
* \[[`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)
|
|
317
|
+
* \[[`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)
|
|
318
|
+
* \[[`6be3824d6f`](https://github.com/nodejs/node/commit/6be3824d6f)] - **doc**: fix deprecation codes (Filip Skokan) [#56018](https://github.com/nodejs/node/pull/56018)
|
|
319
|
+
* \[[`fa2b35d28d`](https://github.com/nodejs/node/commit/fa2b35d28d)] - **doc**: remove confusing and outdated sentence (Luigi Pinca) [#55988](https://github.com/nodejs/node/pull/55988)
|
|
320
|
+
* \[[`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)
|
|
321
|
+
* \[[`a3f7db6b6d`](https://github.com/nodejs/node/commit/a3f7db6b6d)] - **doc**: add doc for PerformanceObserver.takeRecords() (skyclouds2001) [#55786](https://github.com/nodejs/node/pull/55786)
|
|
322
|
+
* \[[`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)
|
|
323
|
+
* \[[`98f8f4a8a9`](https://github.com/nodejs/node/commit/98f8f4a8a9)] - **doc**: order `node:crypto` APIs alphabetically (Julian Gassner) [#55831](https://github.com/nodejs/node/pull/55831)
|
|
324
|
+
* \[[`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)
|
|
325
|
+
* \[[`ff48c29724`](https://github.com/nodejs/node/commit/ff48c29724)] - **doc**: add esm example for zlib (Leonardo Peixoto) [#55946](https://github.com/nodejs/node/pull/55946)
|
|
326
|
+
* \[[`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)
|
|
327
|
+
* \[[`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)
|
|
328
|
+
* \[[`9d078802ad`](https://github.com/nodejs/node/commit/9d078802ad)] - **doc**: remove RedYetiDev from triagers team (Aviv Keller) [#55947](https://github.com/nodejs/node/pull/55947)
|
|
329
|
+
* \[[`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)
|
|
330
|
+
* \[[`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)
|
|
331
|
+
* \[[`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)
|
|
332
|
+
* \[[`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)
|
|
333
|
+
* \[[`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)
|
|
334
|
+
* \[[`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)
|
|
335
|
+
* \[[`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)
|
|
336
|
+
* \[[`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)
|
|
337
|
+
* \[[`8faf91846b`](https://github.com/nodejs/node/commit/8faf91846b)] - **lib**: fix `fs.readdir` recursive async (Rafael Gonzaga) [#56041](https://github.com/nodejs/node/pull/56041)
|
|
338
|
+
* \[[`a2382303d7`](https://github.com/nodejs/node/commit/a2382303d7)] - **lib**: refactor code to improve readability (Pietro Marchini) [#55995](https://github.com/nodejs/node/pull/55995)
|
|
339
|
+
* \[[`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)
|
|
340
|
+
* \[[`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)
|
|
341
|
+
* \[[`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)
|
|
342
|
+
* \[[`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)
|
|
343
|
+
* \[[`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)
|
|
344
|
+
* \[[`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)
|
|
345
|
+
* \[[`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)
|
|
346
|
+
* \[[`b8ab5332a9`](https://github.com/nodejs/node/commit/b8ab5332a9)] - **module**: remove --experimental-default-type (Geoffrey Booth) [#56092](https://github.com/nodejs/node/pull/56092)
|
|
347
|
+
* \[[`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)
|
|
348
|
+
* \[[`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)
|
|
349
|
+
* \[[`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)
|
|
350
|
+
* \[[`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)
|
|
351
|
+
* \[[`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)
|
|
352
|
+
* \[[`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)
|
|
353
|
+
* \[[`d09e57b26d`](https://github.com/nodejs/node/commit/d09e57b26d)] - **quic**: update more QUIC implementation (James M Snell) [#55986](https://github.com/nodejs/node/pull/55986)
|
|
354
|
+
* \[[`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)
|
|
355
|
+
* \[[`9e4f7aa808`](https://github.com/nodejs/node/commit/9e4f7aa808)] - **sqlite**: deps include `sqlite3ext.h` (Alex Yang) [#56010](https://github.com/nodejs/node/pull/56010)
|
|
356
|
+
* \[[`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)
|
|
357
|
+
* \[[`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)
|
|
358
|
+
* \[[`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)
|
|
359
|
+
* \[[`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)
|
|
360
|
+
* \[[`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)
|
|
361
|
+
* \[[`4dea44e468`](https://github.com/nodejs/node/commit/4dea44e468)] - **src**: avoid copy on getV8FastApiCallCount (Yagiz Nizipli) [#56081](https://github.com/nodejs/node/pull/56081)
|
|
362
|
+
* \[[`b778a4fe46`](https://github.com/nodejs/node/commit/b778a4fe46)] - **src**: fix check fd (theanarkh) [#56000](https://github.com/nodejs/node/pull/56000)
|
|
363
|
+
* \[[`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)
|
|
364
|
+
* \[[`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)
|
|
365
|
+
* \[[`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)
|
|
366
|
+
* \[[`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)
|
|
367
|
+
* \[[`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)
|
|
368
|
+
* \[[`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)
|
|
369
|
+
* \[[`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)
|
|
370
|
+
* \[[`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)
|
|
371
|
+
* \[[`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)
|
|
372
|
+
* \[[`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)
|
|
373
|
+
* \[[`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)
|
|
374
|
+
* \[[`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)
|
|
375
|
+
* \[[`493e16c852`](https://github.com/nodejs/node/commit/493e16c852)] - **test**: fix determining lower priority (Livia Medeiros) [#55908](https://github.com/nodejs/node/pull/55908)
|
|
376
|
+
* \[[`99858ceb9f`](https://github.com/nodejs/node/commit/99858ceb9f)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#55997](https://github.com/nodejs/node/pull/55997)
|
|
377
|
+
* \[[`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)
|
|
378
|
+
* \[[`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)
|
|
379
|
+
* \[[`c048865199`](https://github.com/nodejs/node/commit/c048865199)] - **test\_runner**: simplify hook running logic (Colin Ihrig) [#55963](https://github.com/nodejs/node/pull/55963)
|
|
380
|
+
* \[[`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)
|
|
381
|
+
* \[[`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)
|
|
382
|
+
* \[[`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)
|
|
383
|
+
* \[[`98ce4652e2`](https://github.com/nodejs/node/commit/98ce4652e2)] - **tools**: fix update-undici script (Michaël Zasso) [#56069](https://github.com/nodejs/node/pull/56069)
|
|
384
|
+
* \[[`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)
|
|
385
|
+
* \[[`cc96fce5eb`](https://github.com/nodejs/node/commit/cc96fce5eb)] - **tools**: fix nghttp3 updater script (Antoine du Hamel) [#56007](https://github.com/nodejs/node/pull/56007)
|
|
386
|
+
* \[[`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)
|
|
387
|
+
* \[[`4b3919f1be`](https://github.com/nodejs/node/commit/4b3919f1be)] - **tools**: update WPT updater (Antoine du Hamel) [#56003](https://github.com/nodejs/node/pull/56003)
|
|
388
|
+
* \[[`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)
|
|
389
|
+
* \[[`32b1681b7f`](https://github.com/nodejs/node/commit/32b1681b7f)] - **tools**: use tokenless Codecov uploads (Michaël Zasso) [#55943](https://github.com/nodejs/node/pull/55943)
|
|
390
|
+
* \[[`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)
|
|
391
|
+
* \[[`d093820f64`](https://github.com/nodejs/node/commit/d093820f64)] - **tools**: lint js in `doc/**/*.md` (Livia Medeiros) [#55904](https://github.com/nodejs/node/pull/55904)
|
|
392
|
+
* \[[`72eb710f0f`](https://github.com/nodejs/node/commit/72eb710f0f)] - **tools**: fix riscv64 build failed (Lu Yahan) [#52888](https://github.com/nodejs/node/pull/52888)
|
|
393
|
+
* \[[`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)
|
|
394
|
+
* \[[`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)
|
|
395
|
+
|
|
44
396
|
<a id="23.3.0"></a>
|
|
45
397
|
|
|
46
398
|
## 2024-11-20, Version 23.3.0 (Current), @RafaelGSS
|
|
@@ -246,11 +598,11 @@ will now correctly change as the underlying `ArrayBuffer` size is changed.
|
|
|
246
598
|
```js
|
|
247
599
|
const ab = new ArrayBuffer(10, { maxByteLength: 20 });
|
|
248
600
|
const buffer = Buffer.from(ab);
|
|
249
|
-
console.log(buffer.byteLength); 10
|
|
601
|
+
console.log(buffer.byteLength); // 10
|
|
250
602
|
ab.resize(15);
|
|
251
|
-
console.log(buffer.byteLength); 15
|
|
603
|
+
console.log(buffer.byteLength); // 15
|
|
252
604
|
ab.resize(5);
|
|
253
|
-
console.log(buffer.byteLength); 5
|
|
605
|
+
console.log(buffer.byteLength); // 5
|
|
254
606
|
```
|
|
255
607
|
|
|
256
608
|
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/common.gypi
CHANGED
package/include/node/config.gypi
CHANGED
|
@@ -186,6 +186,7 @@
|
|
|
186
186
|
'lib/internal/main/worker_thread.js',
|
|
187
187
|
'lib/internal/mime.js',
|
|
188
188
|
'lib/internal/modules/cjs/loader.js',
|
|
189
|
+
'lib/internal/modules/customization_hooks.js',
|
|
189
190
|
'lib/internal/modules/esm/assert.js',
|
|
190
191
|
'lib/internal/modules/esm/create_dynamic_module.js',
|
|
191
192
|
'lib/internal/modules/esm/formats.js',
|
|
@@ -236,6 +237,9 @@
|
|
|
236
237
|
'lib/internal/promise_hooks.js',
|
|
237
238
|
'lib/internal/querystring.js',
|
|
238
239
|
'lib/internal/quic/quic.js',
|
|
240
|
+
'lib/internal/quic/state.js',
|
|
241
|
+
'lib/internal/quic/stats.js',
|
|
242
|
+
'lib/internal/quic/symbols.js',
|
|
239
243
|
'lib/internal/readline/callbacks.js',
|
|
240
244
|
'lib/internal/readline/emitKeypressEvents.js',
|
|
241
245
|
'lib/internal/readline/interface.js',
|
package/include/node/node.exp
CHANGED
|
@@ -5967,7 +5967,12 @@ _CONF_get_string
|
|
|
5967
5967
|
_CONF_new_data
|
|
5968
5968
|
_CONF_new_section
|
|
5969
5969
|
_CompoundTextData_76
|
|
5970
|
+
_GLOBAL__AIXD_libsqlite_extension_a
|
|
5971
|
+
_GLOBAL__AIXI_libsqlite_extension_a
|
|
5972
|
+
_GLOBAL__D_65535_0___dso_handle
|
|
5970
5973
|
_GLOBAL__D_65535_0_uv__strdup
|
|
5974
|
+
_GLOBAL__FD_libsqlite_extension_a
|
|
5975
|
+
_GLOBAL__FI_libsqlite_extension_a
|
|
5971
5976
|
_GLOBAL__F__ZN2v84base18ContextualVariableINS_8internal6torque14TorqueMessagesESt6vectorINS3_13TorqueMessageESaIS6_EEE11ExportedTopEv
|
|
5972
5977
|
_GLOBAL__F__ZN2v84base18ContextualVariableINS_8internal6torque17CurrentSourceFileENS3_8SourceIdEE11ExportedTopEv
|
|
5973
5978
|
_GLOBAL__F__ZN2v84base18ContextualVariableINS_8internal6torque18LanguageServerDataES4_E11ExportedTopEv
|
|
@@ -6017,7 +6022,7 @@ _GLOBAL__I_65535_0_.._deps_v8_src_sandbox_js_dispatch_table.cc_DFF67DD7_0x250143
|
|
|
6017
6022
|
_GLOBAL__I_65535_0_.._deps_v8_src_sandbox_sandbox.cc_D1AFF0D6_0xe15a04a663233df2
|
|
6018
6023
|
_GLOBAL__I_65535_0_.._deps_v8_src_sandbox_testing.cc_7874F2D3_0x72e1062cb6a817ff
|
|
6019
6024
|
_GLOBAL__I_65535_0_.._deps_v8_src_sandbox_trusted_pointer_table.cc_DFF67DD7_0x30766053216e0e26
|
|
6020
|
-
_GLOBAL__I_65535_0_.._src_connection_wrap.
|
|
6025
|
+
_GLOBAL__I_65535_0_.._src_connection_wrap.cc_DFF67DD7_0x57d1c33fcecd96a6
|
|
6021
6026
|
_GLOBAL__I_65535_0_OPENSSL_ppccap_P
|
|
6022
6027
|
_GLOBAL__I_65535_0__Z17_register_symbolsv
|
|
6023
6028
|
_GLOBAL__I_65535_0__Z22_register_process_wrapv
|
|
@@ -7076,7 +7081,7 @@ _GLOBAL__I_65535_0__ZN4node20IsExceptionDecoratedEPNS_11EnvironmentEN2v85LocalIN
|
|
|
7076
7081
|
_GLOBAL__I_65535_0__ZN4node20SyncProcessStdioPipeC2EPNS_17SyncProcessRunnerEbb8uv_buf_t
|
|
7077
7082
|
_GLOBAL__I_65535_0__ZN4node21PromiseRejectCallbackEN2v820PromiseRejectMessageE
|
|
7078
7083
|
_GLOBAL__I_65535_0__ZN4node21SpinEventLoopInternalEPNS_11EnvironmentE
|
|
7079
|
-
|
|
7084
|
+
_GLOBAL__I_65535_0__ZN4node22ProcessEmitWarningSyncEPNS_11EnvironmentESt17basic_string_viewIcSt11char_traitsIcEE
|
|
7080
7085
|
_GLOBAL__I_65535_0__ZN4node23IsConstructCallCallbackERKN2v820FunctionCallbackInfoINS0_5ValueEEE
|
|
7081
7086
|
_GLOBAL__I_65535_0__ZN4node23WorkerThreadsTaskRunnerC2Ei
|
|
7082
7087
|
_GLOBAL__I_65535_0__ZN4node25ExternalReferenceRegistry19external_referencesEv
|
|
@@ -7138,7 +7143,7 @@ _GLOBAL__I_65535_0__ZN4node6loader10ModuleWrapC2EPNS_5RealmEN2v85LocalINS4_6Obje
|
|
|
7138
7143
|
_GLOBAL__I_65535_0__ZN4node6report10WalkHandleEP11uv_handle_sPvb
|
|
7139
7144
|
_GLOBAL__I_65535_0__ZN4node6report11WriteReportERKN2v820FunctionCallbackInfoINS1_5ValueEEE
|
|
7140
7145
|
_GLOBAL__I_65535_0__ZN4node6serdes17SerializerContextC2EPNS_11EnvironmentEN2v85LocalINS4_6ObjectEEE
|
|
7141
|
-
|
|
7146
|
+
_GLOBAL__I_65535_0__ZN4node6sqlite12DatabaseSyncC2EPNS_11EnvironmentEN2v85LocalINS4_6ObjectEEEONS0_25DatabaseOpenConfigurationEbb
|
|
7142
7147
|
_GLOBAL__I_65535_0__ZN4node6timers11BindingData11SetupTimersERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
7143
7148
|
_GLOBAL__I_65535_0__ZN4node6worker12TransferData21FinalizeTransferWriteEN2v85LocalINS2_7ContextEEEPNS2_15ValueSerializerE
|
|
7144
7149
|
_GLOBAL__I_65535_0__ZN4node6worker6WorkerC2EPNS_11EnvironmentEN2v85LocalINS4_6ObjectEEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESF_St10shared_ptrINS_17PerIsolateOptionsEEOSt6vectorISD_SaISD_EESG_INS_7KVStoreEEPKNS_12SnapshotDataE
|
|
@@ -62539,7 +62544,6 @@ _ZN4heap4base8WorklistISt4pairIN2v88internal6TaggedINS4_10HeapObjectEEEiELt256EE
|
|
|
62539
62544
|
_ZN4heap4base8WorklistISt4pairIN2v88internal6TaggedINS4_10HeapObjectEEEiELt256EE7Segment6CreateEt
|
|
62540
62545
|
_ZN4heap4base8internal11SegmentBase25GetSentinelSegmentAddressEv
|
|
62541
62546
|
_ZN4node10AsyncHooks11DeserializeEN2v85LocalINS1_7ContextEEE
|
|
62542
|
-
_ZN4node10AsyncHooks15GetPromiseHooksEPN2v87IsolateE
|
|
62543
62547
|
_ZN4node10AsyncHooks17ResetPromiseHooksEN2v85LocalINS1_8FunctionEEES4_S4_S4_
|
|
62544
62548
|
_ZN4node10AsyncHooks17pop_async_contextEd
|
|
62545
62549
|
_ZN4node10AsyncHooks18push_async_contextEddN2v85LocalINS1_6ObjectEEE
|
|
@@ -62948,7 +62952,6 @@ _ZN4node11Environment23allocate_managed_bufferEm
|
|
|
62948
62952
|
_ZN4node11Environment24stop_sub_worker_contextsEv
|
|
62949
62953
|
_ZN4node11Environment25EnqueueDeserializeRequestEPFvN2v85LocalINS1_7ContextEEENS2_INS1_6ObjectEEEiPNS_21InternalFieldInfoBaseEES6_iS8_
|
|
62950
62954
|
_ZN4node11Environment25StartProfilerIdleNotifierEv
|
|
62951
|
-
_ZN4node11Environment27CheckUnsettledTopLevelAwaitEv
|
|
62952
62955
|
_ZN4node11Environment27PrintInfoForSnapshotIfDebugEv
|
|
62953
62956
|
_ZN4node11Environment27RunAndClearNativeImmediatesEb
|
|
62954
62957
|
_ZN4node11Environment33WaitForInspectorFrontendByOptionsEv
|
|
@@ -62978,7 +62981,7 @@ _ZN4node11IsolateDataD0Ev
|
|
|
62978
62981
|
_ZN4node11IsolateDataD1Ev
|
|
62979
62982
|
_ZN4node11IsolateDataD2Ev
|
|
62980
62983
|
_ZN4node11PathResolveB5cxx11EPNS_11EnvironmentERKSt6vectorISt17basic_string_viewIcSt11char_traitsIcEESaIS6_EE
|
|
62981
|
-
|
|
62984
|
+
_ZN4node11ProcessEmitEPNS_11EnvironmentESt17basic_string_viewIcSt11char_traitsIcEEN2v85LocalINS6_5ValueEEE
|
|
62982
62985
|
_ZN4node11RAIIIsolateC1EPKNS_12SnapshotDataE
|
|
62983
62986
|
_ZN4node11RAIIIsolateC2EPKNS_12SnapshotDataE
|
|
62984
62987
|
_ZN4node11RAIIIsolateD1Ev
|
|
@@ -63217,7 +63220,7 @@ _ZN4node11UDPWrapBaseD1Ev
|
|
|
63217
63220
|
_ZN4node11UDPWrapBaseD2Ev
|
|
63218
63221
|
_ZN4node11UVExceptionEPN2v87IsolateEiPKcS4_S4_S4_
|
|
63219
63222
|
_ZN4node11Uint32ToHexB5cxx11Ej
|
|
63220
|
-
|
|
63223
|
+
_ZN4node11credentials10SafeGetenvEPKcPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPNS_11EnvironmentE
|
|
63221
63224
|
_ZN4node11credentials26RegisterExternalReferencesEPNS_25ExternalReferenceRegistryE
|
|
63222
63225
|
_ZN4node11http_parser11BindingDataD0Ev
|
|
63223
63226
|
_ZN4node11http_parser11BindingDataD1Ev
|
|
@@ -63971,12 +63974,13 @@ _ZN4node16ERR_OUT_OF_RANGEIJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE
|
|
|
63971
63974
|
_ZN4node16ERR_OUT_OF_RANGEIJPcEEEN2v85LocalINS2_6ObjectEEEPNS2_7IsolateEPKcDpOT_
|
|
63972
63975
|
_ZN4node16ERR_OUT_OF_RANGEIJRKiRxEEEN2v85LocalINS4_6ObjectEEEPNS4_7IsolateEPKcDpOT_
|
|
63973
63976
|
_ZN4node16ERR_OUT_OF_RANGEIJRiS1_EEEN2v85LocalINS2_6ObjectEEEPNS2_7IsolateEPKcDpOT_
|
|
63977
|
+
_ZN4node16ERR_OUT_OF_RANGEIJRxEEEN2v85LocalINS2_6ObjectEEEPNS2_7IsolateEPKcDpOT_
|
|
63974
63978
|
_ZN4node16ERR_OUT_OF_RANGEIJiEEEN2v85LocalINS1_6ObjectEEEPNS1_7IsolateEPKcDpOT_
|
|
63975
63979
|
_ZN4node16ERR_PROTO_ACCESSIJEEEN2v85LocalINS1_6ObjectEEEPNS1_7IsolateEPKcDpOT_
|
|
63976
63980
|
_ZN4node16EmitAsyncDestroyEPN2v87IsolateENS_13async_contextE
|
|
63977
63981
|
_ZN4node16EmitAsyncDestroyEPNS_11EnvironmentENS_13async_contextE
|
|
63982
|
+
_ZN4node16EnabledDebugList5ParseEPNS_11EnvironmentE
|
|
63978
63983
|
_ZN4node16EnabledDebugList5ParseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE
|
|
63979
|
-
_ZN4node16EnabledDebugList5ParseESt10shared_ptrINS_7KVStoreEE
|
|
63980
63984
|
_ZN4node16GetActiveHandlesERKN2v820FunctionCallbackInfoINS0_5ValueEEE
|
|
63981
63985
|
_ZN4node16GetDefaultLocaleERKN2v820FunctionCallbackInfoINS0_5ValueEEE
|
|
63982
63986
|
_ZN4node16GetValidFileModeEPNS_11EnvironmentEN2v85LocalINS2_5ValueEEE10uv_fs_type
|
|
@@ -63994,6 +63998,7 @@ _ZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm1024EE25AllocateSufficientS
|
|
|
63994
63998
|
_ZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm128EE25AllocateSufficientStorageEm
|
|
63995
63999
|
_ZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm16EE25AllocateSufficientStorageEm
|
|
63996
64000
|
_ZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm256EE25AllocateSufficientStorageEm
|
|
64001
|
+
_ZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm32EE25AllocateSufficientStorageEm
|
|
63997
64002
|
_ZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm5EE25AllocateSufficientStorageEm
|
|
63998
64003
|
_ZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm64EE25AllocateSufficientStorageEm
|
|
63999
64004
|
_ZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm8EE25AllocateSufficientStorageEm
|
|
@@ -64022,6 +64027,7 @@ _ZN4node16WithoutCodeCacheERKNS_14SnapshotConfigE
|
|
|
64022
64027
|
_ZN4node16encoding_binding11BindingData10DecodeUTF8ERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
64023
64028
|
_ZN4node16encoding_binding11BindingData10EncodeIntoERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
64024
64029
|
_ZN4node16encoding_binding11BindingData11DeserializeEN2v85LocalINS2_7ContextEEENS3_INS2_6ObjectEEEiPNS_21InternalFieldInfoBaseE
|
|
64030
|
+
_ZN4node16encoding_binding11BindingData12DecodeLatin1ERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
64025
64031
|
_ZN4node16encoding_binding11BindingData16EncodeUtf8StringERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
64026
64032
|
_ZN4node16encoding_binding11BindingData23PrepareForSerializationEN2v85LocalINS2_7ContextEEEPNS2_15SnapshotCreatorE
|
|
64027
64033
|
_ZN4node16encoding_binding11BindingData26CreatePerContextPropertiesEN2v85LocalINS2_6ObjectEEENS3_INS2_5ValueEEENS3_INS2_7ContextEEEPv
|
|
@@ -64178,6 +64184,8 @@ _ZN4node18MemoryRetainerNode4NameEv
|
|
|
64178
64184
|
_ZN4node18MemoryRetainerNodeD0Ev
|
|
64179
64185
|
_ZN4node18MemoryRetainerNodeD1Ev
|
|
64180
64186
|
_ZN4node18PatchProcessObjectERKN2v820FunctionCallbackInfoINS0_5ValueEEE
|
|
64187
|
+
_ZN4node18PrintTraceEnvStackEPNS_11EnvironmentE
|
|
64188
|
+
_ZN4node18PrintTraceEnvStackESt10shared_ptrINS_18EnvironmentOptionsEE
|
|
64181
64189
|
_ZN4node18ReadSnapshotConfigEPKc
|
|
64182
64190
|
_ZN4node18RunEmbedderPreloadERKN2v820FunctionCallbackInfoINS0_5ValueEEE
|
|
64183
64191
|
_ZN4node18SerializeCodeCacheEN2v85LocalINS0_6ModuleEEE
|
|
@@ -64395,7 +64403,7 @@ _ZN4node22PerIsolatePlatformDataD0Ev
|
|
|
64395
64403
|
_ZN4node22PerIsolatePlatformDataD1Ev
|
|
64396
64404
|
_ZN4node22PerIsolatePlatformDataD2Ev
|
|
64397
64405
|
_ZN4node22PrintCurrentStackTraceEPN2v87IsolateENS_16StackTracePrefixE
|
|
64398
|
-
|
|
64406
|
+
_ZN4node22ProcessEmitWarningSyncEPNS_11EnvironmentESt17basic_string_viewIcSt11char_traitsIcEE
|
|
64399
64407
|
_ZN4node22SetConstructorFunctionEN2v85LocalINS0_7ContextEEENS1_INS0_6ObjectEEENS1_INS0_6StringEEENS1_INS0_16FunctionTemplateEEENS_26SetConstructorFunctionFlagE
|
|
64400
64408
|
_ZN4node22SetConstructorFunctionEN2v85LocalINS0_7ContextEEENS1_INS0_6ObjectEEEPKcNS1_INS0_16FunctionTemplateEEENS_26SetConstructorFunctionFlagE
|
|
64401
64409
|
_ZN4node22SetConstructorFunctionEPN2v87IsolateENS0_5LocalINS0_8TemplateEEENS3_INS0_6StringEEENS3_INS0_16FunctionTemplateEEENS_26SetConstructorFunctionFlagE
|
|
@@ -64439,6 +64447,7 @@ _ZN4node22TearDownOncePerProcessEv
|
|
|
64439
64447
|
_ZN4node22WriteByteVectorLiteralIcEEvPSoPKT_mPKcb
|
|
64440
64448
|
_ZN4node22WriteByteVectorLiteralIhEEvPSoPKT_mPKcb
|
|
64441
64449
|
_ZN4node23ArrayBufferViewContentsIcLm64EE9ReadValueEN2v85LocalINS2_5ValueEEE
|
|
64450
|
+
_ZN4node23ArrayBufferViewContentsIhLm64EE9ReadValueEN2v85LocalINS2_5ValueEEE
|
|
64442
64451
|
_ZN4node23DumpJavaScriptBacktraceEP4FILE
|
|
64443
64452
|
_ZN4node23ERR_CLOSED_MESSAGE_PORTIJEEEN2v85LocalINS1_6ObjectEEEPNS1_7IsolateEPKcDpOT_
|
|
64444
64453
|
_ZN4node23ERR_ILLEGAL_CONSTRUCTORIJEEEN2v85LocalINS1_6ObjectEEEPNS1_7IsolateEPKcDpOT_
|
|
@@ -64502,6 +64511,7 @@ _ZN4node25ERR_CRYPTO_INVALID_KEYLENIJEEEN2v85LocalINS1_6ObjectEEEPNS1_7IsolateEP
|
|
|
64502
64511
|
_ZN4node25ERR_CRYPTO_UNKNOWN_CIPHERIJEEEN2v85LocalINS1_6ObjectEEEPNS1_7IsolateEPKcDpOT_
|
|
64503
64512
|
_ZN4node25ERR_INVALID_FILE_URL_HOSTIJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEEN2v85LocalINS7_6ObjectEEEPNS7_7IsolateEPKcDpOT_
|
|
64504
64513
|
_ZN4node25ERR_INVALID_FILE_URL_PATHIJEEEN2v85LocalINS1_6ObjectEEEPNS1_7IsolateEPKcDpOT_
|
|
64514
|
+
_ZN4node25ERR_LOAD_SQLITE_EXTENSIONIJEEEN2v85LocalINS1_6ObjectEEEPNS1_7IsolateEPKcDpOT_
|
|
64505
64515
|
_ZN4node25ExternalReferenceRegistry19external_referencesEv
|
|
64506
64516
|
_ZN4node25ExternalReferenceRegistryC1Ev
|
|
64507
64517
|
_ZN4node25ExternalReferenceRegistryC2Ev
|
|
@@ -64510,7 +64520,7 @@ _ZN4node25InspectorParentHandleImplD0Ev
|
|
|
64510
64520
|
_ZN4node25InspectorParentHandleImplD1Ev
|
|
64511
64521
|
_ZN4node25MapStaticCodeToLargePagesEv
|
|
64512
64522
|
_ZN4node25PrepareStackTraceCallbackEN2v85LocalINS0_7ContextEEENS1_INS0_5ValueEEENS1_INS0_5ArrayEEE
|
|
64513
|
-
|
|
64523
|
+
_ZN4node25ProcessEmitWarningGenericEPNS_11EnvironmentESt17basic_string_viewIcSt11char_traitsIcEES5_S5_
|
|
64514
64524
|
_ZN4node25SetFastMethodNoSideEffectEN2v85LocalINS0_7ContextEEENS1_INS0_6ObjectEEESt17basic_string_viewIcSt11char_traitsIcEEPFvRKNS0_20FunctionCallbackInfoINS0_5ValueEEEEPKNS0_9CFunctionE
|
|
64515
64525
|
_ZN4node25SetFastMethodNoSideEffectEPN2v87IsolateENS0_5LocalINS0_8TemplateEEESt17basic_string_viewIcSt11char_traitsIcEEPFvRKNS0_20FunctionCallbackInfoINS0_5ValueEEEEPKNS0_9CFunctionE
|
|
64516
64526
|
_ZN4node25SetFastMethodNoSideEffectEPN2v87IsolateENS0_5LocalINS0_8TemplateEEESt17basic_string_viewIcSt11char_traitsIcEEPFvRKNS0_20FunctionCallbackInfoINS0_5ValueEEEERKNS0_10MemorySpanIKNS0_9CFunctionEEE
|
|
@@ -64662,7 +64672,7 @@ _ZN4node29DebuggingArrayBufferAllocatorD2Ev
|
|
|
64662
64672
|
_ZN4node29DeserializeNodeInternalFieldsEN2v85LocalINS0_6ObjectEEEiNS0_11StartupDataEPv
|
|
64663
64673
|
_ZN4node29ERR_CRYPTO_INVALID_MESSAGELENIJEEEN2v85LocalINS1_6ObjectEEEPNS1_7IsolateEPKcDpOT_
|
|
64664
64674
|
_ZN4node29ERR_CRYPTO_INVALID_TAG_LENGTHIJEEEN2v85LocalINS1_6ObjectEEEPNS1_7IsolateEPKcDpOT_
|
|
64665
|
-
|
|
64675
|
+
_ZN4node29ProcessEmitDeprecationWarningEPNS_11EnvironmentERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt17basic_string_viewIcS5_E
|
|
64666
64676
|
_ZN4node29SetIsolateCreateParamsForNodeEPN2v87Isolate12CreateParamsE
|
|
64667
64677
|
_ZN4node2fs10FileHandle10AfterCloseEv
|
|
64668
64678
|
_ZN4node2fs10FileHandle10DoShutdownEPNS_12ShutdownWrapE
|
|
@@ -64783,7 +64793,7 @@ _ZN4node2uv7ErrNameERKN2v820FunctionCallbackInfoINS1_5ValueEEE
|
|
|
64783
64793
|
_ZN4node2uv9GetErrMapERKN2v820FunctionCallbackInfoINS1_5ValueEEE
|
|
64784
64794
|
_ZN4node30ERR_NON_CONTEXT_AWARE_DISABLEDIJEEEN2v85LocalINS1_6ObjectEEEPNS1_7IsolateEPKcDpOT_
|
|
64785
64795
|
_ZN4node30ERR_ZLIB_INITIALIZATION_FAILEDIJEEEN2v85LocalINS1_6ObjectEEEPNS1_7IsolateEPKcDpOT_
|
|
64786
|
-
|
|
64796
|
+
_ZN4node30ProcessEmitExperimentalWarningEPNS_11EnvironmentERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE
|
|
64787
64797
|
_ZN4node30ReportWritesToJSStreamListener18OnStreamAfterWriteEPNS_9WriteWrapEi
|
|
64788
64798
|
_ZN4node30ReportWritesToJSStreamListener21OnStreamAfterShutdownEPNS_12ShutdownWrapEi
|
|
64789
64799
|
_ZN4node30ReportWritesToJSStreamListener24OnStreamAfterReqFinishedEPNS_9StreamReqEi
|
|
@@ -64831,6 +64841,7 @@ _ZN4node38THROW_ERR_BUFFER_CONTEXT_NOT_AVAILABLEEPN2v87IsolateE
|
|
|
64831
64841
|
_ZN4node38THROW_ERR_CRYPTO_UNSUPPORTED_OPERATIONEPN2v87IsolateE
|
|
64832
64842
|
_ZN4node39ERR_EXECUTION_ENVIRONMENT_NOT_AVAILABLEIJEEEN2v85LocalINS1_6ObjectEEEPNS1_7IsolateEPKcDpOT_
|
|
64833
64843
|
_ZN4node39RegisterStringDecoderExternalReferencesEPNS_25ExternalReferenceRegistryE
|
|
64844
|
+
_ZN4node39THROW_ERR_ENCODING_INVALID_ENCODED_DATAIJEEEvPN2v87IsolateEPKcDpOT_
|
|
64834
64845
|
_ZN4node3bob10SourceImplI10ngtcp2_vecE4PullESt8functionIFviPKS2_mS4_IFvmEEEEiPS2_mm
|
|
64835
64846
|
_ZN4node3mem18NgLibMemoryManagerINS_4quic11BindingDataE10ngtcp2_memE10CallocImplEmmPv
|
|
64836
64847
|
_ZN4node3mem18NgLibMemoryManagerINS_4quic11BindingDataE10ngtcp2_memE10MallocImplEmPv
|
|
@@ -66782,18 +66793,21 @@ _ZN4node6serdes19DeserializerContextD0Ev
|
|
|
66782
66793
|
_ZN4node6serdes19DeserializerContextD1Ev
|
|
66783
66794
|
_ZN4node6serdes26RegisterExternalReferencesEPNS_25ExternalReferenceRegistryE
|
|
66784
66795
|
_ZN4node6sqlite12DatabaseSync13CreateSessionERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
66796
|
+
_ZN4node6sqlite12DatabaseSync13LoadExtensionERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
66785
66797
|
_ZN4node6sqlite12DatabaseSync14ApplyChangesetERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
66798
|
+
_ZN4node6sqlite12DatabaseSync14CustomFunctionERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
66786
66799
|
_ZN4node6sqlite12DatabaseSync14DeleteSessionsEv
|
|
66787
66800
|
_ZN4node6sqlite12DatabaseSync16UntrackStatementEPNS0_13StatementSyncE
|
|
66788
66801
|
_ZN4node6sqlite12DatabaseSync18FinalizeStatementsEv
|
|
66802
|
+
_ZN4node6sqlite12DatabaseSync19EnableLoadExtensionERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
66789
66803
|
_ZN4node6sqlite12DatabaseSync3NewERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
66790
66804
|
_ZN4node6sqlite12DatabaseSync4ExecERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
66791
66805
|
_ZN4node6sqlite12DatabaseSync4OpenERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
66792
66806
|
_ZN4node6sqlite12DatabaseSync4OpenEv
|
|
66793
66807
|
_ZN4node6sqlite12DatabaseSync5CloseERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
66794
66808
|
_ZN4node6sqlite12DatabaseSync7PrepareERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
66795
|
-
|
|
66796
|
-
|
|
66809
|
+
_ZN4node6sqlite12DatabaseSyncC1EPNS_11EnvironmentEN2v85LocalINS4_6ObjectEEEONS0_25DatabaseOpenConfigurationEbb
|
|
66810
|
+
_ZN4node6sqlite12DatabaseSyncC2EPNS_11EnvironmentEN2v85LocalINS4_6ObjectEEEONS0_25DatabaseOpenConfigurationEbb
|
|
66797
66811
|
_ZN4node6sqlite12DatabaseSyncD0Ev
|
|
66798
66812
|
_ZN4node6sqlite12DatabaseSyncD1Ev
|
|
66799
66813
|
_ZN4node6sqlite12DatabaseSyncD2Ev
|
|
@@ -66803,12 +66817,15 @@ _ZN4node6sqlite13StatementSync14SetReadBigIntsERKN2v820FunctionCallbackInfoINS2_
|
|
|
66803
66817
|
_ZN4node6sqlite13StatementSync15SourceSQLGetterERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
66804
66818
|
_ZN4node6sqlite13StatementSync16ColumnNameToNameEi
|
|
66805
66819
|
_ZN4node6sqlite13StatementSync17ExpandedSQLGetterERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
66820
|
+
_ZN4node6sqlite13StatementSync19IterateNextCallbackERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
66821
|
+
_ZN4node6sqlite13StatementSync21IterateReturnCallbackERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
66806
66822
|
_ZN4node6sqlite13StatementSync22GetConstructorTemplateEPNS_11EnvironmentE
|
|
66807
66823
|
_ZN4node6sqlite13StatementSync27SetAllowBareNamedParametersERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
66808
66824
|
_ZN4node6sqlite13StatementSync3AllERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
66809
66825
|
_ZN4node6sqlite13StatementSync3GetERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
66810
66826
|
_ZN4node6sqlite13StatementSync3RunERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
66811
66827
|
_ZN4node6sqlite13StatementSync6CreateEPNS_11EnvironmentEPNS0_12DatabaseSyncEP12sqlite3_stmt
|
|
66828
|
+
_ZN4node6sqlite13StatementSync7IterateERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
66812
66829
|
_ZN4node6sqlite13StatementSync8FinalizeEv
|
|
66813
66830
|
_ZN4node6sqlite13StatementSync9BindValueERKN2v85LocalINS2_5ValueEEEi
|
|
66814
66831
|
_ZN4node6sqlite13StatementSyncC1EPNS_11EnvironmentEN2v85LocalINS4_6ObjectEEEPNS0_12DatabaseSyncEP12sqlite3_stmt
|
|
@@ -66816,7 +66833,13 @@ _ZN4node6sqlite13StatementSyncC2EPNS_11EnvironmentEN2v85LocalINS4_6ObjectEEEPNS0
|
|
|
66816
66833
|
_ZN4node6sqlite13StatementSyncD0Ev
|
|
66817
66834
|
_ZN4node6sqlite13StatementSyncD1Ev
|
|
66818
66835
|
_ZN4node6sqlite13StatementSyncD2Ev
|
|
66836
|
+
_ZN4node6sqlite15DefineConstantsEN2v85LocalINS1_6ObjectEEE
|
|
66819
66837
|
_ZN4node6sqlite18IllegalConstructorERKN2v820FunctionCallbackInfoINS1_5ValueEEE
|
|
66838
|
+
_ZN4node6sqlite19UserDefinedFunction5xFuncEP15sqlite3_contextiPP13sqlite3_value
|
|
66839
|
+
_ZN4node6sqlite19UserDefinedFunction8xDestroyEPv
|
|
66840
|
+
_ZN4node6sqlite19UserDefinedFunctionD0Ev
|
|
66841
|
+
_ZN4node6sqlite19UserDefinedFunctionD1Ev
|
|
66842
|
+
_ZN4node6sqlite22THROW_ERR_SQLITE_ERROREPN2v87IsolateEP7sqlite3
|
|
66820
66843
|
_ZN4node6sqlite7Session22GetConstructorTemplateEPNS_11EnvironmentE
|
|
66821
66844
|
_ZN4node6sqlite7Session5CloseERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
66822
66845
|
_ZN4node6sqlite7Session6CreateEPNS_11EnvironmentENS_17BaseObjectPtrImplINS0_12DatabaseSyncELb1EEEP15sqlite3_session
|
|
@@ -67086,7 +67109,6 @@ _ZN4node7FPrintFIJmPKcmRmS2_EEEvP4FILES2_DpOT_
|
|
|
67086
67109
|
_ZN4node7FPrintFIJmPKcmmS2_EEEvP4FILES2_DpOT_
|
|
67087
67110
|
_ZN4node7FPrintFIJmRKjEEEvP4FILEPKcDpOT_
|
|
67088
67111
|
_ZN4node7FPrintFIJmRiEEEvP4FILEPKcDpOT_
|
|
67089
|
-
_ZN4node7FPrintFIJmmEEEvP4FILEPKcDpOT_
|
|
67090
67112
|
_ZN4node7FPrintFIJmmPKcEEEvP4FILES2_DpOT_
|
|
67091
67113
|
_ZN4node7FPrintFIJmmmmEEEvP4FILEPKcDpOT_
|
|
67092
67114
|
_ZN4node7GetHashEPKcm
|
|
@@ -67237,6 +67259,7 @@ _ZN4node7SPrintFIJRmRiEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKc
|
|
|
67237
67259
|
_ZN4node7SPrintFIJRmS1_EEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcDpOT_
|
|
67238
67260
|
_ZN4node7SPrintFIJRmiEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcDpOT_
|
|
67239
67261
|
_ZN4node7SPrintFIJRmiRPKcS4_EEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES3_DpOT_
|
|
67262
|
+
_ZN4node7SPrintFIJRxEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcDpOT_
|
|
67240
67263
|
_ZN4node7SPrintFIJSt17basic_string_viewIcSt11char_traitsIcEEEEENSt7__cxx1112basic_stringIcS3_SaIcEEEPKcDpOT_
|
|
67241
67264
|
_ZN4node7SPrintFIJhEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcDpOT_
|
|
67242
67265
|
_ZN4node7SPrintFIJiEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcDpOT_
|
|
@@ -67254,7 +67277,6 @@ _ZN4node7SPrintFIJmPKcmRmS2_EEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIc
|
|
|
67254
67277
|
_ZN4node7SPrintFIJmPKcmmS2_EEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_DpOT_
|
|
67255
67278
|
_ZN4node7SPrintFIJmRKjEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcDpOT_
|
|
67256
67279
|
_ZN4node7SPrintFIJmRiEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcDpOT_
|
|
67257
|
-
_ZN4node7SPrintFIJmmEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcDpOT_
|
|
67258
67280
|
_ZN4node7SPrintFIJmmPKcEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_DpOT_
|
|
67259
67281
|
_ZN4node7SPrintFIJmmmmEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcDpOT_
|
|
67260
67282
|
_ZN4node7TCPWrap10InitializeEN2v85LocalINS1_6ObjectEEENS2_INS1_5ValueEEENS2_INS1_7ContextEEEPv
|
|
@@ -67609,7 +67631,7 @@ _ZN4node8v8_utils26UpdateHeapStatisticsBufferERKN2v820FunctionCallbackInfoINS1_5
|
|
|
67609
67631
|
_ZN4node8v8_utils28SetHeapSnapshotNearHeapLimitERKN2v820FunctionCallbackInfoINS1_5ValueEEE
|
|
67610
67632
|
_ZN4node8v8_utils30UpdateHeapCodeStatisticsBufferERKN2v820FunctionCallbackInfoINS1_5ValueEEE
|
|
67611
67633
|
_ZN4node8v8_utils31UpdateHeapSpaceStatisticsBufferERKN2v820FunctionCallbackInfoINS1_5ValueEEE
|
|
67612
|
-
|
|
67634
|
+
_ZN4node9AsyncWrap10AsyncResetEN2v85LocalINS1_6ObjectEEEd
|
|
67613
67635
|
_ZN4node9AsyncWrap10AsyncResetERKN2v820FunctionCallbackInfoINS1_5ValueEEE
|
|
67614
67636
|
_ZN4node9AsyncWrap10EmitBeforeEPNS_11EnvironmentEd
|
|
67615
67637
|
_ZN4node9AsyncWrap10GetAsyncIdERKN2v820FunctionCallbackInfoINS1_5ValueEEE
|
|
@@ -67640,12 +67662,8 @@ _ZN4node9AsyncWrap8GetOwnerEv
|
|
|
67640
67662
|
_ZN4node9AsyncWrap9EmitAfterEPNS_11EnvironmentEd
|
|
67641
67663
|
_ZN4node9AsyncWrapC1EPNS_11EnvironmentEN2v85LocalINS3_6ObjectEEE
|
|
67642
67664
|
_ZN4node9AsyncWrapC1EPNS_11EnvironmentEN2v85LocalINS3_6ObjectEEENS0_12ProviderTypeEd
|
|
67643
|
-
_ZN4node9AsyncWrapC1EPNS_11EnvironmentEN2v85LocalINS3_6ObjectEEENS0_12ProviderTypeEdb
|
|
67644
|
-
_ZN4node9AsyncWrapC1EPNS_11EnvironmentEN2v85LocalINS3_6ObjectEEENS0_12ProviderTypeEdd
|
|
67645
67665
|
_ZN4node9AsyncWrapC2EPNS_11EnvironmentEN2v85LocalINS3_6ObjectEEE
|
|
67646
67666
|
_ZN4node9AsyncWrapC2EPNS_11EnvironmentEN2v85LocalINS3_6ObjectEEENS0_12ProviderTypeEd
|
|
67647
|
-
_ZN4node9AsyncWrapC2EPNS_11EnvironmentEN2v85LocalINS3_6ObjectEEENS0_12ProviderTypeEdb
|
|
67648
|
-
_ZN4node9AsyncWrapC2EPNS_11EnvironmentEN2v85LocalINS3_6ObjectEEENS0_12ProviderTypeEdd
|
|
67649
67667
|
_ZN4node9AsyncWrapD0Ev
|
|
67650
67668
|
_ZN4node9AsyncWrapD1Ev
|
|
67651
67669
|
_ZN4node9AsyncWrapD2Ev
|
|
@@ -80656,6 +80674,7 @@ _ZNK4heap4base5Stack23IterateBackgroundStacksEPNS0_12StackVisitorE
|
|
|
80656
80674
|
_ZNK4heap4base5Stack26IteratePointersUntilMarkerEPNS0_12StackVisitorE
|
|
80657
80675
|
_ZNK4node10AsyncHooks10MemoryInfoEPNS_13MemoryTrackerE
|
|
80658
80676
|
_ZNK4node10AsyncHooks14MemoryInfoNameEv
|
|
80677
|
+
_ZNK4node10AsyncHooks15GetPromiseHooksEPN2v87IsolateE
|
|
80659
80678
|
_ZNK4node10AsyncHooks8SelfSizeEv
|
|
80660
80679
|
_ZNK4node10BaseObject10IsRootNodeEv
|
|
80661
80680
|
_ZNK4node10BaseObject13WrappedObjectEv
|
|
@@ -80756,6 +80775,7 @@ _ZNK4node11Environment14MemoryInfoNameEv
|
|
|
80756
80775
|
_ZNK4node11Environment14PrintSyncTraceEv
|
|
80757
80776
|
_ZNK4node11Environment17worker_parent_envEv
|
|
80758
80777
|
_ZNK4node11Environment26RunSnapshotDeserializeMainEv
|
|
80778
|
+
_ZNK4node11Environment27CheckUnsettledTopLevelAwaitEv
|
|
80759
80779
|
_ZNK4node11Environment28RunSnapshotSerializeCallbackEv
|
|
80760
80780
|
_ZNK4node11Environment8SelfSizeEv
|
|
80761
80781
|
_ZNK4node11IsolateData10MemoryInfoEPNS_13MemoryTrackerE
|
|
@@ -86520,6 +86540,8 @@ _ZNSt5dequeIlSaIlEE16_M_push_back_auxIJRKlEEEvDpOT_
|
|
|
86520
86540
|
_ZNSt5dequeImN2v88internal22RecyclingZoneAllocatorImEEE16_M_push_back_auxIJRKmEEEvDpOT_
|
|
86521
86541
|
_ZNSt6vectorIN12v8_inspector21PrivatePropertyMirrorESaIS1_EED1Ev
|
|
86522
86542
|
_ZNSt6vectorIN12v8_inspector8String16ESaIS1_EED1Ev
|
|
86543
|
+
_ZNSt6vectorIN2v88internal14LocalUncheckedINS0_4NameEEESaIS4_EE7reserveEm
|
|
86544
|
+
_ZNSt6vectorIN2v88internal14LocalUncheckedINS0_5ValueEEESaIS4_EE7reserveEm
|
|
86523
86545
|
_ZNSt6vectorIN2v88internal21MachineRepresentationESaIS2_EE19_M_range_initializeIPKS2_EEvT_S8_St20forward_iterator_tag
|
|
86524
86546
|
_ZNSt6vectorIN2v88internal4wasm9ValueTypeESaIS3_EE7reserveEm
|
|
86525
86547
|
_ZNSt6vectorIN2v88internal4wasm9ValueTypeESaIS3_EE9push_backERKS3_
|
|
@@ -90953,6 +90975,7 @@ _ZTVN4node6serdes17SerializerContextE
|
|
|
90953
90975
|
_ZTVN4node6serdes19DeserializerContextE
|
|
90954
90976
|
_ZTVN4node6sqlite12DatabaseSyncE
|
|
90955
90977
|
_ZTVN4node6sqlite13StatementSyncE
|
|
90978
|
+
_ZTVN4node6sqlite19UserDefinedFunctionE
|
|
90956
90979
|
_ZTVN4node6sqlite7SessionE
|
|
90957
90980
|
_ZTVN4node6timers11BindingDataE
|
|
90958
90981
|
_ZTVN4node6worker11MessagePortE
|
|
@@ -95225,6 +95248,7 @@ _ZZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm16EE25AllocateSufficientSt
|
|
|
95225
95248
|
_ZZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm16EEixEmE20error_and_abort_args
|
|
95226
95249
|
_ZZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm256EE25AllocateSufficientStorageEmE20error_and_abort_args
|
|
95227
95250
|
_ZZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm256EEixEmE20error_and_abort_args
|
|
95251
|
+
_ZZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm32EE25AllocateSufficientStorageEmE20error_and_abort_args
|
|
95228
95252
|
_ZZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm32EEixEmE20error_and_abort_args
|
|
95229
95253
|
_ZZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm5EE25AllocateSufficientStorageEmE20error_and_abort_args
|
|
95230
95254
|
_ZZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm5EEixEmE20error_and_abort_args
|
|
@@ -95845,6 +95869,7 @@ _ZZN4node6crypto9KeyGenJobINS0_18SecretKeyGenTraitsEE8ToResultEPN2v85LocalINS4_5
|
|
|
95845
95869
|
_ZZN4node6crypto9KeyGenJobINS0_18SecretKeyGenTraitsEE8ToResultEPN2v85LocalINS4_5ValueEEES8_E20error_and_abort_args_3
|
|
95846
95870
|
_ZZN4node6fs_dir9DirHandle7GCCloseEvE28trace_event_unique_atomic140
|
|
95847
95871
|
_ZZN4node6fs_dir9DirHandle7GCCloseEvE28trace_event_unique_atomic142
|
|
95872
|
+
_ZZN4node6sqlite19UserDefinedFunction5xFuncEP15sqlite3_contextiPP13sqlite3_valueE20error_and_abort_args
|
|
95848
95873
|
_ZZN4node6worker16WorkerThreadDataC4EPNS0_6WorkerEE20error_and_abort_args
|
|
95849
95874
|
_ZZN4node6worker16WorkerThreadDataC4EPNS0_6WorkerEE20error_and_abort_args_0
|
|
95850
95875
|
_ZZN4node6worker16WorkerThreadDataD4EvE20error_and_abort_args
|
|
@@ -95941,6 +95966,8 @@ _ZZZN4node14ThreadPoolWork12ScheduleWorkEvENKUlP9uv_work_sE_clES2_E27trace_event
|
|
|
95941
95966
|
_ZZZN4node14ThreadPoolWork12ScheduleWorkEvENKUlP9uv_work_siE0_clES2_iE27trace_event_unique_atomic51
|
|
95942
95967
|
_ZZZN4node4quic18DefaultApplication13GetStreamDataEPNS0_7Session11Application10StreamDataEENKUlT_mE_clIPK10ngtcp2_vecEEDaS6_mE20error_and_abort_args
|
|
95943
95968
|
__DumpBacktrace
|
|
95969
|
+
__dso_handle
|
|
95970
|
+
__init_aix_libgcc_cxa_atexit
|
|
95944
95971
|
_cppgc_internal_Uncompress_Member
|
|
95945
95972
|
_dist_code
|
|
95946
95973
|
_kBrotliContextLookupTable
|
|
@@ -96108,6 +96135,7 @@ ares_buf_parse_dns_str
|
|
|
96108
96135
|
ares_buf_peek
|
|
96109
96136
|
ares_buf_peek_byte
|
|
96110
96137
|
ares_buf_reclaim
|
|
96138
|
+
ares_buf_replace
|
|
96111
96139
|
ares_buf_set_length
|
|
96112
96140
|
ares_buf_set_position
|
|
96113
96141
|
ares_buf_split
|
|
@@ -96513,10 +96541,13 @@ ares_strerror
|
|
|
96513
96541
|
ares_strlen
|
|
96514
96542
|
ares_strncasecmp
|
|
96515
96543
|
ares_strncmp
|
|
96544
|
+
ares_strnlen
|
|
96516
96545
|
ares_strsplit
|
|
96517
96546
|
ares_strsplit_duplicate
|
|
96518
96547
|
ares_strsplit_free
|
|
96519
96548
|
ares_subnet_match
|
|
96549
|
+
ares_sysconfig_parse_resolv_line
|
|
96550
|
+
ares_sysconfig_process_buf
|
|
96520
96551
|
ares_sysconfig_set_options
|
|
96521
96552
|
ares_thread_cond_broadcast
|
|
96522
96553
|
ares_thread_cond_create
|
|
@@ -98315,6 +98346,7 @@ nghttp3_conn_submit_shutdown_notice
|
|
|
98315
98346
|
nghttp3_conn_submit_trailers
|
|
98316
98347
|
nghttp3_conn_unblock_stream
|
|
98317
98348
|
nghttp3_conn_unschedule_stream
|
|
98349
|
+
nghttp3_conn_update_ack_offset
|
|
98318
98350
|
nghttp3_conn_writev_stream
|
|
98319
98351
|
nghttp3_cpymem
|
|
98320
98352
|
nghttp3_downcase
|
|
@@ -98347,7 +98379,6 @@ nghttp3_http_on_request_headers
|
|
|
98347
98379
|
nghttp3_http_on_response_headers
|
|
98348
98380
|
nghttp3_http_parse_priority
|
|
98349
98381
|
nghttp3_http_record_request_method
|
|
98350
|
-
nghttp3_idtr_first_gap
|
|
98351
98382
|
nghttp3_idtr_free
|
|
98352
98383
|
nghttp3_idtr_init
|
|
98353
98384
|
nghttp3_idtr_is_open
|
|
@@ -98372,7 +98403,6 @@ nghttp3_ksl_remove_hint
|
|
|
98372
98403
|
nghttp3_ksl_update_key
|
|
98373
98404
|
nghttp3_map_clear
|
|
98374
98405
|
nghttp3_map_each
|
|
98375
|
-
nghttp3_map_each_free
|
|
98376
98406
|
nghttp3_map_find
|
|
98377
98407
|
nghttp3_map_free
|
|
98378
98408
|
nghttp3_map_init
|
|
@@ -98536,7 +98566,6 @@ nghttp3_ringbuf_resize
|
|
|
98536
98566
|
nghttp3_server_stream_uni
|
|
98537
98567
|
nghttp3_set_debug_vprintf_callback
|
|
98538
98568
|
nghttp3_settings_default_versioned
|
|
98539
|
-
nghttp3_stream_add_ack_offset
|
|
98540
98569
|
nghttp3_stream_add_outq_offset
|
|
98541
98570
|
nghttp3_stream_buffer_data
|
|
98542
98571
|
nghttp3_stream_del
|
|
@@ -98554,6 +98583,7 @@ nghttp3_stream_read_state_reset
|
|
|
98554
98583
|
nghttp3_stream_require_schedule
|
|
98555
98584
|
nghttp3_stream_transit_rx_http_state
|
|
98556
98585
|
nghttp3_stream_uni
|
|
98586
|
+
nghttp3_stream_update_ack_offset
|
|
98557
98587
|
nghttp3_stream_write_data
|
|
98558
98588
|
nghttp3_stream_write_goaway
|
|
98559
98589
|
nghttp3_stream_write_header_block
|
|
@@ -98609,18 +98639,13 @@ ngtcp2_cbrt
|
|
|
98609
98639
|
ngtcp2_cc_bbr_init
|
|
98610
98640
|
ngtcp2_cc_compute_initcwnd
|
|
98611
98641
|
ngtcp2_cc_cubic_cc_congestion_event
|
|
98612
|
-
ngtcp2_cc_cubic_cc_event
|
|
98613
|
-
ngtcp2_cc_cubic_cc_new_rtt_sample
|
|
98614
98642
|
ngtcp2_cc_cubic_cc_on_ack_recv
|
|
98615
98643
|
ngtcp2_cc_cubic_cc_on_persistent_congestion
|
|
98616
|
-
ngtcp2_cc_cubic_cc_on_pkt_acked
|
|
98617
|
-
ngtcp2_cc_cubic_cc_on_pkt_sent
|
|
98618
98644
|
ngtcp2_cc_cubic_cc_on_spurious_congestion
|
|
98619
98645
|
ngtcp2_cc_cubic_cc_reset
|
|
98620
98646
|
ngtcp2_cc_cubic_init
|
|
98621
98647
|
ngtcp2_cc_pkt_init
|
|
98622
98648
|
ngtcp2_cc_reno_cc_congestion_event
|
|
98623
|
-
ngtcp2_cc_reno_cc_on_ack_recv
|
|
98624
98649
|
ngtcp2_cc_reno_cc_on_persistent_congestion
|
|
98625
98650
|
ngtcp2_cc_reno_cc_on_pkt_acked
|
|
98626
98651
|
ngtcp2_cc_reno_cc_reset
|
|
@@ -98639,6 +98664,8 @@ ngtcp2_cmemeq
|
|
|
98639
98664
|
ngtcp2_conn_ack_delay_expiry
|
|
98640
98665
|
ngtcp2_conn_after_retry
|
|
98641
98666
|
ngtcp2_conn_cancel_expired_ack_delay_timer
|
|
98667
|
+
ngtcp2_conn_cancel_loss_detection_timer
|
|
98668
|
+
ngtcp2_conn_check_retired_dcid_tracked
|
|
98642
98669
|
ngtcp2_conn_client_new_versioned
|
|
98643
98670
|
ngtcp2_conn_close_stream
|
|
98644
98671
|
ngtcp2_conn_close_stream_if_shut_rdwr
|
|
@@ -98649,6 +98676,8 @@ ngtcp2_conn_decode_and_set_0rtt_transport_params
|
|
|
98649
98676
|
ngtcp2_conn_decode_and_set_remote_transport_params
|
|
98650
98677
|
ngtcp2_conn_del
|
|
98651
98678
|
ngtcp2_conn_detect_lost_pkt
|
|
98679
|
+
ngtcp2_conn_discard_handshake_state
|
|
98680
|
+
ngtcp2_conn_discard_initial_state
|
|
98652
98681
|
ngtcp2_conn_encode_0rtt_transport_params
|
|
98653
98682
|
ngtcp2_conn_encode_local_transport_params
|
|
98654
98683
|
ngtcp2_conn_extend_max_offset
|
|
@@ -98786,6 +98815,7 @@ ngtcp2_crypto_encrypt
|
|
|
98786
98815
|
ngtcp2_crypto_encrypt_cb
|
|
98787
98816
|
ngtcp2_crypto_generate_regular_token
|
|
98788
98817
|
ngtcp2_crypto_generate_retry_token
|
|
98818
|
+
ngtcp2_crypto_generate_retry_token2
|
|
98789
98819
|
ngtcp2_crypto_generate_stateless_reset_token
|
|
98790
98820
|
ngtcp2_crypto_get_path_challenge_data_cb
|
|
98791
98821
|
ngtcp2_crypto_hkdf
|
|
@@ -98818,6 +98848,7 @@ ngtcp2_crypto_update_key_cb
|
|
|
98818
98848
|
ngtcp2_crypto_update_traffic_secret
|
|
98819
98849
|
ngtcp2_crypto_verify_regular_token
|
|
98820
98850
|
ngtcp2_crypto_verify_retry_token
|
|
98851
|
+
ngtcp2_crypto_verify_retry_token2
|
|
98821
98852
|
ngtcp2_crypto_version_negotiation_cb
|
|
98822
98853
|
ngtcp2_crypto_write_connection_close
|
|
98823
98854
|
ngtcp2_crypto_write_retry
|
|
@@ -98855,14 +98886,12 @@ ngtcp2_get_bytes
|
|
|
98855
98886
|
ngtcp2_get_pkt_num
|
|
98856
98887
|
ngtcp2_get_uint16
|
|
98857
98888
|
ngtcp2_get_uint16be
|
|
98858
|
-
|
|
98859
|
-
|
|
98860
|
-
|
|
98861
|
-
ngtcp2_get_uint64
|
|
98889
|
+
ngtcp2_get_uint24be
|
|
98890
|
+
ngtcp2_get_uint32be
|
|
98891
|
+
ngtcp2_get_uint64be
|
|
98862
98892
|
ngtcp2_get_uvarint
|
|
98863
98893
|
ngtcp2_get_uvarintlen
|
|
98864
98894
|
ngtcp2_get_varint
|
|
98865
|
-
ngtcp2_idtr_first_gap
|
|
98866
98895
|
ngtcp2_idtr_free
|
|
98867
98896
|
ngtcp2_idtr_init
|
|
98868
98897
|
ngtcp2_idtr_is_open
|
|
@@ -98876,17 +98905,23 @@ ngtcp2_ksl_end
|
|
|
98876
98905
|
ngtcp2_ksl_free
|
|
98877
98906
|
ngtcp2_ksl_init
|
|
98878
98907
|
ngtcp2_ksl_insert
|
|
98908
|
+
ngtcp2_ksl_int64_greater
|
|
98909
|
+
ngtcp2_ksl_int64_greater_search
|
|
98879
98910
|
ngtcp2_ksl_it_begin
|
|
98880
98911
|
ngtcp2_ksl_it_init
|
|
98881
98912
|
ngtcp2_ksl_it_prev
|
|
98882
98913
|
ngtcp2_ksl_len
|
|
98883
98914
|
ngtcp2_ksl_lower_bound
|
|
98884
|
-
|
|
98915
|
+
ngtcp2_ksl_lower_bound_search
|
|
98885
98916
|
ngtcp2_ksl_print
|
|
98886
98917
|
ngtcp2_ksl_range_compar
|
|
98887
98918
|
ngtcp2_ksl_range_exclusive_compar
|
|
98919
|
+
ngtcp2_ksl_range_exclusive_search
|
|
98920
|
+
ngtcp2_ksl_range_search
|
|
98888
98921
|
ngtcp2_ksl_remove
|
|
98889
98922
|
ngtcp2_ksl_remove_hint
|
|
98923
|
+
ngtcp2_ksl_uint64_less
|
|
98924
|
+
ngtcp2_ksl_uint64_less_search
|
|
98890
98925
|
ngtcp2_ksl_update_key
|
|
98891
98926
|
ngtcp2_log_info
|
|
98892
98927
|
ngtcp2_log_init
|
|
@@ -98901,7 +98936,6 @@ ngtcp2_log_tx_fr
|
|
|
98901
98936
|
ngtcp2_log_tx_pkt_hd
|
|
98902
98937
|
ngtcp2_map_clear
|
|
98903
98938
|
ngtcp2_map_each
|
|
98904
|
-
ngtcp2_map_each_free
|
|
98905
98939
|
ngtcp2_map_find
|
|
98906
98940
|
ngtcp2_map_free
|
|
98907
98941
|
ngtcp2_map_init
|
|
@@ -98914,10 +98948,6 @@ ngtcp2_mem_default
|
|
|
98914
98948
|
ngtcp2_mem_free
|
|
98915
98949
|
ngtcp2_mem_malloc
|
|
98916
98950
|
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
98951
|
ngtcp2_objalloc_acktr_entry_get
|
|
98922
98952
|
ngtcp2_objalloc_acktr_entry_len_get
|
|
98923
98953
|
ngtcp2_objalloc_clear
|
|
@@ -99020,14 +99050,14 @@ ngtcp2_pmtud_probe_sent
|
|
|
99020
99050
|
ngtcp2_pmtud_probe_success
|
|
99021
99051
|
ngtcp2_pmtud_probelen
|
|
99022
99052
|
ngtcp2_pmtud_require_probe
|
|
99053
|
+
ngtcp2_ppe_dgram_padding
|
|
99054
|
+
ngtcp2_ppe_dgram_padding_size
|
|
99023
99055
|
ngtcp2_ppe_encode_frame
|
|
99024
99056
|
ngtcp2_ppe_encode_hd
|
|
99025
99057
|
ngtcp2_ppe_ensure_hp_sample
|
|
99026
99058
|
ngtcp2_ppe_final
|
|
99027
99059
|
ngtcp2_ppe_init
|
|
99028
99060
|
ngtcp2_ppe_left
|
|
99029
|
-
ngtcp2_ppe_padding
|
|
99030
|
-
ngtcp2_ppe_padding_hp_sample
|
|
99031
99061
|
ngtcp2_ppe_padding_size
|
|
99032
99062
|
ngtcp2_ppe_pktlen
|
|
99033
99063
|
ngtcp2_pq_each
|
|
@@ -99044,7 +99074,6 @@ ngtcp2_put_uint16
|
|
|
99044
99074
|
ngtcp2_put_uint16be
|
|
99045
99075
|
ngtcp2_put_uint24be
|
|
99046
99076
|
ngtcp2_put_uint32be
|
|
99047
|
-
ngtcp2_put_uint48be
|
|
99048
99077
|
ngtcp2_put_uint64be
|
|
99049
99078
|
ngtcp2_put_uvarint
|
|
99050
99079
|
ngtcp2_put_uvarint30
|
|
@@ -99127,7 +99156,10 @@ ngtcp2_scid_copy
|
|
|
99127
99156
|
ngtcp2_scid_init
|
|
99128
99157
|
ngtcp2_select_version
|
|
99129
99158
|
ngtcp2_setmem
|
|
99159
|
+
ngtcp2_settings_convert_to_latest
|
|
99160
|
+
ngtcp2_settings_convert_to_old
|
|
99130
99161
|
ngtcp2_settings_default_versioned
|
|
99162
|
+
ngtcp2_settingslen_version
|
|
99131
99163
|
ngtcp2_strerror
|
|
99132
99164
|
ngtcp2_strm_ack_data
|
|
99133
99165
|
ngtcp2_strm_discard_reordered_data
|
|
@@ -101111,6 +101143,7 @@ should_add_extension
|
|
|
101111
101143
|
shutdown_stream_sync
|
|
101112
101144
|
sqlite3_aggregate_context
|
|
101113
101145
|
sqlite3_aggregate_count
|
|
101146
|
+
sqlite3_api
|
|
101114
101147
|
sqlite3_auto_extension
|
|
101115
101148
|
sqlite3_autovacuum_pages
|
|
101116
101149
|
sqlite3_backup_finish
|
|
@@ -101209,6 +101242,7 @@ sqlite3_expanded_sql
|
|
|
101209
101242
|
sqlite3_expired
|
|
101210
101243
|
sqlite3_extended_errcode
|
|
101211
101244
|
sqlite3_extended_result_codes
|
|
101245
|
+
sqlite3_extension_init
|
|
101212
101246
|
sqlite3_file_control
|
|
101213
101247
|
sqlite3_filename_database
|
|
101214
101248
|
sqlite3_filename_journal
|
package/include/node/v8config.h
CHANGED
|
@@ -581,11 +581,15 @@ path. Add it with -I<path> to the command line
|
|
|
581
581
|
// functions.
|
|
582
582
|
// Use like:
|
|
583
583
|
// V8_NOINLINE V8_PRESERVE_MOST void UnlikelyMethod();
|
|
584
|
+
#if V8_OS_WIN
|
|
585
|
+
# define V8_PRESERVE_MOST
|
|
586
|
+
#else
|
|
584
587
|
#if V8_HAS_ATTRIBUTE_PRESERVE_MOST
|
|
585
588
|
# define V8_PRESERVE_MOST __attribute__((preserve_most))
|
|
586
589
|
#else
|
|
587
590
|
# define V8_PRESERVE_MOST /* NOT SUPPORTED */
|
|
588
591
|
#endif
|
|
592
|
+
#endif
|
|
589
593
|
|
|
590
594
|
|
|
591
595
|
// A macro (V8_DEPRECATED) to mark classes or functions as deprecated.
|
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
|
.
|
|
@@ -176,15 +171,12 @@ Specify the
|
|
|
176
171
|
.Ar module
|
|
177
172
|
to use as a custom module loader.
|
|
178
173
|
.
|
|
179
|
-
.It Fl -
|
|
180
|
-
Enable the
|
|
174
|
+
.It Fl -permission
|
|
175
|
+
Enable the permission model.
|
|
181
176
|
.
|
|
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
|
.
|