node-aix-ppc64 24.7.0 → 24.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +151 -0
- package/README.md +2 -0
- package/bin/node +0 -0
- package/include/node/common.gypi +1 -1
- package/include/node/config.gypi +3 -0
- package/include/node/node.exp +103 -30
- package/include/node/node_version.h +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
</tr>
|
|
9
9
|
<tr>
|
|
10
10
|
<td>
|
|
11
|
+
<a href="#24.8.0">24.8.0</a><br/>
|
|
11
12
|
<a href="#24.7.0">24.7.0</a><br/>
|
|
12
13
|
<a href="#24.6.0">24.6.0</a><br/>
|
|
13
14
|
<a href="#24.5.0">24.5.0</a><br/>
|
|
@@ -49,6 +50,156 @@
|
|
|
49
50
|
* [io.js](CHANGELOG_IOJS.md)
|
|
50
51
|
* [Archive](CHANGELOG_ARCHIVE.md)
|
|
51
52
|
|
|
53
|
+
<a id="24.8.0"></a>
|
|
54
|
+
|
|
55
|
+
## 2025-09-10, Version 24.8.0 (Current), @targos
|
|
56
|
+
|
|
57
|
+
### Notable Changes
|
|
58
|
+
|
|
59
|
+
#### HTTP/2 Network Inspection Support in Node.js
|
|
60
|
+
|
|
61
|
+
Node.js now supports inspection of HTTP/2 network calls in Chrome DevTools for Node.js.
|
|
62
|
+
|
|
63
|
+
##### Usage
|
|
64
|
+
|
|
65
|
+
Write a `test.js` script that makes HTTP/2 requests.
|
|
66
|
+
|
|
67
|
+
```js
|
|
68
|
+
const http2 = require('node:http2');
|
|
69
|
+
|
|
70
|
+
const client = http2.connect('https://nghttp2.org');
|
|
71
|
+
|
|
72
|
+
const req = client.request([
|
|
73
|
+
':path', '/',
|
|
74
|
+
':method', 'GET',
|
|
75
|
+
]);
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
Run it with these options:
|
|
79
|
+
|
|
80
|
+
```bash
|
|
81
|
+
node --inspect-wait --experimental-network-inspection test.js
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
Open `about:inspect` on Google Chrome and click on `Open dedicated DevTools for Node`.
|
|
85
|
+
The `Network` tab will let you track your HTTP/2 calls.
|
|
86
|
+
|
|
87
|
+
Contributed by Darshan Sen in [#59611](https://github.com/nodejs/node/pull/59611).
|
|
88
|
+
|
|
89
|
+
#### Other Notable Changes
|
|
90
|
+
|
|
91
|
+
* \[[`7a8e2c251d`](https://github.com/nodejs/node/commit/7a8e2c251d)] - **(SEMVER-MINOR)** **crypto**: support Ed448 and ML-DSA context parameter in node:crypto (Filip Skokan) [#59570](https://github.com/nodejs/node/pull/59570)
|
|
92
|
+
* \[[`4b631be0b0`](https://github.com/nodejs/node/commit/4b631be0b0)] - **(SEMVER-MINOR)** **crypto**: support Ed448 and ML-DSA context parameter in Web Cryptography (Filip Skokan) [#59570](https://github.com/nodejs/node/pull/59570)
|
|
93
|
+
* \[[`3e4b1e732c`](https://github.com/nodejs/node/commit/3e4b1e732c)] - **(SEMVER-MINOR)** **crypto**: add KMAC Web Cryptography algorithms (Filip Skokan) [#59647](https://github.com/nodejs/node/pull/59647)
|
|
94
|
+
* \[[`b1d28785b2`](https://github.com/nodejs/node/commit/b1d28785b2)] - **(SEMVER-MINOR)** **crypto**: add Argon2 Web Cryptography algorithms (Filip Skokan) [#59544](https://github.com/nodejs/node/pull/59544)
|
|
95
|
+
* \[[`430691d1af`](https://github.com/nodejs/node/commit/430691d1af)] - **(SEMVER-MINOR)** **crypto**: support SLH-DSA KeyObject, sign, and verify (Filip Skokan) [#59537](https://github.com/nodejs/node/pull/59537)
|
|
96
|
+
* \[[`d6d05ba397`](https://github.com/nodejs/node/commit/d6d05ba397)] - **(SEMVER-MINOR)** **worker**: add cpu profile APIs for worker (theanarkh) [#59428](https://github.com/nodejs/node/pull/59428)
|
|
97
|
+
|
|
98
|
+
### Commits
|
|
99
|
+
|
|
100
|
+
* \[[`d913872369`](https://github.com/nodejs/node/commit/d913872369)] - **assert**: cap input size in myersDiff to avoid Int32Array overflow (Haram Jeong) [#59578](https://github.com/nodejs/node/pull/59578)
|
|
101
|
+
* \[[`7bbbcf6666`](https://github.com/nodejs/node/commit/7bbbcf6666)] - **benchmark**: sqlite prevent create both tables on prepare selects (Bruno Rodrigues) [#59709](https://github.com/nodejs/node/pull/59709)
|
|
102
|
+
* \[[`44d7b92271`](https://github.com/nodejs/node/commit/44d7b92271)] - **benchmark**: calibrate config array-vs-concat (Rafael Gonzaga) [#59587](https://github.com/nodejs/node/pull/59587)
|
|
103
|
+
* \[[`7f347fc551`](https://github.com/nodejs/node/commit/7f347fc551)] - **build**: fix getting OpenSSL version on Windows (Michaël Zasso) [#59609](https://github.com/nodejs/node/pull/59609)
|
|
104
|
+
* \[[`4a317150d5`](https://github.com/nodejs/node/commit/4a317150d5)] - **build**: fix 'implicit-function-declaration' on OpenHarmony platform (hqzing) [#59547](https://github.com/nodejs/node/pull/59547)
|
|
105
|
+
* \[[`bda32af587`](https://github.com/nodejs/node/commit/bda32af587)] - **build**: use `windows-2025` runner (Michaël Zasso) [#59673](https://github.com/nodejs/node/pull/59673)
|
|
106
|
+
* \[[`a4a8ed8f6e`](https://github.com/nodejs/node/commit/a4a8ed8f6e)] - **build**: compile bundled uvwasi conditionally (Carlo Cabrera) [#59622](https://github.com/nodejs/node/pull/59622)
|
|
107
|
+
* \[[`d944a87761`](https://github.com/nodejs/node/commit/d944a87761)] - **crypto**: refactor subtle methods to use synchronous import (Filip Skokan) [#59771](https://github.com/nodejs/node/pull/59771)
|
|
108
|
+
* \[[`7a8e2c251d`](https://github.com/nodejs/node/commit/7a8e2c251d)] - **(SEMVER-MINOR)** **crypto**: support Ed448 and ML-DSA context parameter in node:crypto (Filip Skokan) [#59570](https://github.com/nodejs/node/pull/59570)
|
|
109
|
+
* \[[`4b631be0b0`](https://github.com/nodejs/node/commit/4b631be0b0)] - **(SEMVER-MINOR)** **crypto**: support Ed448 and ML-DSA context parameter in Web Cryptography (Filip Skokan) [#59570](https://github.com/nodejs/node/pull/59570)
|
|
110
|
+
* \[[`3e4b1e732c`](https://github.com/nodejs/node/commit/3e4b1e732c)] - **(SEMVER-MINOR)** **crypto**: add KMAC Web Cryptography algorithms (Filip Skokan) [#59647](https://github.com/nodejs/node/pull/59647)
|
|
111
|
+
* \[[`b1d28785b2`](https://github.com/nodejs/node/commit/b1d28785b2)] - **(SEMVER-MINOR)** **crypto**: add Argon2 Web Cryptography algorithms (Filip Skokan) [#59544](https://github.com/nodejs/node/pull/59544)
|
|
112
|
+
* \[[`430691d1af`](https://github.com/nodejs/node/commit/430691d1af)] - **(SEMVER-MINOR)** **crypto**: support SLH-DSA KeyObject, sign, and verify (Filip Skokan) [#59537](https://github.com/nodejs/node/pull/59537)
|
|
113
|
+
* \[[`0d1e53d935`](https://github.com/nodejs/node/commit/0d1e53d935)] - **deps**: update uvwasi to 0.0.23 (Node.js GitHub Bot) [#59791](https://github.com/nodejs/node/pull/59791)
|
|
114
|
+
* \[[`68732cf426`](https://github.com/nodejs/node/commit/68732cf426)] - **deps**: update histogram to 0.11.9 (Node.js GitHub Bot) [#59689](https://github.com/nodejs/node/pull/59689)
|
|
115
|
+
* \[[`f12c1ad961`](https://github.com/nodejs/node/commit/f12c1ad961)] - **deps**: update googletest to eb2d85e (Node.js GitHub Bot) [#59335](https://github.com/nodejs/node/pull/59335)
|
|
116
|
+
* \[[`45af6966ae`](https://github.com/nodejs/node/commit/45af6966ae)] - **deps**: upgrade npm to 11.6.0 (npm team) [#59750](https://github.com/nodejs/node/pull/59750)
|
|
117
|
+
* \[[`57617244a4`](https://github.com/nodejs/node/commit/57617244a4)] - **deps**: V8: cherry-pick 6b1b9bca2a8 (Xiao-Tao) [#59283](https://github.com/nodejs/node/pull/59283)
|
|
118
|
+
* \[[`2e6225a747`](https://github.com/nodejs/node/commit/2e6225a747)] - **deps**: update amaro to 1.1.2 (Node.js GitHub Bot) [#59616](https://github.com/nodejs/node/pull/59616)
|
|
119
|
+
* \[[`1f7f6dfae6`](https://github.com/nodejs/node/commit/1f7f6dfae6)] - **diagnostics\_channel**: revoke DEP0163 (René) [#59758](https://github.com/nodejs/node/pull/59758)
|
|
120
|
+
* \[[`8671a6cdb3`](https://github.com/nodejs/node/commit/8671a6cdb3)] - **doc**: stabilize --disable-sigusr1 (Rafael Gonzaga) [#59707](https://github.com/nodejs/node/pull/59707)
|
|
121
|
+
* \[[`583b1b255d`](https://github.com/nodejs/node/commit/583b1b255d)] - **doc**: update OpenSSL default security level to 2 (Jeetu Suthar) [#59723](https://github.com/nodejs/node/pull/59723)
|
|
122
|
+
* \[[`9b5eb6eb50`](https://github.com/nodejs/node/commit/9b5eb6eb50)] - **doc**: fix missing links in the `errors` page (Nam Yooseong) [#59427](https://github.com/nodejs/node/pull/59427)
|
|
123
|
+
* \[[`e7bf712c57`](https://github.com/nodejs/node/commit/e7bf712c57)] - **doc**: update "Type stripping in dependencies" section (Josh Kelley) [#59652](https://github.com/nodejs/node/pull/59652)
|
|
124
|
+
* \[[`96db47f91e`](https://github.com/nodejs/node/commit/96db47f91e)] - **doc**: add Miles Guicent as triager (Miles Guicent) [#59562](https://github.com/nodejs/node/pull/59562)
|
|
125
|
+
* \[[`87f829bd0c`](https://github.com/nodejs/node/commit/87f829bd0c)] - **doc**: mark `path.matchesGlob` as stable (Aviv Keller) [#59572](https://github.com/nodejs/node/pull/59572)
|
|
126
|
+
* \[[`062b2f705e`](https://github.com/nodejs/node/commit/062b2f705e)] - **doc**: improve documentation for raw headers in HTTP/2 APIs (Tim Perry) [#59633](https://github.com/nodejs/node/pull/59633)
|
|
127
|
+
* \[[`6ab9306370`](https://github.com/nodejs/node/commit/6ab9306370)] - **doc**: update install\_tools.bat free disk space (Stefan Stojanovic) [#59579](https://github.com/nodejs/node/pull/59579)
|
|
128
|
+
* \[[`c8d6b60da6`](https://github.com/nodejs/node/commit/c8d6b60da6)] - **doc**: fix quic session instance typo (jakecastelli) [#59642](https://github.com/nodejs/node/pull/59642)
|
|
129
|
+
* \[[`61d0a2d1ba`](https://github.com/nodejs/node/commit/61d0a2d1ba)] - **doc**: fix filehandle.read typo (Ruy Adorno) [#59635](https://github.com/nodejs/node/pull/59635)
|
|
130
|
+
* \[[`3276bfa0d0`](https://github.com/nodejs/node/commit/3276bfa0d0)] - **doc**: update migration recomendations for `util.is**()` deprecations (Augustin Mauroy) [#59269](https://github.com/nodejs/node/pull/59269)
|
|
131
|
+
* \[[`11de6c7ebb`](https://github.com/nodejs/node/commit/11de6c7ebb)] - **doc**: fix missing link to the Error documentation in the `http` page (Alexander Makarenko) [#59080](https://github.com/nodejs/node/pull/59080)
|
|
132
|
+
* \[[`f5b6829bba`](https://github.com/nodejs/node/commit/f5b6829bba)] - **doc,crypto**: add description to the KEM and supports() methods (Filip Skokan) [#59644](https://github.com/nodejs/node/pull/59644)
|
|
133
|
+
* \[[`5bfdc7ee74`](https://github.com/nodejs/node/commit/5bfdc7ee74)] - **doc,crypto**: cleanup unlinked and self method references webcrypto.md (Filip Skokan) [#59608](https://github.com/nodejs/node/pull/59608)
|
|
134
|
+
* \[[`010458d061`](https://github.com/nodejs/node/commit/010458d061)] - **esm**: populate separate cache for require(esm) in imported CJS (Joyee Cheung) [#59679](https://github.com/nodejs/node/pull/59679)
|
|
135
|
+
* \[[`dbe6e63baf`](https://github.com/nodejs/node/commit/dbe6e63baf)] - **esm**: fix missed renaming in ModuleJob.runSync (Joyee Cheung) [#59724](https://github.com/nodejs/node/pull/59724)
|
|
136
|
+
* \[[`8eb0d9d834`](https://github.com/nodejs/node/commit/8eb0d9d834)] - **fs**: fix wrong order of file names in cpSync error message (Nicholas Paun) [#59775](https://github.com/nodejs/node/pull/59775)
|
|
137
|
+
* \[[`e69be5611f`](https://github.com/nodejs/node/commit/e69be5611f)] - **fs**: fix dereference: false on cpSync (Nicholas Paun) [#59681](https://github.com/nodejs/node/pull/59681)
|
|
138
|
+
* \[[`2865d2ac20`](https://github.com/nodejs/node/commit/2865d2ac20)] - **http**: unbreak keepAliveTimeoutBuffer (Robert Nagy) [#59784](https://github.com/nodejs/node/pull/59784)
|
|
139
|
+
* \[[`ade1175475`](https://github.com/nodejs/node/commit/ade1175475)] - **http**: use cached '1.1' http version string (Robert Nagy) [#59717](https://github.com/nodejs/node/pull/59717)
|
|
140
|
+
* \[[`74a09482de`](https://github.com/nodejs/node/commit/74a09482de)] - **inspector**: undici as shared-library should pass tests (Aras Abbasi) [#59837](https://github.com/nodejs/node/pull/59837)
|
|
141
|
+
* \[[`772f8f415a`](https://github.com/nodejs/node/commit/772f8f415a)] - **inspector**: add http2 tracking support (Darshan Sen) [#59611](https://github.com/nodejs/node/pull/59611)
|
|
142
|
+
* \[[`3d225572d7`](https://github.com/nodejs/node/commit/3d225572d7)] - _**Revert**_ "**lib**: optimize writable stream buffer clearing" (Yoo) [#59743](https://github.com/nodejs/node/pull/59743)
|
|
143
|
+
* \[[`4fd213ce73`](https://github.com/nodejs/node/commit/4fd213ce73)] - **lib**: fix isReadable and isWritable return type value (Gabriel Quaresma) [#59089](https://github.com/nodejs/node/pull/59089)
|
|
144
|
+
* \[[`39befddb87`](https://github.com/nodejs/node/commit/39befddb87)] - **lib**: prefer TypedArrayPrototype primordials (Filip Skokan) [#59766](https://github.com/nodejs/node/pull/59766)
|
|
145
|
+
* \[[`0748160d2e`](https://github.com/nodejs/node/commit/0748160d2e)] - **lib**: fix DOMException subclass support (Chengzhong Wu) [#59680](https://github.com/nodejs/node/pull/59680)
|
|
146
|
+
* \[[`1a93df808c`](https://github.com/nodejs/node/commit/1a93df808c)] - **lib**: revert to using default derived class constructors (René) [#59650](https://github.com/nodejs/node/pull/59650)
|
|
147
|
+
* \[[`bb0755df37`](https://github.com/nodejs/node/commit/bb0755df37)] - **meta**: bump `codecov/codecov-action` (dependabot\[bot]) [#59726](https://github.com/nodejs/node/pull/59726)
|
|
148
|
+
* \[[`45d148d9be`](https://github.com/nodejs/node/commit/45d148d9be)] - **meta**: bump actions/download-artifact from 4.3.0 to 5.0.0 (dependabot\[bot]) [#59729](https://github.com/nodejs/node/pull/59729)
|
|
149
|
+
* \[[`01b66b122e`](https://github.com/nodejs/node/commit/01b66b122e)] - **meta**: bump github/codeql-action from 3.29.2 to 3.30.0 (dependabot\[bot]) [#59728](https://github.com/nodejs/node/pull/59728)
|
|
150
|
+
* \[[`34f7ab5502`](https://github.com/nodejs/node/commit/34f7ab5502)] - **meta**: bump actions/cache from 4.2.3 to 4.2.4 (dependabot\[bot]) [#59727](https://github.com/nodejs/node/pull/59727)
|
|
151
|
+
* \[[`5806ea02af`](https://github.com/nodejs/node/commit/5806ea02af)] - **meta**: bump actions/checkout from 4.2.2 to 5.0.0 (dependabot\[bot]) [#59725](https://github.com/nodejs/node/pull/59725)
|
|
152
|
+
* \[[`f667215583`](https://github.com/nodejs/node/commit/f667215583)] - **path**: refactor path joining logic for clarity and performance (Lee Jiho) [#59781](https://github.com/nodejs/node/pull/59781)
|
|
153
|
+
* \[[`0340fe92a6`](https://github.com/nodejs/node/commit/0340fe92a6)] - **repl**: do not cause side effects in tab completion (Anna Henningsen) [#59774](https://github.com/nodejs/node/pull/59774)
|
|
154
|
+
* \[[`a414c1eb51`](https://github.com/nodejs/node/commit/a414c1eb51)] - **repl**: fix REPL completion under unary expressions (Kingsword) [#59744](https://github.com/nodejs/node/pull/59744)
|
|
155
|
+
* \[[`c206f8dd87`](https://github.com/nodejs/node/commit/c206f8dd87)] - **repl**: add isValidParentheses check before wrap input (Xuguang Mei) [#59607](https://github.com/nodejs/node/pull/59607)
|
|
156
|
+
* \[[`0bf9775ee2`](https://github.com/nodejs/node/commit/0bf9775ee2)] - **sea**: implement sea.getAssetKeys() (Joyee Cheung) [#59661](https://github.com/nodejs/node/pull/59661)
|
|
157
|
+
* \[[`bf26b478d8`](https://github.com/nodejs/node/commit/bf26b478d8)] - **sea**: allow using inspector command line flags with SEA (Joyee Cheung) [#59568](https://github.com/nodejs/node/pull/59568)
|
|
158
|
+
* \[[`92128a8fe2`](https://github.com/nodejs/node/commit/92128a8fe2)] - **src**: use DictionaryTemplate for node\_url\_pattern (James M Snell) [#59802](https://github.com/nodejs/node/pull/59802)
|
|
159
|
+
* \[[`bcb29fb84f`](https://github.com/nodejs/node/commit/bcb29fb84f)] - **src**: correctly report memory changes to V8 (Yaksh Bariya) [#59623](https://github.com/nodejs/node/pull/59623)
|
|
160
|
+
* \[[`44c24657d3`](https://github.com/nodejs/node/commit/44c24657d3)] - **src**: fixup node\_messaging error handling (James M Snell) [#59792](https://github.com/nodejs/node/pull/59792)
|
|
161
|
+
* \[[`2cd6a3b7ec`](https://github.com/nodejs/node/commit/2cd6a3b7ec)] - **src**: track async resources via pointers to stack-allocated handles (Anna Henningsen) [#59704](https://github.com/nodejs/node/pull/59704)
|
|
162
|
+
* \[[`34d752586f`](https://github.com/nodejs/node/commit/34d752586f)] - **src**: fix build on NetBSD (Thomas Klausner) [#59718](https://github.com/nodejs/node/pull/59718)
|
|
163
|
+
* \[[`15fa779ac5`](https://github.com/nodejs/node/commit/15fa779ac5)] - **src**: fix race on process exit and off thread CA loading (Chengzhong Wu) [#59632](https://github.com/nodejs/node/pull/59632)
|
|
164
|
+
* \[[`15cbd3966a`](https://github.com/nodejs/node/commit/15cbd3966a)] - **src**: separate module.hasAsyncGraph and module.hasTopLevelAwait (Joyee Cheung) [#59675](https://github.com/nodejs/node/pull/59675)
|
|
165
|
+
* \[[`88d1ca8990`](https://github.com/nodejs/node/commit/88d1ca8990)] - **src**: use non-deprecated Get/SetPrototype methods (Michaël Zasso) [#59671](https://github.com/nodejs/node/pull/59671)
|
|
166
|
+
* \[[`56ac9a2d46`](https://github.com/nodejs/node/commit/56ac9a2d46)] - **src**: migrate WriteOneByte to WriteOneByteV2 (Chengzhong Wu) [#59634](https://github.com/nodejs/node/pull/59634)
|
|
167
|
+
* \[[`3d88aa9f2f`](https://github.com/nodejs/node/commit/3d88aa9f2f)] - **src**: remove duplicate code (theanarkh) [#59649](https://github.com/nodejs/node/pull/59649)
|
|
168
|
+
* \[[`0718a70b2a`](https://github.com/nodejs/node/commit/0718a70b2a)] - **src**: add name for more threads (theanarkh) [#59601](https://github.com/nodejs/node/pull/59601)
|
|
169
|
+
* \[[`0379a8b254`](https://github.com/nodejs/node/commit/0379a8b254)] - **src**: remove JSONParser (Joyee Cheung) [#59619](https://github.com/nodejs/node/pull/59619)
|
|
170
|
+
* \[[`90d0a1b2e9`](https://github.com/nodejs/node/commit/90d0a1b2e9)] - **src,sqlite**: refactor value conversion (Edy Silva) [#59659](https://github.com/nodejs/node/pull/59659)
|
|
171
|
+
* \[[`5e025c7ca7`](https://github.com/nodejs/node/commit/5e025c7ca7)] - **stream**: replace manual function validation with validateFunction (방진혁) [#59529](https://github.com/nodejs/node/pull/59529)
|
|
172
|
+
* \[[`155a999bed`](https://github.com/nodejs/node/commit/155a999bed)] - **test**: skip tests failing when run under root (Livia Medeiros) [#59779](https://github.com/nodejs/node/pull/59779)
|
|
173
|
+
* \[[`6313706c69`](https://github.com/nodejs/node/commit/6313706c69)] - **test**: update WPT for urlpattern to cff1ac1123 (Node.js GitHub Bot) [#59602](https://github.com/nodejs/node/pull/59602)
|
|
174
|
+
* \[[`41245ad4c7`](https://github.com/nodejs/node/commit/41245ad4c7)] - **test**: skip more sea tests on Linux ppc64le (Richard Lau) [#59755](https://github.com/nodejs/node/pull/59755)
|
|
175
|
+
* \[[`df63d37ec4`](https://github.com/nodejs/node/commit/df63d37ec4)] - **test**: fix internet/test-dns (Michaël Zasso) [#59660](https://github.com/nodejs/node/pull/59660)
|
|
176
|
+
* \[[`1f6c335e82`](https://github.com/nodejs/node/commit/1f6c335e82)] - **test**: mark test-inspector-network-fetch as flaky again (Joyee Cheung) [#59640](https://github.com/nodejs/node/pull/59640)
|
|
177
|
+
* \[[`1798683df1`](https://github.com/nodejs/node/commit/1798683df1)] - **test**: skip test-fs-cp\* tests that are constantly failing on Windows (Joyee Cheung) [#59637](https://github.com/nodejs/node/pull/59637)
|
|
178
|
+
* \[[`4c48ec09e5`](https://github.com/nodejs/node/commit/4c48ec09e5)] - **test**: deflake test-http-keep-alive-empty-line (Luigi Pinca) [#59595](https://github.com/nodejs/node/pull/59595)
|
|
179
|
+
* \[[`dcdb259e85`](https://github.com/nodejs/node/commit/dcdb259e85)] - **test\_runner**: fix todo inheritance (Moshe Atlow) [#59721](https://github.com/nodejs/node/pull/59721)
|
|
180
|
+
* \[[`24177973a2`](https://github.com/nodejs/node/commit/24177973a2)] - **test\_runner**: set mock timer's interval undefined (hotpineapple) [#59479](https://github.com/nodejs/node/pull/59479)
|
|
181
|
+
* \[[`83d11f8a7a`](https://github.com/nodejs/node/commit/83d11f8a7a)] - **tools**: print appropriate output when test aborted (hotpineapple) [#59794](https://github.com/nodejs/node/pull/59794)
|
|
182
|
+
* \[[`1eca2cc548`](https://github.com/nodejs/node/commit/1eca2cc548)] - **tools**: use sparse checkout in `build-tarball.yml` (Antoine du Hamel) [#59788](https://github.com/nodejs/node/pull/59788)
|
|
183
|
+
* \[[`89fa1a929d`](https://github.com/nodejs/node/commit/89fa1a929d)] - **tools**: remove unused actions from `build-tarball.yml` (Antoine du Hamel) [#59787](https://github.com/nodejs/node/pull/59787)
|
|
184
|
+
* \[[`794ca3511d`](https://github.com/nodejs/node/commit/794ca3511d)] - **tools**: do not attempt to compress tgz archive (Antoine du Hamel) [#59785](https://github.com/nodejs/node/pull/59785)
|
|
185
|
+
* \[[`377bdb9b7e`](https://github.com/nodejs/node/commit/377bdb9b7e)] - **tools**: add v8windbg target (Chengzhong Wu) [#59767](https://github.com/nodejs/node/pull/59767)
|
|
186
|
+
* \[[`6696d1d6c9`](https://github.com/nodejs/node/commit/6696d1d6c9)] - **tools**: improve error handling in node\_mksnapshot (James M Snell) [#59437](https://github.com/nodejs/node/pull/59437)
|
|
187
|
+
* \[[`8dbd0f13e8`](https://github.com/nodejs/node/commit/8dbd0f13e8)] - **tools**: add sccache to `test-internet` workflow (Antoine du Hamel) [#59720](https://github.com/nodejs/node/pull/59720)
|
|
188
|
+
* \[[`6523c2d7d9`](https://github.com/nodejs/node/commit/6523c2d7d9)] - **tools**: update gyp-next to 0.20.4 (Node.js GitHub Bot) [#59690](https://github.com/nodejs/node/pull/59690)
|
|
189
|
+
* \[[`19d633f40c`](https://github.com/nodejs/node/commit/19d633f40c)] - **tools**: add script to make reviewing backport PRs easier (Antoine du Hamel) [#59161](https://github.com/nodejs/node/pull/59161)
|
|
190
|
+
* \[[`15e547b3a4`](https://github.com/nodejs/node/commit/15e547b3a4)] - **typings**: add typing for 'uv' (방진혁) [#59606](https://github.com/nodejs/node/pull/59606)
|
|
191
|
+
* \[[`ad5cfcc901`](https://github.com/nodejs/node/commit/ad5cfcc901)] - **typings**: add missing properties in ConfigBinding (Lee Jiho) [#59585](https://github.com/nodejs/node/pull/59585)
|
|
192
|
+
* \[[`70d2d6d479`](https://github.com/nodejs/node/commit/70d2d6d479)] - **url**: add err.input to ERR\_INVALID\_FILE\_URL\_PATH (Joyee Cheung) [#59730](https://github.com/nodejs/node/pull/59730)
|
|
193
|
+
* \[[`e476e43c17`](https://github.com/nodejs/node/commit/e476e43c17)] - **util**: fix numericSeparator with negative fractional numbers (sangwook) [#59379](https://github.com/nodejs/node/pull/59379)
|
|
194
|
+
* \[[`b2e8f40d15`](https://github.com/nodejs/node/commit/b2e8f40d15)] - **util**: remove unnecessary template strings (btea) [#59201](https://github.com/nodejs/node/pull/59201)
|
|
195
|
+
* \[[`6f79450ea2`](https://github.com/nodejs/node/commit/6f79450ea2)] - **util**: remove outdated TODO comment (haramjeong) [#59760](https://github.com/nodejs/node/pull/59760)
|
|
196
|
+
* \[[`32731432ef`](https://github.com/nodejs/node/commit/32731432ef)] - **util**: use getOptionValue('--no-deprecation') in deprecated() (haramjeong) [#59760](https://github.com/nodejs/node/pull/59760)
|
|
197
|
+
* \[[`65e4e68c90`](https://github.com/nodejs/node/commit/65e4e68c90)] - **util**: hide duplicated stack frames when using util.inspect (Ruben Bridgewater) [#59447](https://github.com/nodejs/node/pull/59447)
|
|
198
|
+
* \[[`2086f3365f`](https://github.com/nodejs/node/commit/2086f3365f)] - **vm**: sync-ify SourceTextModule linkage (Chengzhong Wu) [#59000](https://github.com/nodejs/node/pull/59000)
|
|
199
|
+
* \[[`c16163511d`](https://github.com/nodejs/node/commit/c16163511d)] - **wasi**: fix `clean` target in `test/wasi/Makefile` (Antoine du Hamel) [#59576](https://github.com/nodejs/node/pull/59576)
|
|
200
|
+
* \[[`2e54411cb6`](https://github.com/nodejs/node/commit/2e54411cb6)] - **worker**: optimize cpu profile implement (theanarkh) [#59683](https://github.com/nodejs/node/pull/59683)
|
|
201
|
+
* \[[`d6d05ba397`](https://github.com/nodejs/node/commit/d6d05ba397)] - **(SEMVER-MINOR)** **worker**: add cpu profile APIs for worker (theanarkh) [#59428](https://github.com/nodejs/node/pull/59428)
|
|
202
|
+
|
|
52
203
|
<a id="24.7.0"></a>
|
|
53
204
|
|
|
54
205
|
## 2025-08-27, Version 24.7.0 (Current), @targos
|
package/README.md
CHANGED
|
@@ -767,6 +767,8 @@ maintaining the Node.js project.
|
|
|
767
767
|
**Akhil Marsonya** <<akhil.marsonya27@gmail.com>> (he/him)
|
|
768
768
|
* [meixg](https://github.com/meixg) -
|
|
769
769
|
**Xuguang Mei** <<meixuguang@gmail.com>> (he/him)
|
|
770
|
+
* [milesguicent](https://github.com/milesguicent) -
|
|
771
|
+
**Miles Guicent** <<guicent@pm.me>> (he/him)
|
|
770
772
|
* [preveen-stack](https://github.com/preveen-stack) -
|
|
771
773
|
**Preveen Padmanabhan** <<wide4head@gmail.com>> (he/him)
|
|
772
774
|
* [RaisinTen](https://github.com/RaisinTen) -
|
package/bin/node
CHANGED
|
Binary file
|
package/include/node/common.gypi
CHANGED
package/include/node/config.gypi
CHANGED
|
@@ -61,12 +61,14 @@
|
|
|
61
61
|
'test/cctest/test_quic_tokens.cc',
|
|
62
62
|
'test/cctest/test_report.cc',
|
|
63
63
|
'test/cctest/test_sockaddr.cc',
|
|
64
|
+
'test/cctest/test_string_bytes.cc',
|
|
64
65
|
'test/cctest/test_traced_value.cc',
|
|
65
66
|
'test/cctest/test_util.cc',
|
|
66
67
|
'test/cctest/node_test_fixture.h'],
|
|
67
68
|
'node_debug_lib': 'false',
|
|
68
69
|
'node_enable_d8': 'false',
|
|
69
70
|
'node_enable_v8_vtunejit': 'false',
|
|
71
|
+
'node_enable_v8windbg': 'false',
|
|
70
72
|
'node_fipsinstall': 'false',
|
|
71
73
|
'node_install_corepack': 'true',
|
|
72
74
|
'node_install_npm': 'true',
|
|
@@ -204,6 +206,7 @@
|
|
|
204
206
|
'lib/internal/http2/util.js',
|
|
205
207
|
'lib/internal/inspector/network.js',
|
|
206
208
|
'lib/internal/inspector/network_http.js',
|
|
209
|
+
'lib/internal/inspector/network_http2.js',
|
|
207
210
|
'lib/internal/inspector/network_resources.js',
|
|
208
211
|
'lib/internal/inspector/network_undici.js',
|
|
209
212
|
'lib/internal/inspector_async_hook.js',
|
package/include/node/node.exp
CHANGED
|
@@ -6858,7 +6858,7 @@ _GLOBAL__I_65535_0_.._deps_v8_src_sandbox_sandbox.cc_D1AFF0D6_0x9b84aaa651f638ca
|
|
|
6858
6858
|
_GLOBAL__I_65535_0_.._deps_v8_src_sandbox_testing.cc_DFF67DD7_0xdae73be3a2e9a318
|
|
6859
6859
|
_GLOBAL__I_65535_0_.._deps_v8_src_sandbox_trusted_pointer_scope.cc_DFF67DD7_0xfd14f859c8923780
|
|
6860
6860
|
_GLOBAL__I_65535_0_.._deps_v8_src_sandbox_trusted_pointer_table.cc_DFF67DD7_0x14145ab5e677a44d
|
|
6861
|
-
_GLOBAL__I_65535_0_.._src_connection_wrap.
|
|
6861
|
+
_GLOBAL__I_65535_0_.._src_connection_wrap.cc_DFF67DD7_0x61b3425b45b0e5e8
|
|
6862
6862
|
_GLOBAL__I_65535_0_OPENSSL_ppccap_P
|
|
6863
6863
|
_GLOBAL__I_65535_0__Z17_register_symbolsv
|
|
6864
6864
|
_GLOBAL__I_65535_0__Z22_register_process_wrapv
|
|
@@ -7873,7 +7873,6 @@ _GLOBAL__I_65535_0__ZN4absl13cord_internal32SetCordBtreeExhaustiveValidationEb
|
|
|
7873
7873
|
_GLOBAL__I_65535_0__ZN4absl18container_internal11kEmptyGroupE
|
|
7874
7874
|
_GLOBAL__I_65535_0__ZN4node10BaseObjectC2EPNS_5RealmEN2v85LocalINS3_6ObjectEEE
|
|
7875
7875
|
_GLOBAL__I_65535_0__ZN4node10HandleWrap3RefERKN2v820FunctionCallbackInfoINS1_5ValueEEE
|
|
7876
|
-
_GLOBAL__I_65535_0__ZN4node10JSONParserC2Ev
|
|
7877
7876
|
_GLOBAL__I_65535_0__ZN4node10StreamBase8ShutdownEN2v85LocalINS1_6ObjectEEE
|
|
7878
7877
|
_GLOBAL__I_65535_0__ZN4node10StreamPipeC2EPNS_10StreamBaseES2_N2v85LocalINS3_6ObjectEEE
|
|
7879
7878
|
_GLOBAL__I_65535_0__ZN4node10cares_wrap11ChannelWrapC2EPNS_11EnvironmentEN2v85LocalINS4_6ObjectEEEiii
|
|
@@ -7939,6 +7938,7 @@ _GLOBAL__I_65535_0__ZN4node6Dotenv15GetDataFromArgsERKSt6vectorINSt7__cxx1112bas
|
|
|
7939
7938
|
_GLOBAL__I_65535_0__ZN4node6crypto10CipherBase13GetSSLCiphersERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
7940
7939
|
_GLOBAL__I_65535_0__ZN4node6crypto10HKDFConfigC2EOS1_
|
|
7941
7940
|
_GLOBAL__I_65535_0__ZN4node6crypto10InitializeEN2v85LocalINS1_6ObjectEEENS2_INS1_5ValueEEENS2_INS1_7ContextEEEPv
|
|
7941
|
+
_GLOBAL__I_65535_0__ZN4node6crypto10KmacConfigC2EOS1_
|
|
7942
7942
|
_GLOBAL__I_65535_0__ZN4node6crypto11ManagedX509C2EON7ncrypto11X509PointerE
|
|
7943
7943
|
_GLOBAL__I_65535_0__ZN4node6crypto12Argon2ConfigC2EOS1_
|
|
7944
7944
|
_GLOBAL__I_65535_0__ZN4node6crypto12PBKDF2ConfigC2EOS1_
|
|
@@ -65749,7 +65749,7 @@ _ZN4heap4base8internal11SegmentBase25GetSentinelSegmentAddressEv
|
|
|
65749
65749
|
_ZN4node10AsyncHooks11DeserializeEN2v85LocalINS1_7ContextEEE
|
|
65750
65750
|
_ZN4node10AsyncHooks17ResetPromiseHooksEN2v85LocalINS1_8FunctionEEES4_S4_S4_
|
|
65751
65751
|
_ZN4node10AsyncHooks17pop_async_contextEd
|
|
65752
|
-
|
|
65752
|
+
_ZN4node10AsyncHooks18push_async_contextEddPN2v85LocalINS1_6ObjectEEE
|
|
65753
65753
|
_ZN4node10AsyncHooks19InstallPromiseHooksEN2v85LocalINS1_7ContextEEE
|
|
65754
65754
|
_ZN4node10AsyncHooks20clear_async_id_stackEv
|
|
65755
65755
|
_ZN4node10AsyncHooks20grow_async_ids_stackEv
|
|
@@ -65802,12 +65802,6 @@ _ZN4node10HandleWrap7OnCloseEP11uv_handle_s
|
|
|
65802
65802
|
_ZN4node10HandleWrap7OnCloseEv
|
|
65803
65803
|
_ZN4node10HandleWrapC1EPNS_11EnvironmentEN2v85LocalINS3_6ObjectEEEP11uv_handle_sNS_9AsyncWrap12ProviderTypeE
|
|
65804
65804
|
_ZN4node10HandleWrapC2EPNS_11EnvironmentEN2v85LocalINS3_6ObjectEEEP11uv_handle_sNS_9AsyncWrap12ProviderTypeE
|
|
65805
|
-
_ZN4node10JSONParser20GetTopLevelBoolFieldESt17basic_string_viewIcSt11char_traitsIcEE
|
|
65806
|
-
_ZN4node10JSONParser21GetTopLevelStringDictB5cxx11ESt17basic_string_viewIcSt11char_traitsIcEE
|
|
65807
|
-
_ZN4node10JSONParser22GetTopLevelStringFieldB5cxx11ESt17basic_string_viewIcSt11char_traitsIcEE
|
|
65808
|
-
_ZN4node10JSONParser5ParseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE
|
|
65809
|
-
_ZN4node10JSONParserC1Ev
|
|
65810
|
-
_ZN4node10JSONParserC2Ev
|
|
65811
65805
|
_ZN4node10JSONWriter10json_startEv
|
|
65812
65806
|
_ZN4node10JSONWriter12json_elementINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEvRKT_
|
|
65813
65807
|
_ZN4node10JSONWriter12write_stringESt17basic_string_viewIcSt11char_traitsIcEE
|
|
@@ -66133,10 +66127,12 @@ _ZN4node11Environment13TracePromisesEN2v815PromiseHookTypeENS1_5LocalINS1_7Promi
|
|
|
66133
66127
|
_ZN4node11Environment14AddUnmanagedFdEi
|
|
66134
66128
|
_ZN4node11Environment14CheckImmediateEP10uv_check_s
|
|
66135
66129
|
_ZN4node11Environment14CleanupHandlesEv
|
|
66130
|
+
_ZN4node11Environment14StopCpuProfileEj
|
|
66136
66131
|
_ZN4node11Environment14ToggleTimerRefEb
|
|
66137
66132
|
_ZN4node11Environment14UntrackContextEN2v85LocalINS1_7ContextEEE
|
|
66138
66133
|
_ZN4node11Environment15AssignToContextEN2v85LocalINS1_7ContextEEEPNS_5RealmERKNS_11ContextInfoE
|
|
66139
66134
|
_ZN4node11Environment15InitializeLibuvEv
|
|
66135
|
+
_ZN4node11Environment15StartCpuProfileEv
|
|
66140
66136
|
_ZN4node11Environment16TrackShadowRealmEPNS_12shadow_realm11ShadowRealmE
|
|
66141
66137
|
_ZN4node11Environment17FlushCompileCacheEv
|
|
66142
66138
|
_ZN4node11Environment17RemoveUnmanagedFdEi
|
|
@@ -66202,6 +66198,7 @@ _ZN4node11RAIIIsolateD2Ev
|
|
|
66202
66198
|
_ZN4node11SPrintFImplB5cxx11EPKc
|
|
66203
66199
|
_ZN4node11SPrintFImplINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEJEEES6_PKcOT_DpOT0_
|
|
66204
66200
|
_ZN4node11SPrintFImplINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEJPcEEES6_PKcOT_DpOT0_
|
|
66201
|
+
_ZN4node11SPrintFImplINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEJRiRjEEES6_PKcOT_DpOT0_
|
|
66205
66202
|
_ZN4node11SPrintFImplINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEJiEEES6_PKcOT_DpOT0_
|
|
66206
66203
|
_ZN4node11SPrintFImplIPKcJEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_OT_DpOT0_
|
|
66207
66204
|
_ZN4node11SPrintFImplIPKcJRA12_S1_EEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_OT_DpOT0_
|
|
@@ -66594,8 +66591,6 @@ _ZN4node12shadow_realm11ShadowRealm15set_primordialsEN2v85LocalINS2_6ObjectEEE
|
|
|
66594
66591
|
_ZN4node12shadow_realm11ShadowRealm16set_message_portEN2v85LocalINS2_6ObjectEEE
|
|
66595
66592
|
_ZN4node12shadow_realm11ShadowRealm18set_process_objectEN2v85LocalINS2_6ObjectEEE
|
|
66596
66593
|
_ZN4node12shadow_realm11ShadowRealm23set_async_hooks_bindingEN2v85LocalINS2_6ObjectEEE
|
|
66597
|
-
_ZN4node12shadow_realm11ShadowRealm24set_promise_hook_handlerEN2v85LocalINS2_8FunctionEEE
|
|
66598
|
-
_ZN4node12shadow_realm11ShadowRealm25set_domexception_functionEN2v85LocalINS2_8FunctionEEE
|
|
66599
66594
|
_ZN4node12shadow_realm11ShadowRealm26set_builtin_module_requireEN2v85LocalINS2_8FunctionEEE
|
|
66600
66595
|
_ZN4node12shadow_realm11ShadowRealm26set_tick_callback_functionEN2v85LocalINS2_8FunctionEEE
|
|
66601
66596
|
_ZN4node12shadow_realm11ShadowRealm27set_buffer_prototype_objectEN2v85LocalINS2_6ObjectEEE
|
|
@@ -66604,7 +66599,6 @@ _ZN4node12shadow_realm11ShadowRealm27set_promise_reject_callbackEN2v85LocalINS2_
|
|
|
66604
66599
|
_ZN4node12shadow_realm11ShadowRealm27set_source_map_cache_getterEN2v85LocalINS2_8FunctionEEE
|
|
66605
66600
|
_ZN4node12shadow_realm11ShadowRealm28set_timers_callback_functionEN2v85LocalINS2_8FunctionEEE
|
|
66606
66601
|
_ZN4node12shadow_realm11ShadowRealm28set_udp_constructor_functionEN2v85LocalINS2_8FunctionEEE
|
|
66607
|
-
_ZN4node12shadow_realm11ShadowRealm28set_url_constructor_functionEN2v85LocalINS2_8FunctionEEE
|
|
66608
66602
|
_ZN4node12shadow_realm11ShadowRealm29set_async_hooks_init_functionEN2v85LocalINS2_8FunctionEEE
|
|
66609
66603
|
_ZN4node12shadow_realm11ShadowRealm29set_process_emit_warning_syncEN2v85LocalINS2_8FunctionEEE
|
|
66610
66604
|
_ZN4node12shadow_realm11ShadowRealm29set_snapshot_deserialize_mainEN2v85LocalINS2_8FunctionEEE
|
|
@@ -66617,7 +66611,6 @@ _ZN4node12shadow_realm11ShadowRealm31set_snapshot_serialize_callbackEN2v85LocalI
|
|
|
66617
66611
|
_ZN4node12shadow_realm11ShadowRealm32set_async_hooks_destroy_functionEN2v85LocalINS2_8FunctionEEE
|
|
66618
66612
|
_ZN4node12shadow_realm11ShadowRealm32set_inspector_enable_async_hooksEN2v85LocalINS2_8FunctionEEE
|
|
66619
66613
|
_ZN4node12shadow_realm11ShadowRealm32set_prepare_stack_trace_callbackEN2v85LocalINS2_8FunctionEEE
|
|
66620
|
-
_ZN4node12shadow_realm11ShadowRealm33set_crypto_key_object_constructorEN2v85LocalINS2_8FunctionEEE
|
|
66621
66614
|
_ZN4node12shadow_realm11ShadowRealm33set_http2session_on_ping_functionEN2v85LocalINS2_8FunctionEEE
|
|
66622
66615
|
_ZN4node12shadow_realm11ShadowRealm33set_inspector_disable_async_hooksEN2v85LocalINS2_8FunctionEEE
|
|
66623
66616
|
_ZN4node12shadow_realm11ShadowRealm33set_snapshot_deserialize_callbackEN2v85LocalINS2_8FunctionEEE
|
|
@@ -66892,8 +66885,6 @@ _ZN4node14PrincipalRealm15set_primordialsEN2v85LocalINS1_6ObjectEEE
|
|
|
66892
66885
|
_ZN4node14PrincipalRealm16set_message_portEN2v85LocalINS1_6ObjectEEE
|
|
66893
66886
|
_ZN4node14PrincipalRealm18set_process_objectEN2v85LocalINS1_6ObjectEEE
|
|
66894
66887
|
_ZN4node14PrincipalRealm23set_async_hooks_bindingEN2v85LocalINS1_6ObjectEEE
|
|
66895
|
-
_ZN4node14PrincipalRealm24set_promise_hook_handlerEN2v85LocalINS1_8FunctionEEE
|
|
66896
|
-
_ZN4node14PrincipalRealm25set_domexception_functionEN2v85LocalINS1_8FunctionEEE
|
|
66897
66888
|
_ZN4node14PrincipalRealm26set_builtin_module_requireEN2v85LocalINS1_8FunctionEEE
|
|
66898
66889
|
_ZN4node14PrincipalRealm26set_tick_callback_functionEN2v85LocalINS1_8FunctionEEE
|
|
66899
66890
|
_ZN4node14PrincipalRealm27set_buffer_prototype_objectEN2v85LocalINS1_6ObjectEEE
|
|
@@ -66902,7 +66893,6 @@ _ZN4node14PrincipalRealm27set_promise_reject_callbackEN2v85LocalINS1_8FunctionEE
|
|
|
66902
66893
|
_ZN4node14PrincipalRealm27set_source_map_cache_getterEN2v85LocalINS1_8FunctionEEE
|
|
66903
66894
|
_ZN4node14PrincipalRealm28set_timers_callback_functionEN2v85LocalINS1_8FunctionEEE
|
|
66904
66895
|
_ZN4node14PrincipalRealm28set_udp_constructor_functionEN2v85LocalINS1_8FunctionEEE
|
|
66905
|
-
_ZN4node14PrincipalRealm28set_url_constructor_functionEN2v85LocalINS1_8FunctionEEE
|
|
66906
66896
|
_ZN4node14PrincipalRealm29set_async_hooks_init_functionEN2v85LocalINS1_8FunctionEEE
|
|
66907
66897
|
_ZN4node14PrincipalRealm29set_process_emit_warning_syncEN2v85LocalINS1_8FunctionEEE
|
|
66908
66898
|
_ZN4node14PrincipalRealm29set_snapshot_deserialize_mainEN2v85LocalINS1_8FunctionEEE
|
|
@@ -66915,7 +66905,6 @@ _ZN4node14PrincipalRealm31set_snapshot_serialize_callbackEN2v85LocalINS1_8Functi
|
|
|
66915
66905
|
_ZN4node14PrincipalRealm32set_async_hooks_destroy_functionEN2v85LocalINS1_8FunctionEEE
|
|
66916
66906
|
_ZN4node14PrincipalRealm32set_inspector_enable_async_hooksEN2v85LocalINS1_8FunctionEEE
|
|
66917
66907
|
_ZN4node14PrincipalRealm32set_prepare_stack_trace_callbackEN2v85LocalINS1_8FunctionEEE
|
|
66918
|
-
_ZN4node14PrincipalRealm33set_crypto_key_object_constructorEN2v85LocalINS1_8FunctionEEE
|
|
66919
66908
|
_ZN4node14PrincipalRealm33set_http2session_on_ping_functionEN2v85LocalINS1_8FunctionEEE
|
|
66920
66909
|
_ZN4node14PrincipalRealm33set_inspector_disable_async_hooksEN2v85LocalINS1_8FunctionEEE
|
|
66921
66910
|
_ZN4node14PrincipalRealm33set_snapshot_deserialize_callbackEN2v85LocalINS1_8FunctionEEE
|
|
@@ -66987,7 +66976,6 @@ _ZN4node14options_parser13OptionsParserINS_12DebugOptionsEE17SimpleOptionFieldIb
|
|
|
66987
66976
|
_ZN4node14options_parser13OptionsParserINS_12DebugOptionsEE17SimpleOptionFieldIbED1Ev
|
|
66988
66977
|
_ZN4node14options_parser13OptionsParserINS_12DebugOptionsEE7ImpliesEPKcS5_
|
|
66989
66978
|
_ZN4node14options_parser13OptionsParserINS_12DebugOptionsEE8AddAliasEPKcS5_
|
|
66990
|
-
_ZN4node14options_parser13OptionsParserINS_12DebugOptionsEE9AddOptionEPKcS5_MS2_bNS_20OptionEnvvarSettingsEbNS0_16OptionNamespacesE
|
|
66991
66979
|
_ZN4node14options_parser13OptionsParserINS_12DebugOptionsEED0Ev
|
|
66992
66980
|
_ZN4node14options_parser13OptionsParserINS_12DebugOptionsEED1Ev
|
|
66993
66981
|
_ZN4node14options_parser13OptionsParserINS_17PerIsolateOptionsEE10ImpliesNotEPKcS5_
|
|
@@ -67192,6 +67180,11 @@ _ZN4node16GetDefaultLocaleERKN2v820FunctionCallbackInfoINS0_5ValueEEE
|
|
|
67192
67180
|
_ZN4node16GetValidFileModeEPNS_11EnvironmentEN2v85LocalINS2_5ValueEEE10uv_fs_type
|
|
67193
67181
|
_ZN4node16HandleEnvOptionsESt10shared_ptrINS_18EnvironmentOptionsEE
|
|
67194
67182
|
_ZN4node16HandleEnvOptionsESt10shared_ptrINS_18EnvironmentOptionsEESt8functionIFNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEE
|
|
67183
|
+
_ZN4node16JSONOutputStream11EndOfStreamEv
|
|
67184
|
+
_ZN4node16JSONOutputStream12GetChunkSizeEv
|
|
67185
|
+
_ZN4node16JSONOutputStream15WriteAsciiChunkEPci
|
|
67186
|
+
_ZN4node16JSONOutputStreamD0Ev
|
|
67187
|
+
_ZN4node16JSONOutputStreamD1Ev
|
|
67195
67188
|
_ZN4node16LoadSnapshotDataEPPKNS_12SnapshotDataE
|
|
67196
67189
|
_ZN4node16MakeSyncCallbackEPN2v87IsolateENS0_5LocalINS0_6ObjectEEENS3_INS0_8FunctionEEEiPNS3_INS0_5ValueEEE
|
|
67197
67190
|
_ZN4node16MaybeStackBufferI8uv_buf_tLm1024EE25AllocateSufficientStorageEm
|
|
@@ -67528,9 +67521,9 @@ _ZN4node21GetTraceEnvVarOptionsEPNS_11EnvironmentE
|
|
|
67528
67521
|
_ZN4node21InitializePrimordialsEN2v85LocalINS0_7ContextEEEPNS_11IsolateDataE
|
|
67529
67522
|
_ZN4node21InspectorParentHandleD0Ev
|
|
67530
67523
|
_ZN4node21InternalCallbackScope5CloseEv
|
|
67531
|
-
|
|
67524
|
+
_ZN4node21InternalCallbackScopeC1EPNS_11EnvironmentESt7variantIJN2v85LocalINS4_6ObjectEEEPS7_EERKNS_13async_contextEiNS5_INS4_5ValueEEE
|
|
67532
67525
|
_ZN4node21InternalCallbackScopeC1EPNS_9AsyncWrapEi
|
|
67533
|
-
|
|
67526
|
+
_ZN4node21InternalCallbackScopeC2EPNS_11EnvironmentESt7variantIJN2v85LocalINS4_6ObjectEEEPS7_EERKNS_13async_contextEiNS5_INS4_5ValueEEE
|
|
67534
67527
|
_ZN4node21InternalCallbackScopeC2EPNS_9AsyncWrapEi
|
|
67535
67528
|
_ZN4node21InternalCallbackScopeD1Ev
|
|
67536
67529
|
_ZN4node21InternalCallbackScopeD2Ev
|
|
@@ -67665,6 +67658,7 @@ _ZN4node23WorkerThreadsTaskRunnerC1EiNS_21PlatformDebugLogLevelE
|
|
|
67665
67658
|
_ZN4node23WorkerThreadsTaskRunnerC2EiNS_21PlatformDebugLogLevelE
|
|
67666
67659
|
_ZN4node24ERR_FS_CP_DIR_TO_NON_DIRIJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEEN2v85LocalINS8_6ObjectEEEPNS8_7IsolateEPKcDpOT_
|
|
67667
67660
|
_ZN4node24ERR_FS_CP_NON_DIR_TO_DIRIJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEEN2v85LocalINS8_6ObjectEEEPNS8_7IsolateEPKcDpOT_
|
|
67661
|
+
_ZN4node24ERR_MODULE_LINK_MISMATCHIJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRjEEEN2v85LocalINS9_6ObjectEEEPNS9_7IsolateEPKcDpOT_
|
|
67668
67662
|
_ZN4node24FreeArrayBufferAllocatorEPNS_20ArrayBufferAllocatorE
|
|
67669
67663
|
_ZN4node24GetInspectorParentHandleEPNS_11EnvironmentENS_8ThreadIdEPKc
|
|
67670
67664
|
_ZN4node24GetInspectorParentHandleEPNS_11EnvironmentENS_8ThreadIdEPKcS4_
|
|
@@ -67941,6 +67935,7 @@ _ZN4node2uv13GetErrMessageERKN2v820FunctionCallbackInfoINS1_5ValueEEE
|
|
|
67941
67935
|
_ZN4node2uv26RegisterExternalReferencesEPNS_25ExternalReferenceRegistryE
|
|
67942
67936
|
_ZN4node2uv7ErrNameERKN2v820FunctionCallbackInfoINS1_5ValueEEE
|
|
67943
67937
|
_ZN4node2uv9GetErrMapERKN2v820FunctionCallbackInfoINS1_5ValueEEE
|
|
67938
|
+
_ZN4node30NewDictionaryInstanceNullProtoEN2v85LocalINS0_7ContextEEENS1_INS0_18DictionaryTemplateEEENS0_10MemorySpanINS0_10MaybeLocalINS0_5ValueEEEEE
|
|
67944
67939
|
_ZN4node30ProcessEmitExperimentalWarningEPNS_11EnvironmentERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE
|
|
67945
67940
|
_ZN4node30ReportWritesToJSStreamListener18OnStreamAfterWriteEPNS_9WriteWrapEi
|
|
67946
67941
|
_ZN4node30ReportWritesToJSStreamListener21OnStreamAfterShutdownEPNS_12ShutdownWrapEi
|
|
@@ -67992,6 +67987,7 @@ _ZN4node3mem18NgLibMemoryManagerINS_5http212Http2SessionE11nghttp2_memE18StopTra
|
|
|
67992
67987
|
_ZN4node3mem18NgLibMemoryManagerINS_5http212Http2SessionE11nghttp2_memE8FreeImplEPvS6_
|
|
67993
67988
|
_ZN4node3sea10InitializeEN2v85LocalINS1_6ObjectEEENS2_INS1_5ValueEEENS2_INS1_7ContextEEEPv
|
|
67994
67989
|
_ZN4node3sea11SeaResourceD1Ev
|
|
67990
|
+
_ZN4node3sea12GetAssetKeysERKN2v820FunctionCallbackInfoINS1_5ValueEEE
|
|
67995
67991
|
_ZN4node3sea15FixupArgsForSEAEiPPc
|
|
67996
67992
|
_ZN4node3sea18IsSingleExecutableEv
|
|
67997
67993
|
_ZN4node3sea25BuildSingleExecutableBlobERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS6_SaIS6_EESD_
|
|
@@ -68584,6 +68580,14 @@ _ZN4node6crypto10HmacTraits10DeriveBitsEPNS_11EnvironmentERKNS0_10HmacConfigEPNS
|
|
|
68584
68580
|
_ZN4node6crypto10HmacTraits12EncodeOutputEPNS_11EnvironmentERKNS0_10HmacConfigEPNS0_10ByteSourceE
|
|
68585
68581
|
_ZN4node6crypto10HmacTraits16AdditionalConfigENS0_13CryptoJobModeERKN2v820FunctionCallbackInfoINS3_5ValueEEEjPNS0_10HmacConfigE
|
|
68586
68582
|
_ZN4node6crypto10InitializeEN2v85LocalINS1_6ObjectEEENS2_INS1_5ValueEEENS2_INS1_7ContextEEEPv
|
|
68583
|
+
_ZN4node6crypto10KmacConfigC1EOS1_
|
|
68584
|
+
_ZN4node6crypto10KmacConfigC2EOS1_
|
|
68585
|
+
_ZN4node6crypto10KmacConfigD0Ev
|
|
68586
|
+
_ZN4node6crypto10KmacConfigD1Ev
|
|
68587
|
+
_ZN4node6crypto10KmacConfigaSEOS1_
|
|
68588
|
+
_ZN4node6crypto10KmacTraits10DeriveBitsEPNS_11EnvironmentERKNS0_10KmacConfigEPNS0_10ByteSourceENS0_13CryptoJobModeE
|
|
68589
|
+
_ZN4node6crypto10KmacTraits12EncodeOutputEPNS_11EnvironmentERKNS0_10KmacConfigEPNS0_10ByteSourceE
|
|
68590
|
+
_ZN4node6crypto10KmacTraits16AdditionalConfigENS0_13CryptoJobModeERKN2v820FunctionCallbackInfoINS3_5ValueEEEjPNS0_10KmacConfigE
|
|
68587
68591
|
_ZN4node6crypto10SignTraits10DeriveBitsEPNS_11EnvironmentERKNS0_17SignConfigurationEPNS0_10ByteSourceENS0_13CryptoJobModeE
|
|
68588
68592
|
_ZN4node6crypto10SignTraits12EncodeOutputEPNS_11EnvironmentERKNS0_17SignConfigurationEPNS0_10ByteSourceE
|
|
68589
68593
|
_ZN4node6crypto10SignTraits16AdditionalConfigENS0_13CryptoJobModeERKN2v820FunctionCallbackInfoINS3_5ValueEEEjPNS0_17SignConfigurationE
|
|
@@ -68657,6 +68661,11 @@ _ZN4node6crypto13DeriveBitsJobINS0_10HmacTraitsEE3NewERKN2v820FunctionCallbackIn
|
|
|
68657
68661
|
_ZN4node6crypto13DeriveBitsJobINS0_10HmacTraitsEE8ToResultEPN2v85LocalINS4_5ValueEEES8_
|
|
68658
68662
|
_ZN4node6crypto13DeriveBitsJobINS0_10HmacTraitsEED0Ev
|
|
68659
68663
|
_ZN4node6crypto13DeriveBitsJobINS0_10HmacTraitsEED1Ev
|
|
68664
|
+
_ZN4node6crypto13DeriveBitsJobINS0_10KmacTraitsEE16DoThreadPoolWorkEv
|
|
68665
|
+
_ZN4node6crypto13DeriveBitsJobINS0_10KmacTraitsEE3NewERKN2v820FunctionCallbackInfoINS4_5ValueEEE
|
|
68666
|
+
_ZN4node6crypto13DeriveBitsJobINS0_10KmacTraitsEE8ToResultEPN2v85LocalINS4_5ValueEEES8_
|
|
68667
|
+
_ZN4node6crypto13DeriveBitsJobINS0_10KmacTraitsEED0Ev
|
|
68668
|
+
_ZN4node6crypto13DeriveBitsJobINS0_10KmacTraitsEED1Ev
|
|
68660
68669
|
_ZN4node6crypto13DeriveBitsJobINS0_10SignTraitsEE16DoThreadPoolWorkEv
|
|
68661
68670
|
_ZN4node6crypto13DeriveBitsJobINS0_10SignTraitsEE3NewERKN2v820FunctionCallbackInfoINS4_5ValueEEE
|
|
68662
68671
|
_ZN4node6crypto13DeriveBitsJobINS0_10SignTraitsEE8ToResultEPN2v85LocalINS4_5ValueEEES8_
|
|
@@ -69068,6 +69077,8 @@ _ZN4node6crypto4HmacD0Ev
|
|
|
69068
69077
|
_ZN4node6crypto4HmacD1Ev
|
|
69069
69078
|
_ZN4node6crypto4Keys10InitializeEPNS_11EnvironmentEN2v85LocalINS4_6ObjectEEE
|
|
69070
69079
|
_ZN4node6crypto4Keys26RegisterExternalReferencesEPNS_25ExternalReferenceRegistryE
|
|
69080
|
+
_ZN4node6crypto4Kmac10InitializeEPNS_11EnvironmentEN2v85LocalINS4_6ObjectEEE
|
|
69081
|
+
_ZN4node6crypto4Kmac26RegisterExternalReferencesEPNS_25ExternalReferenceRegistryE
|
|
69071
69082
|
_ZN4node6crypto4Sign10InitializeEPNS_11EnvironmentEN2v85LocalINS4_6ObjectEEE
|
|
69072
69083
|
_ZN4node6crypto4Sign10SignUpdateERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
69073
69084
|
_ZN4node6crypto4Sign26RegisterExternalReferencesEPNS_25ExternalReferenceRegistryE
|
|
@@ -69252,6 +69263,8 @@ _ZN4node6crypto9CryptoJobINS0_10HashTraitsEE19AfterThreadPoolWorkEi
|
|
|
69252
69263
|
_ZN4node6crypto9CryptoJobINS0_10HashTraitsEE3RunERKN2v820FunctionCallbackInfoINS4_5ValueEEE
|
|
69253
69264
|
_ZN4node6crypto9CryptoJobINS0_10HmacTraitsEE19AfterThreadPoolWorkEi
|
|
69254
69265
|
_ZN4node6crypto9CryptoJobINS0_10HmacTraitsEE3RunERKN2v820FunctionCallbackInfoINS4_5ValueEEE
|
|
69266
|
+
_ZN4node6crypto9CryptoJobINS0_10KmacTraitsEE19AfterThreadPoolWorkEi
|
|
69267
|
+
_ZN4node6crypto9CryptoJobINS0_10KmacTraitsEE3RunERKN2v820FunctionCallbackInfoINS4_5ValueEEE
|
|
69255
69268
|
_ZN4node6crypto9CryptoJobINS0_10SignTraitsEE19AfterThreadPoolWorkEi
|
|
69256
69269
|
_ZN4node6crypto9CryptoJobINS0_10SignTraitsEE3RunERKN2v820FunctionCallbackInfoINS4_5ValueEEE
|
|
69257
69270
|
_ZN4node6crypto9CryptoJobINS0_12Argon2TraitsEE19AfterThreadPoolWorkEi
|
|
@@ -69367,7 +69380,6 @@ _ZN4node6loader10ModuleWrap15InstantiateSyncERKN2v820FunctionCallbackInfoINS2_5V
|
|
|
69367
69380
|
_ZN4node6loader10ModuleWrap16CreateCachedDataERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
69368
69381
|
_ZN4node6loader10ModuleWrap16GetLinkedRequestEj
|
|
69369
69382
|
_ZN4node6loader10ModuleWrap16GetNamespaceSyncERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
69370
|
-
_ZN4node6loader10ModuleWrap16HasTopLevelAwaitERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
69371
69383
|
_ZN4node6loader10ModuleWrap17GetModuleRequestsERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
69372
69384
|
_ZN4node6loader10ModuleWrap18SetSyntheticExportERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
69373
69385
|
_ZN4node6loader10ModuleWrap21GetHostDefinedOptionsEPN2v87IsolateENS2_5LocalINS2_6SymbolEEE
|
|
@@ -69501,6 +69513,7 @@ _ZN4node6sqlite15CustomAggregate8xDestroyEPv
|
|
|
69501
69513
|
_ZN4node6sqlite15CustomAggregate8xInverseEP15sqlite3_contextiPP13sqlite3_value
|
|
69502
69514
|
_ZN4node6sqlite15CustomAggregate9xStepBaseEP15sqlite3_contextiPP13sqlite3_valueMS1_N2v86GlobalINS7_8FunctionEEE
|
|
69503
69515
|
_ZN4node6sqlite15DefineConstantsEN2v85LocalINS1_6ObjectEEE
|
|
69516
|
+
_ZN4node6sqlite16ExtractRowValuesEPN2v87IsolateEiPNS0_13StatementSyncEPNS1_11LocalVectorINS1_5ValueEEE
|
|
69504
69517
|
_ZN4node6sqlite17CreateSQLiteErrorEPN2v87IsolateEPKc
|
|
69505
69518
|
_ZN4node6sqlite18IllegalConstructorERKN2v820FunctionCallbackInfoINS1_5ValueEEE
|
|
69506
69519
|
_ZN4node6sqlite19UserDefinedFunction5xFuncEP15sqlite3_contextiPP13sqlite3_value
|
|
@@ -69632,6 +69645,8 @@ _ZN4node6worker16WorkerThreadDataC1EPNS0_6WorkerE
|
|
|
69632
69645
|
_ZN4node6worker16WorkerThreadDataD1Ev
|
|
69633
69646
|
_ZN4node6worker19WorkerCpuUsageTakerD0Ev
|
|
69634
69647
|
_ZN4node6worker19WorkerCpuUsageTakerD1Ev
|
|
69648
|
+
_ZN4node6worker21WorkerCpuProfileTakerD0Ev
|
|
69649
|
+
_ZN4node6worker21WorkerCpuProfileTakerD1Ev
|
|
69635
69650
|
_ZN4node6worker23WorkerHeapSnapshotTakerD0Ev
|
|
69636
69651
|
_ZN4node6worker23WorkerHeapSnapshotTakerD1Ev
|
|
69637
69652
|
_ZN4node6worker25WorkerHeapStatisticsTakerD0Ev
|
|
@@ -69665,6 +69680,8 @@ _ZN4node6worker6Worker11StartThreadERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
|
69665
69680
|
_ZN4node6worker6Worker12LoopIdleTimeERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
69666
69681
|
_ZN4node6worker6Worker13LoopStartTimeERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
69667
69682
|
_ZN4node6worker6Worker13NearHeapLimitEPvmm
|
|
69683
|
+
_ZN4node6worker6Worker14StopCpuProfileERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
69684
|
+
_ZN4node6worker6Worker15StartCpuProfileERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
69668
69685
|
_ZN4node6worker6Worker16TakeHeapSnapshotERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
69669
69686
|
_ZN4node6worker6Worker17GetHeapStatisticsERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
69670
69687
|
_ZN4node6worker6Worker17GetResourceLimitsERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
@@ -69816,6 +69833,7 @@ _ZN4node7ReqWrapI7uv_fs_sE6CancelEv
|
|
|
69816
69833
|
_ZN4node7SPrintFIJEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcDpOT_
|
|
69817
69834
|
_ZN4node7SPrintFIJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES6_PKcDpOT_
|
|
69818
69835
|
_ZN4node7SPrintFIJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES6_PKcDpOT_
|
|
69836
|
+
_ZN4node7SPrintFIJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRjEEES6_PKcDpOT_
|
|
69819
69837
|
_ZN4node7SPrintFIJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES6_PKcDpOT_
|
|
69820
69838
|
_ZN4node7SPrintFIJPKcEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_DpOT_
|
|
69821
69839
|
_ZN4node7SPrintFIJPKcRKmEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_DpOT_
|
|
@@ -78563,6 +78581,16 @@ _ZN7ncrypto13EVPKeyPointerC2EP11evp_pkey_st
|
|
|
78563
78581
|
_ZN7ncrypto13EVPKeyPointerD1Ev
|
|
78564
78582
|
_ZN7ncrypto13EVPKeyPointerD2Ev
|
|
78565
78583
|
_ZN7ncrypto13EVPKeyPointeraSEOS0_
|
|
78584
|
+
_ZN7ncrypto13EVPMacPointer5FetchEPKc
|
|
78585
|
+
_ZN7ncrypto13EVPMacPointer5resetEP10evp_mac_st
|
|
78586
|
+
_ZN7ncrypto13EVPMacPointer7releaseEv
|
|
78587
|
+
_ZN7ncrypto13EVPMacPointerC1EOS0_
|
|
78588
|
+
_ZN7ncrypto13EVPMacPointerC1EP10evp_mac_st
|
|
78589
|
+
_ZN7ncrypto13EVPMacPointerC2EOS0_
|
|
78590
|
+
_ZN7ncrypto13EVPMacPointerC2EP10evp_mac_st
|
|
78591
|
+
_ZN7ncrypto13EVPMacPointerD1Ev
|
|
78592
|
+
_ZN7ncrypto13EVPMacPointerD2Ev
|
|
78593
|
+
_ZN7ncrypto13EVPMacPointeraSEOS0_
|
|
78566
78594
|
_ZN7ncrypto13EnginePointer12setAsDefaultEjPNS_15CryptoErrorListE
|
|
78567
78595
|
_ZN7ncrypto13EnginePointer14loadPrivateKeyEPKc
|
|
78568
78596
|
_ZN7ncrypto13EnginePointer15getEngineByNameEPKcPNS_15CryptoErrorListE
|
|
@@ -78664,6 +78692,8 @@ _ZN7ncrypto15EVPMDCtxPointer11digestFinalEm
|
|
|
78664
78692
|
_ZN7ncrypto15EVPMDCtxPointer12digestUpdateERKNS_6BufferIKvEE
|
|
78665
78693
|
_ZN7ncrypto15EVPMDCtxPointer15digestFinalIntoEPNS_6BufferIvEE
|
|
78666
78694
|
_ZN7ncrypto15EVPMDCtxPointer15getExpectedSizeEv
|
|
78695
|
+
_ZN7ncrypto15EVPMDCtxPointer19signInitWithContextERKNS_13EVPKeyPointerERKNS_6DigestERKNS_6BufferIKhEE
|
|
78696
|
+
_ZN7ncrypto15EVPMDCtxPointer21verifyInitWithContextERKNS_13EVPKeyPointerERKNS_6DigestERKNS_6BufferIKhEE
|
|
78667
78697
|
_ZN7ncrypto15EVPMDCtxPointer3NewEv
|
|
78668
78698
|
_ZN7ncrypto15EVPMDCtxPointer5resetEP13evp_md_ctx_st
|
|
78669
78699
|
_ZN7ncrypto15EVPMDCtxPointer7releaseEv
|
|
@@ -78740,6 +78770,19 @@ _ZN7ncrypto16EVPKeyCtxPointerC2Ev
|
|
|
78740
78770
|
_ZN7ncrypto16EVPKeyCtxPointerD1Ev
|
|
78741
78771
|
_ZN7ncrypto16EVPKeyCtxPointerD2Ev
|
|
78742
78772
|
_ZN7ncrypto16EVPKeyCtxPointeraSEOS0_
|
|
78773
|
+
_ZN7ncrypto16EVPMacCtxPointer3NewEP10evp_mac_st
|
|
78774
|
+
_ZN7ncrypto16EVPMacCtxPointer4initERKNS_6BufferIKvEEPK13ossl_param_st
|
|
78775
|
+
_ZN7ncrypto16EVPMacCtxPointer5finalEm
|
|
78776
|
+
_ZN7ncrypto16EVPMacCtxPointer5resetEP14evp_mac_ctx_st
|
|
78777
|
+
_ZN7ncrypto16EVPMacCtxPointer6updateERKNS_6BufferIKvEE
|
|
78778
|
+
_ZN7ncrypto16EVPMacCtxPointer7releaseEv
|
|
78779
|
+
_ZN7ncrypto16EVPMacCtxPointerC1EOS0_
|
|
78780
|
+
_ZN7ncrypto16EVPMacCtxPointerC1EP14evp_mac_ctx_st
|
|
78781
|
+
_ZN7ncrypto16EVPMacCtxPointerC2EOS0_
|
|
78782
|
+
_ZN7ncrypto16EVPMacCtxPointerC2EP14evp_mac_ctx_st
|
|
78783
|
+
_ZN7ncrypto16EVPMacCtxPointerD1Ev
|
|
78784
|
+
_ZN7ncrypto16EVPMacCtxPointerD2Ev
|
|
78785
|
+
_ZN7ncrypto16EVPMacCtxPointeraSEOS0_
|
|
78743
78786
|
_ZN7ncrypto16PasswordCallbackEPciiPv
|
|
78744
78787
|
_ZN7ncrypto17checkScryptParamsEmmmm
|
|
78745
78788
|
_ZN7ncrypto18ClearErrorOnReturn9peekErrorEv
|
|
@@ -83935,8 +83978,6 @@ _ZNK4node12shadow_realm11ShadowRealm12message_portEv
|
|
|
83935
83978
|
_ZNK4node12shadow_realm11ShadowRealm14MemoryInfoNameEv
|
|
83936
83979
|
_ZNK4node12shadow_realm11ShadowRealm14process_objectEv
|
|
83937
83980
|
_ZNK4node12shadow_realm11ShadowRealm19async_hooks_bindingEv
|
|
83938
|
-
_ZNK4node12shadow_realm11ShadowRealm20promise_hook_handlerEv
|
|
83939
|
-
_ZNK4node12shadow_realm11ShadowRealm21domexception_functionEv
|
|
83940
83981
|
_ZNK4node12shadow_realm11ShadowRealm22builtin_module_requireEv
|
|
83941
83982
|
_ZNK4node12shadow_realm11ShadowRealm22tick_callback_functionEv
|
|
83942
83983
|
_ZNK4node12shadow_realm11ShadowRealm23buffer_prototype_objectEv
|
|
@@ -83945,7 +83986,6 @@ _ZNK4node12shadow_realm11ShadowRealm23promise_reject_callbackEv
|
|
|
83945
83986
|
_ZNK4node12shadow_realm11ShadowRealm23source_map_cache_getterEv
|
|
83946
83987
|
_ZNK4node12shadow_realm11ShadowRealm24timers_callback_functionEv
|
|
83947
83988
|
_ZNK4node12shadow_realm11ShadowRealm24udp_constructor_functionEv
|
|
83948
|
-
_ZNK4node12shadow_realm11ShadowRealm24url_constructor_functionEv
|
|
83949
83989
|
_ZNK4node12shadow_realm11ShadowRealm25async_hooks_init_functionEv
|
|
83950
83990
|
_ZNK4node12shadow_realm11ShadowRealm25process_emit_warning_syncEv
|
|
83951
83991
|
_ZNK4node12shadow_realm11ShadowRealm25snapshot_deserialize_mainEv
|
|
@@ -83958,7 +83998,6 @@ _ZNK4node12shadow_realm11ShadowRealm27snapshot_serialize_callbackEv
|
|
|
83958
83998
|
_ZNK4node12shadow_realm11ShadowRealm28async_hooks_destroy_functionEv
|
|
83959
83999
|
_ZNK4node12shadow_realm11ShadowRealm28inspector_enable_async_hooksEv
|
|
83960
84000
|
_ZNK4node12shadow_realm11ShadowRealm28prepare_stack_trace_callbackEv
|
|
83961
|
-
_ZNK4node12shadow_realm11ShadowRealm29crypto_key_object_constructorEv
|
|
83962
84001
|
_ZNK4node12shadow_realm11ShadowRealm29http2session_on_ping_functionEv
|
|
83963
84002
|
_ZNK4node12shadow_realm11ShadowRealm29inspector_disable_async_hooksEv
|
|
83964
84003
|
_ZNK4node12shadow_realm11ShadowRealm29snapshot_deserialize_callbackEv
|
|
@@ -84037,8 +84076,6 @@ _ZNK4node14PrincipalRealm12message_portEv
|
|
|
84037
84076
|
_ZNK4node14PrincipalRealm14MemoryInfoNameEv
|
|
84038
84077
|
_ZNK4node14PrincipalRealm14process_objectEv
|
|
84039
84078
|
_ZNK4node14PrincipalRealm19async_hooks_bindingEv
|
|
84040
|
-
_ZNK4node14PrincipalRealm20promise_hook_handlerEv
|
|
84041
|
-
_ZNK4node14PrincipalRealm21domexception_functionEv
|
|
84042
84079
|
_ZNK4node14PrincipalRealm22builtin_module_requireEv
|
|
84043
84080
|
_ZNK4node14PrincipalRealm22tick_callback_functionEv
|
|
84044
84081
|
_ZNK4node14PrincipalRealm23buffer_prototype_objectEv
|
|
@@ -84047,7 +84084,6 @@ _ZNK4node14PrincipalRealm23promise_reject_callbackEv
|
|
|
84047
84084
|
_ZNK4node14PrincipalRealm23source_map_cache_getterEv
|
|
84048
84085
|
_ZNK4node14PrincipalRealm24timers_callback_functionEv
|
|
84049
84086
|
_ZNK4node14PrincipalRealm24udp_constructor_functionEv
|
|
84050
|
-
_ZNK4node14PrincipalRealm24url_constructor_functionEv
|
|
84051
84087
|
_ZNK4node14PrincipalRealm25async_hooks_init_functionEv
|
|
84052
84088
|
_ZNK4node14PrincipalRealm25process_emit_warning_syncEv
|
|
84053
84089
|
_ZNK4node14PrincipalRealm25snapshot_deserialize_mainEv
|
|
@@ -84060,7 +84096,6 @@ _ZNK4node14PrincipalRealm27snapshot_serialize_callbackEv
|
|
|
84060
84096
|
_ZNK4node14PrincipalRealm28async_hooks_destroy_functionEv
|
|
84061
84097
|
_ZNK4node14PrincipalRealm28inspector_enable_async_hooksEv
|
|
84062
84098
|
_ZNK4node14PrincipalRealm28prepare_stack_trace_callbackEv
|
|
84063
|
-
_ZNK4node14PrincipalRealm29crypto_key_object_constructorEv
|
|
84064
84099
|
_ZNK4node14PrincipalRealm29http2session_on_ping_functionEv
|
|
84065
84100
|
_ZNK4node14PrincipalRealm29inspector_disable_async_hooksEv
|
|
84066
84101
|
_ZNK4node14PrincipalRealm29snapshot_deserialize_callbackEv
|
|
@@ -84336,6 +84371,9 @@ _ZNK4node6crypto10HashConfig8SelfSizeEv
|
|
|
84336
84371
|
_ZNK4node6crypto10HmacConfig10MemoryInfoEPNS_13MemoryTrackerE
|
|
84337
84372
|
_ZNK4node6crypto10HmacConfig14MemoryInfoNameEv
|
|
84338
84373
|
_ZNK4node6crypto10HmacConfig8SelfSizeEv
|
|
84374
|
+
_ZNK4node6crypto10KmacConfig10MemoryInfoEPNS_13MemoryTrackerE
|
|
84375
|
+
_ZNK4node6crypto10KmacConfig14MemoryInfoNameEv
|
|
84376
|
+
_ZNK4node6crypto10KmacConfig8SelfSizeEv
|
|
84339
84377
|
_ZNK4node6crypto11ManagedX50910MemoryInfoEPNS_13MemoryTrackerE
|
|
84340
84378
|
_ZNK4node6crypto11ManagedX50914MemoryInfoNameEv
|
|
84341
84379
|
_ZNK4node6crypto11ManagedX5098SelfSizeEv
|
|
@@ -84363,6 +84401,8 @@ _ZNK4node6crypto13DeriveBitsJobINS0_10HashTraitsEE10MemoryInfoEPNS_13MemoryTrack
|
|
|
84363
84401
|
_ZNK4node6crypto13DeriveBitsJobINS0_10HashTraitsEE8SelfSizeEv
|
|
84364
84402
|
_ZNK4node6crypto13DeriveBitsJobINS0_10HmacTraitsEE10MemoryInfoEPNS_13MemoryTrackerE
|
|
84365
84403
|
_ZNK4node6crypto13DeriveBitsJobINS0_10HmacTraitsEE8SelfSizeEv
|
|
84404
|
+
_ZNK4node6crypto13DeriveBitsJobINS0_10KmacTraitsEE10MemoryInfoEPNS_13MemoryTrackerE
|
|
84405
|
+
_ZNK4node6crypto13DeriveBitsJobINS0_10KmacTraitsEE8SelfSizeEv
|
|
84366
84406
|
_ZNK4node6crypto13DeriveBitsJobINS0_10SignTraitsEE10MemoryInfoEPNS_13MemoryTrackerE
|
|
84367
84407
|
_ZNK4node6crypto13DeriveBitsJobINS0_10SignTraitsEE8SelfSizeEv
|
|
84368
84408
|
_ZNK4node6crypto13DeriveBitsJobINS0_12Argon2TraitsEE10MemoryInfoEPNS_13MemoryTrackerE
|
|
@@ -84533,6 +84573,9 @@ _ZNK4node6crypto9CryptoJobINS0_10HashTraitsEE33IsNotIndicativeOfMemoryLeakAtExit
|
|
|
84533
84573
|
_ZNK4node6crypto9CryptoJobINS0_10HmacTraitsEE10MemoryInfoEPNS_13MemoryTrackerE
|
|
84534
84574
|
_ZNK4node6crypto9CryptoJobINS0_10HmacTraitsEE14MemoryInfoNameEv
|
|
84535
84575
|
_ZNK4node6crypto9CryptoJobINS0_10HmacTraitsEE33IsNotIndicativeOfMemoryLeakAtExitEv
|
|
84576
|
+
_ZNK4node6crypto9CryptoJobINS0_10KmacTraitsEE10MemoryInfoEPNS_13MemoryTrackerE
|
|
84577
|
+
_ZNK4node6crypto9CryptoJobINS0_10KmacTraitsEE14MemoryInfoNameEv
|
|
84578
|
+
_ZNK4node6crypto9CryptoJobINS0_10KmacTraitsEE33IsNotIndicativeOfMemoryLeakAtExitEv
|
|
84536
84579
|
_ZNK4node6crypto9CryptoJobINS0_10SignTraitsEE10MemoryInfoEPNS_13MemoryTrackerE
|
|
84537
84580
|
_ZNK4node6crypto9CryptoJobINS0_10SignTraitsEE14MemoryInfoNameEv
|
|
84538
84581
|
_ZNK4node6crypto9CryptoJobINS0_10SignTraitsEE33IsNotIndicativeOfMemoryLeakAtExitEv
|
|
@@ -84619,6 +84662,7 @@ _ZNK4node6loader10ModuleWrap8SelfSizeEv
|
|
|
84619
84662
|
_ZNK4node6loader14ModuleCacheKey10MemoryInfoEPNS_13MemoryTrackerE
|
|
84620
84663
|
_ZNK4node6loader14ModuleCacheKey14MemoryInfoNameEv
|
|
84621
84664
|
_ZNK4node6loader14ModuleCacheKey8SelfSizeEv
|
|
84665
|
+
_ZNK4node6loader14ModuleCacheKey8ToStringB5cxx11Ev
|
|
84622
84666
|
_ZNK4node6serdes17SerializerContext10MemoryInfoEPNS_13MemoryTrackerE
|
|
84623
84667
|
_ZNK4node6serdes17SerializerContext14MemoryInfoNameEv
|
|
84624
84668
|
_ZNK4node6serdes17SerializerContext8SelfSizeEv
|
|
@@ -84662,6 +84706,9 @@ _ZNK4node6worker15MessagePortData8SelfSizeEv
|
|
|
84662
84706
|
_ZNK4node6worker19WorkerCpuUsageTaker10MemoryInfoEPNS_13MemoryTrackerE
|
|
84663
84707
|
_ZNK4node6worker19WorkerCpuUsageTaker14MemoryInfoNameEv
|
|
84664
84708
|
_ZNK4node6worker19WorkerCpuUsageTaker8SelfSizeEv
|
|
84709
|
+
_ZNK4node6worker21WorkerCpuProfileTaker10MemoryInfoEPNS_13MemoryTrackerE
|
|
84710
|
+
_ZNK4node6worker21WorkerCpuProfileTaker14MemoryInfoNameEv
|
|
84711
|
+
_ZNK4node6worker21WorkerCpuProfileTaker8SelfSizeEv
|
|
84665
84712
|
_ZNK4node6worker23WorkerHeapSnapshotTaker10MemoryInfoEPNS_13MemoryTrackerE
|
|
84666
84713
|
_ZNK4node6worker23WorkerHeapSnapshotTaker14MemoryInfoNameEv
|
|
84667
84714
|
_ZNK4node6worker23WorkerHeapSnapshotTaker8SelfSizeEv
|
|
@@ -88388,6 +88435,7 @@ _ZNSt10_HashtableIiSt4pairIKiN2v88internal6HandleINS3_9ScopeInfoEEEESaIS7_ENSt8_
|
|
|
88388
88435
|
_ZNSt10_HashtableIiSt4pairIKiN2v88internal8compiler10turboshaft16SnapshotTableKeyINS5_7OpIndexENS5_12VariableDataEEEENS3_13ZoneAllocatorISA_EENSt8__detail10_Select1stESt8equal_toIiENS2_4base4hashIiEENSD_18_Mod_range_hashingENSD_20_Default_ranged_hashENSD_20_Prime_rehash_policyENSD_17_Hashtable_traitsILb1ELb0ELb1EEEE21_M_insert_unique_nodeEmmPNSD_10_Hash_nodeISA_Lb1EEEm
|
|
88389
88436
|
_ZNSt10_HashtableIiSt4pairIKiN4node17BaseObjectPtrImplINS2_5http211Http2StreamELb0EEEESaIS7_ENSt8__detail10_Select1stESt8equal_toIiESt4hashIiENS9_18_Mod_range_hashingENS9_20_Default_ranged_hashENS9_20_Prime_rehash_policyENS9_17_Hashtable_traitsILb0ELb0ELb1EEEE21_M_insert_unique_nodeEmmPNS9_10_Hash_nodeIS7_Lb0EEEm
|
|
88390
88437
|
_ZNSt10_HashtableIiSt4pairIKiPN4node6loader10ModuleWrapEESaIS6_ENSt8__detail10_Select1stESt8equal_toIiESt4hashIiENS8_18_Mod_range_hashingENS8_20_Default_ranged_hashENS8_20_Prime_rehash_policyENS8_17_Hashtable_traitsILb0ELb0ELb0EEEE11equal_rangeERS1_
|
|
88438
|
+
_ZNSt10_HashtableIiSt4pairIKiPN4node6loader10ModuleWrapEESaIS6_ENSt8__detail10_Select1stESt8equal_toIiESt4hashIiENS8_18_Mod_range_hashingENS8_20_Default_ranged_hashENS8_20_Prime_rehash_policyENS8_17_Hashtable_traitsILb0ELb0ELb0EEEE20_M_insert_multi_nodeEPNS8_10_Hash_nodeIS6_Lb0EEEmSM_
|
|
88391
88439
|
_ZNSt10_HashtableIiSt4pairIKiSt10shared_ptrIN4node9inspector16MainThreadHandleEEESaIS7_ENSt8__detail10_Select1stESt8equal_toIiESt4hashIiENS9_18_Mod_range_hashingENS9_20_Default_ranged_hashENS9_20_Prime_rehash_policyENS9_17_Hashtable_traitsILb0ELb0ELb1EEEE21_M_insert_unique_nodeEmmPNS9_10_Hash_nodeIS7_Lb0EEEm
|
|
88392
88440
|
_ZNSt10_HashtableIiSt4pairIKiSt10unique_ptrIN12v8_inspector14InjectedScriptESt14default_deleteIS4_EEESaIS8_ENSt8__detail10_Select1stESt8equal_toIiESt4hashIiENSA_18_Mod_range_hashingENSA_20_Default_ranged_hashENSA_20_Prime_rehash_policyENSA_17_Hashtable_traitsILb0ELb0ELb1EEEE21_M_insert_unique_nodeEmmPNSA_10_Hash_nodeIS8_Lb0EEEm
|
|
88393
88441
|
_ZNSt10_HashtableIiSt4pairIKiSt10unique_ptrIN12v8_inspector14InjectedScriptESt14default_deleteIS4_EEESaIS8_ENSt8__detail10_Select1stESt8equal_toIiESt4hashIiENSA_18_Mod_range_hashingENSA_20_Default_ranged_hashENSA_20_Prime_rehash_policyENSA_17_Hashtable_traitsILb0ELb0ELb1EEEE4findERS1_
|
|
@@ -89775,6 +89823,7 @@ _ZNSt8__detail9_Map_baseIN2v88internal7BuiltinESt4pairIKS3_jESaIS6_ENS_10_Select
|
|
|
89775
89823
|
_ZNSt8__detail9_Map_baseIN2v88internal8compiler10turboshaft7OpIndexESt4pairIKS5_NS2_4wasm9ValueTypeEENS2_13ZoneAllocatorISA_EENS_10_Select1stESt8equal_toIS5_ENS1_4base4hashIS5_EENS_18_Mod_range_hashingENS_20_Default_ranged_hashENS_20_Prime_rehash_policyENS_17_Hashtable_traitsILb1ELb0ELb1EEELb1EEixEOS5_
|
|
89776
89824
|
_ZNSt8__detail9_Map_baseIN2v88internal9SignatureINS2_4wasm9ValueTypeEEESt4pairIKS6_jENS2_13ZoneAllocatorIS9_EENS_10_Select1stESt8equal_toIS6_ENS1_4base4hashIS6_EENS_18_Mod_range_hashingENS_20_Default_ranged_hashENS_20_Prime_rehash_policyENS_17_Hashtable_traitsILb1ELb0ELb1EEELb1EEixERS8_
|
|
89777
89825
|
_ZNSt8__detail9_Map_baseIN4node13SocketAddressESt4pairIKS2_St14_List_iteratorISt10unique_ptrINS1_22SocketAddressBlockList4RuleESt14default_deleteIS8_EEEESaISD_ENS_10_Select1stESt8equal_toIS2_ENS2_4HashENS_18_Mod_range_hashingENS_20_Default_ranged_hashENS_20_Prime_rehash_policyENS_17_Hashtable_traitsILb1ELb0ELb1EEELb1EEixERS4_
|
|
89826
|
+
_ZNSt8__detail9_Map_baseIN4node6loader14ModuleCacheKeyESt4pairIKS3_jESaIS6_ENS_10_Select1stESt8equal_toIS3_ENS3_4HashENS_18_Mod_range_hashingENS_20_Default_ranged_hashENS_20_Prime_rehash_policyENS_17_Hashtable_traitsILb1ELb0ELb1EEELb1EEixERS5_
|
|
89778
89827
|
_ZNSt8__detail9_Map_baseINSt7__cxx1112basic_stringIDsSt11char_traitsIDsESaIDsEEESt4pairIKS6_PN4node6worker5locks11LockRequestEESaISE_ENS_10_Select1stESt8equal_toIS6_ESt4hashIS6_ENS_18_Mod_range_hashingENS_20_Default_ranged_hashENS_20_Prime_rehash_policyENS_17_Hashtable_traitsILb1ELb0ELb1EEELb1EEixERS8_
|
|
89779
89828
|
_ZNSt8__detail9_Map_baseINSt7__cxx1112basic_stringIDsSt11char_traitsIDsESaIDsEEESt4pairIKS6_St5dequeISt10shared_ptrIN4node6worker5locks4LockEESaISF_EEESaISI_ENS_10_Select1stESt8equal_toIS6_ESt4hashIS6_ENS_18_Mod_range_hashingENS_20_Default_ranged_hashENS_20_Prime_rehash_policyENS_17_Hashtable_traitsILb1ELb0ELb1EEELb1EEixERS8_
|
|
89780
89829
|
_ZNSt8__detail9_Map_baseINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS6_MN4node9inspector12NetworkAgentEFvN2v85LocalINSC_7ContextEEENSD_INSC_6ObjectEEEEESaISK_ENS_10_Select1stESt8equal_toIS6_ESt4hashIS6_ENS_18_Mod_range_hashingENS_20_Default_ranged_hashENS_20_Prime_rehash_policyENS_17_Hashtable_traitsILb1ELb0ELb1EEELb1EEixEOS6_
|
|
@@ -93792,6 +93841,7 @@ _ZTVN4node15SimpleWriteWrapINS_7ReqWrapI10uv_write_sEEEE
|
|
|
93792
93841
|
_ZTVN4node15SimpleWriteWrapINS_9AsyncWrapEEE
|
|
93793
93842
|
_ZTVN4node15TimerWrapHandleE
|
|
93794
93843
|
_ZTVN4node16CppgcWrapperListE
|
|
93844
|
+
_ZTVN4node16JSONOutputStreamE
|
|
93795
93845
|
_ZTVN4node16encoding_binding11BindingDataE
|
|
93796
93846
|
_ZTVN4node16internal_only_v817PrototypeChainHasE
|
|
93797
93847
|
_ZTVN4node17AliasedBufferBaseIdN2v812Float64ArrayEEE
|
|
@@ -93864,6 +93914,7 @@ _ZTVN4node6crypto10CipherBaseE
|
|
|
93864
93914
|
_ZTVN4node6crypto10HKDFConfigE
|
|
93865
93915
|
_ZTVN4node6crypto10HashConfigE
|
|
93866
93916
|
_ZTVN4node6crypto10HmacConfigE
|
|
93917
|
+
_ZTVN4node6crypto10KmacConfigE
|
|
93867
93918
|
_ZTVN4node6crypto11ManagedX509E
|
|
93868
93919
|
_ZTVN4node6crypto12Argon2ConfigE
|
|
93869
93920
|
_ZTVN4node6crypto12DHBitsConfigE
|
|
@@ -93875,6 +93926,7 @@ _ZTVN4node6crypto12ScryptConfigE
|
|
|
93875
93926
|
_ZTVN4node6crypto13DeriveBitsJobINS0_10HKDFTraitsEEE
|
|
93876
93927
|
_ZTVN4node6crypto13DeriveBitsJobINS0_10HashTraitsEEE
|
|
93877
93928
|
_ZTVN4node6crypto13DeriveBitsJobINS0_10HmacTraitsEEE
|
|
93929
|
+
_ZTVN4node6crypto13DeriveBitsJobINS0_10KmacTraitsEEE
|
|
93878
93930
|
_ZTVN4node6crypto13DeriveBitsJobINS0_10SignTraitsEEE
|
|
93879
93931
|
_ZTVN4node6crypto13DeriveBitsJobINS0_12Argon2TraitsEEE
|
|
93880
93932
|
_ZTVN4node6crypto13DeriveBitsJobINS0_12DHBitsTraitsEEE
|
|
@@ -93932,6 +93984,7 @@ _ZTVN4node6crypto9CipherJobINS0_28ChaCha20Poly1305CipherTraitsEEE
|
|
|
93932
93984
|
_ZTVN4node6crypto9CryptoJobINS0_10HKDFTraitsEEE
|
|
93933
93985
|
_ZTVN4node6crypto9CryptoJobINS0_10HashTraitsEEE
|
|
93934
93986
|
_ZTVN4node6crypto9CryptoJobINS0_10HmacTraitsEEE
|
|
93987
|
+
_ZTVN4node6crypto9CryptoJobINS0_10KmacTraitsEEE
|
|
93935
93988
|
_ZTVN4node6crypto9CryptoJobINS0_10SignTraitsEEE
|
|
93936
93989
|
_ZTVN4node6crypto9CryptoJobINS0_12Argon2TraitsEEE
|
|
93937
93990
|
_ZTVN4node6crypto9CryptoJobINS0_12DHBitsTraitsEEE
|
|
@@ -93978,6 +94031,7 @@ _ZTVN4node6worker14JSTransferable4DataE
|
|
|
93978
94031
|
_ZTVN4node6worker14JSTransferableE
|
|
93979
94032
|
_ZTVN4node6worker15MessagePortDataE
|
|
93980
94033
|
_ZTVN4node6worker19WorkerCpuUsageTakerE
|
|
94034
|
+
_ZTVN4node6worker21WorkerCpuProfileTakerE
|
|
93981
94035
|
_ZTVN4node6worker23WorkerHeapSnapshotTakerE
|
|
93982
94036
|
_ZTVN4node6worker25WorkerHeapStatisticsTakerE
|
|
93983
94037
|
_ZTVN4node6worker5locks10LockHolderE
|
|
@@ -94999,6 +95053,9 @@ _ZThn80_N4node6crypto13DeriveBitsJobINS0_10HashTraitsEED1Ev
|
|
|
94999
95053
|
_ZThn80_N4node6crypto13DeriveBitsJobINS0_10HmacTraitsEE16DoThreadPoolWorkEv
|
|
95000
95054
|
_ZThn80_N4node6crypto13DeriveBitsJobINS0_10HmacTraitsEED0Ev
|
|
95001
95055
|
_ZThn80_N4node6crypto13DeriveBitsJobINS0_10HmacTraitsEED1Ev
|
|
95056
|
+
_ZThn80_N4node6crypto13DeriveBitsJobINS0_10KmacTraitsEE16DoThreadPoolWorkEv
|
|
95057
|
+
_ZThn80_N4node6crypto13DeriveBitsJobINS0_10KmacTraitsEED0Ev
|
|
95058
|
+
_ZThn80_N4node6crypto13DeriveBitsJobINS0_10KmacTraitsEED1Ev
|
|
95002
95059
|
_ZThn80_N4node6crypto13DeriveBitsJobINS0_10SignTraitsEE16DoThreadPoolWorkEv
|
|
95003
95060
|
_ZThn80_N4node6crypto13DeriveBitsJobINS0_10SignTraitsEED0Ev
|
|
95004
95061
|
_ZThn80_N4node6crypto13DeriveBitsJobINS0_10SignTraitsEED1Ev
|
|
@@ -95057,6 +95114,7 @@ _ZThn80_N4node6crypto9CipherJobINS0_28ChaCha20Poly1305CipherTraitsEED1Ev
|
|
|
95057
95114
|
_ZThn80_N4node6crypto9CryptoJobINS0_10HKDFTraitsEE19AfterThreadPoolWorkEi
|
|
95058
95115
|
_ZThn80_N4node6crypto9CryptoJobINS0_10HashTraitsEE19AfterThreadPoolWorkEi
|
|
95059
95116
|
_ZThn80_N4node6crypto9CryptoJobINS0_10HmacTraitsEE19AfterThreadPoolWorkEi
|
|
95117
|
+
_ZThn80_N4node6crypto9CryptoJobINS0_10KmacTraitsEE19AfterThreadPoolWorkEi
|
|
95060
95118
|
_ZThn80_N4node6crypto9CryptoJobINS0_10SignTraitsEE19AfterThreadPoolWorkEi
|
|
95061
95119
|
_ZThn80_N4node6crypto9CryptoJobINS0_12Argon2TraitsEE19AfterThreadPoolWorkEi
|
|
95062
95120
|
_ZThn80_N4node6crypto9CryptoJobINS0_12DHBitsTraitsEE19AfterThreadPoolWorkEi
|
|
@@ -97796,6 +97854,8 @@ _ZZN4node11SPrintFImplINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEJEEES
|
|
|
97796
97854
|
_ZZN4node11SPrintFImplINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEJEEES6_PKcOT_DpOT0_E20error_and_abort_args_0
|
|
97797
97855
|
_ZZN4node11SPrintFImplINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEJPcEEES6_PKcOT_DpOT0_E20error_and_abort_args
|
|
97798
97856
|
_ZZN4node11SPrintFImplINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEJPcEEES6_PKcOT_DpOT0_E20error_and_abort_args_0
|
|
97857
|
+
_ZZN4node11SPrintFImplINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEJRiRjEEES6_PKcOT_DpOT0_E20error_and_abort_args
|
|
97858
|
+
_ZZN4node11SPrintFImplINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEJRiRjEEES6_PKcOT_DpOT0_E20error_and_abort_args_0
|
|
97799
97859
|
_ZZN4node11SPrintFImplINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEJiEEES6_PKcOT_DpOT0_E20error_and_abort_args
|
|
97800
97860
|
_ZZN4node11SPrintFImplINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEJiEEES6_PKcOT_DpOT0_E20error_and_abort_args_0
|
|
97801
97861
|
_ZZN4node11SPrintFImplIPKcJEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_OT_DpOT0_E20error_and_abort_args
|
|
@@ -98302,6 +98362,7 @@ _ZZN4node17BaseObjectPtrImplINS_6timers11BindingDataELb1EEC4EPS2_E20error_and_ab
|
|
|
98302
98362
|
_ZZN4node17BaseObjectPtrImplINS_6worker11MessagePortELb0EEC4EPS2_E20error_and_abort_args
|
|
98303
98363
|
_ZZN4node17BaseObjectPtrImplINS_6worker14JSTransferableELb0EEC4EPS2_E20error_and_abort_args
|
|
98304
98364
|
_ZZN4node17BaseObjectPtrImplINS_6worker19WorkerCpuUsageTakerELb0EEC4EPS2_E20error_and_abort_args
|
|
98365
|
+
_ZZN4node17BaseObjectPtrImplINS_6worker21WorkerCpuProfileTakerELb0EEC4EPS2_E20error_and_abort_args
|
|
98305
98366
|
_ZZN4node17BaseObjectPtrImplINS_6worker23WorkerHeapSnapshotTakerELb0EEC4EPS2_E20error_and_abort_args
|
|
98306
98367
|
_ZZN4node17BaseObjectPtrImplINS_6worker25WorkerHeapStatisticsTakerELb0EEC4EPS2_E20error_and_abort_args
|
|
98307
98368
|
_ZZN4node17BaseObjectPtrImplINS_6worker5locks10LockHolderELb0EEC4EPS3_E20error_and_abort_args
|
|
@@ -98354,7 +98415,7 @@ _ZZN4node23WorkerThreadsTaskRunner20DelayedTaskScheduler12ScheduleTask3RunEvE20e
|
|
|
98354
98415
|
_ZZN4node23WorkerThreadsTaskRunner20DelayedTaskScheduler13TakeTimerTaskEP10uv_timer_sENUlP11uv_handle_sE_4_FUNES5_
|
|
98355
98416
|
_ZZN4node23WorkerThreadsTaskRunner20DelayedTaskScheduler3RunEvE20error_and_abort_args
|
|
98356
98417
|
_ZZN4node23WorkerThreadsTaskRunner20DelayedTaskScheduler3RunEvE20error_and_abort_args_0
|
|
98357
|
-
|
|
98418
|
+
_ZZN4node23WorkerThreadsTaskRunner20DelayedTaskScheduler3RunEvE28trace_event_unique_atomic141
|
|
98358
98419
|
_ZZN4node23WorkerThreadsTaskRunner20DelayedTaskScheduler5StartEvE20error_and_abort_args
|
|
98359
98420
|
_ZZN4node23WorkerThreadsTaskRunner20DelayedTaskScheduler5StartEvENUlPvE_4_FUNES2_
|
|
98360
98421
|
_ZZN4node23WorkerThreadsTaskRunner20DelayedTaskScheduler8StopTask3RunEvENUlP11uv_handle_sE_4_FUNES4_
|
|
@@ -98524,6 +98585,10 @@ _ZZN4node6crypto13DeriveBitsJobINS0_10HmacTraitsEE8ToResultEPN2v85LocalINS4_5Val
|
|
|
98524
98585
|
_ZZN4node6crypto13DeriveBitsJobINS0_10HmacTraitsEE8ToResultEPN2v85LocalINS4_5ValueEEES8_E20error_and_abort_args_0
|
|
98525
98586
|
_ZZN4node6crypto13DeriveBitsJobINS0_10HmacTraitsEE8ToResultEPN2v85LocalINS4_5ValueEEES8_E20error_and_abort_args_1
|
|
98526
98587
|
_ZZN4node6crypto13DeriveBitsJobINS0_10HmacTraitsEE8ToResultEPN2v85LocalINS4_5ValueEEES8_E20error_and_abort_args_2
|
|
98588
|
+
_ZZN4node6crypto13DeriveBitsJobINS0_10KmacTraitsEE8ToResultEPN2v85LocalINS4_5ValueEEES8_E20error_and_abort_args
|
|
98589
|
+
_ZZN4node6crypto13DeriveBitsJobINS0_10KmacTraitsEE8ToResultEPN2v85LocalINS4_5ValueEEES8_E20error_and_abort_args_0
|
|
98590
|
+
_ZZN4node6crypto13DeriveBitsJobINS0_10KmacTraitsEE8ToResultEPN2v85LocalINS4_5ValueEEES8_E20error_and_abort_args_1
|
|
98591
|
+
_ZZN4node6crypto13DeriveBitsJobINS0_10KmacTraitsEE8ToResultEPN2v85LocalINS4_5ValueEEES8_E20error_and_abort_args_2
|
|
98527
98592
|
_ZZN4node6crypto13DeriveBitsJobINS0_10SignTraitsEE8ToResultEPN2v85LocalINS4_5ValueEEES8_E20error_and_abort_args
|
|
98528
98593
|
_ZZN4node6crypto13DeriveBitsJobINS0_10SignTraitsEE8ToResultEPN2v85LocalINS4_5ValueEEES8_E20error_and_abort_args_0
|
|
98529
98594
|
_ZZN4node6crypto13DeriveBitsJobINS0_10SignTraitsEE8ToResultEPN2v85LocalINS4_5ValueEEES8_E20error_and_abort_args_1
|
|
@@ -98615,6 +98680,14 @@ _ZZN4node6crypto9CryptoJobINS0_10HmacTraitsEE19AfterThreadPoolWorkEiE20error_and
|
|
|
98615
98680
|
_ZZN4node6crypto9CryptoJobINS0_10HmacTraitsEE19AfterThreadPoolWorkEiE20error_and_abort_args_4
|
|
98616
98681
|
_ZZN4node6crypto9CryptoJobINS0_10HmacTraitsEE3RunERKN2v820FunctionCallbackInfoINS4_5ValueEEEE20error_and_abort_args
|
|
98617
98682
|
_ZZN4node6crypto9CryptoJobINS0_10HmacTraitsEE3RunERKN2v820FunctionCallbackInfoINS4_5ValueEEEE20error_and_abort_args_0
|
|
98683
|
+
_ZZN4node6crypto9CryptoJobINS0_10KmacTraitsEE19AfterThreadPoolWorkEiE20error_and_abort_args
|
|
98684
|
+
_ZZN4node6crypto9CryptoJobINS0_10KmacTraitsEE19AfterThreadPoolWorkEiE20error_and_abort_args_0
|
|
98685
|
+
_ZZN4node6crypto9CryptoJobINS0_10KmacTraitsEE19AfterThreadPoolWorkEiE20error_and_abort_args_1
|
|
98686
|
+
_ZZN4node6crypto9CryptoJobINS0_10KmacTraitsEE19AfterThreadPoolWorkEiE20error_and_abort_args_2
|
|
98687
|
+
_ZZN4node6crypto9CryptoJobINS0_10KmacTraitsEE19AfterThreadPoolWorkEiE20error_and_abort_args_3
|
|
98688
|
+
_ZZN4node6crypto9CryptoJobINS0_10KmacTraitsEE19AfterThreadPoolWorkEiE20error_and_abort_args_4
|
|
98689
|
+
_ZZN4node6crypto9CryptoJobINS0_10KmacTraitsEE3RunERKN2v820FunctionCallbackInfoINS4_5ValueEEEE20error_and_abort_args
|
|
98690
|
+
_ZZN4node6crypto9CryptoJobINS0_10KmacTraitsEE3RunERKN2v820FunctionCallbackInfoINS4_5ValueEEEE20error_and_abort_args_0
|
|
98618
98691
|
_ZZN4node6crypto9CryptoJobINS0_10SignTraitsEE19AfterThreadPoolWorkEiE20error_and_abort_args
|
|
98619
98692
|
_ZZN4node6crypto9CryptoJobINS0_10SignTraitsEE19AfterThreadPoolWorkEiE20error_and_abort_args_0
|
|
98620
98693
|
_ZZN4node6crypto9CryptoJobINS0_10SignTraitsEE19AfterThreadPoolWorkEiE20error_and_abort_args_1
|