node-aix-ppc64 22.3.0 → 22.4.1
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 +152 -0
- package/LICENSE +1 -1
- package/README.md +2 -2
- package/bin/node +0 -0
- package/include/node/common.gypi +1 -1
- package/include/node/config.gypi +2 -0
- package/include/node/node.exp +352 -48
- package/include/node/node_version.h +2 -2
- package/include/node/v8-version.h +1 -1
- package/package.json +1 -1
- package/share/man/man1/node.1 +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,8 @@
|
|
|
8
8
|
</tr>
|
|
9
9
|
<tr>
|
|
10
10
|
<td>
|
|
11
|
+
<a href="#22.4.1">22.4.1</a><br/>
|
|
12
|
+
<a href="#22.4.0">22.4.0</a><br/>
|
|
11
13
|
<a href="#22.3.0">22.3.0</a><br/>
|
|
12
14
|
<a href="#22.2.0">22.2.0</a><br/>
|
|
13
15
|
<a href="#22.1.0">22.1.0</a><br/>
|
|
@@ -40,6 +42,156 @@
|
|
|
40
42
|
* [io.js](CHANGELOG_IOJS.md)
|
|
41
43
|
* [Archive](CHANGELOG_ARCHIVE.md)
|
|
42
44
|
|
|
45
|
+
<a id="22.4.1"></a>
|
|
46
|
+
|
|
47
|
+
## 2024-07-08, Version 22.4.1 (Current), @RafaelGSS
|
|
48
|
+
|
|
49
|
+
This is a security release.
|
|
50
|
+
|
|
51
|
+
### Notable Changes
|
|
52
|
+
|
|
53
|
+
* CVE-2024-36138 - Bypass incomplete fix of CVE-2024-27980 (High)
|
|
54
|
+
* CVE-2024-22020 - Bypass network import restriction via data URL (Medium)
|
|
55
|
+
* CVE-2024-22018 - fs.lstat bypasses permission model (Low)
|
|
56
|
+
* CVE-2024-36137 - fs.fchown/fchmod bypasses permission model (Low)
|
|
57
|
+
* CVE-2024-37372 - Permission model improperly processes UNC paths (Low)
|
|
58
|
+
|
|
59
|
+
### Commits
|
|
60
|
+
|
|
61
|
+
* \[[`110902ff5e`](https://github.com/nodejs/node/commit/110902ff5e)] - **lib,esm**: handle bypass network-import via data: (RafaelGSS) [nodejs-private/node-private#522](https://github.com/nodejs-private/node-private/pull/522)
|
|
62
|
+
* \[[`0a0de3d491`](https://github.com/nodejs/node/commit/0a0de3d491)] - **lib,permission**: support fs.lstat (RafaelGSS)
|
|
63
|
+
* \[[`93574335ff`](https://github.com/nodejs/node/commit/93574335ff)] - **lib,permission**: disable fchmod/fchown when pm enabled (RafaelGSS) [nodejs-private/node-private#584](https://github.com/nodejs-private/node-private/pull/584)
|
|
64
|
+
* \[[`09899e6302`](https://github.com/nodejs/node/commit/09899e6302)] - **src**: handle permissive extension on cmd check (RafaelGSS) [nodejs-private/node-private#596](https://github.com/nodejs-private/node-private/pull/596)
|
|
65
|
+
* \[[`5d9c811634`](https://github.com/nodejs/node/commit/5d9c811634)] - **src,permission**: fix UNC path resolution (RafaelGSS) [nodejs-private/node-private#581](https://github.com/nodejs-private/node-private/pull/581)
|
|
66
|
+
|
|
67
|
+
<a id="22.4.0"></a>
|
|
68
|
+
|
|
69
|
+
## 2024-07-02, Version 22.4.0 (Current), @targos
|
|
70
|
+
|
|
71
|
+
### Notable Changes
|
|
72
|
+
|
|
73
|
+
#### Experimental Web Storage API
|
|
74
|
+
|
|
75
|
+
* \[[`9e30724b53`](https://github.com/nodejs/node/commit/9e30724b53)] - **(SEMVER-MINOR)** **deps,lib,src**: add experimental web storage (Colin Ihrig) [#52435](https://github.com/nodejs/node/pull/52435)
|
|
76
|
+
|
|
77
|
+
#### API stability updates
|
|
78
|
+
|
|
79
|
+
* \[[`201266706b`](https://github.com/nodejs/node/commit/201266706b)] - **doc**: move `node --run` stability to rc (Yagiz Nizipli) [#53433](https://github.com/nodejs/node/pull/53433)
|
|
80
|
+
* \[[`16c0884d48`](https://github.com/nodejs/node/commit/16c0884d48)] - **doc**: mark WebSocket as stable (Matthew Aitken) [#53352](https://github.com/nodejs/node/pull/53352)
|
|
81
|
+
* \[[`cf375e73c1`](https://github.com/nodejs/node/commit/cf375e73c1)] - **doc**: mark --heap-prof and related flags stable (Joyee Cheung) [#53343](https://github.com/nodejs/node/pull/53343)
|
|
82
|
+
* \[[`0160745057`](https://github.com/nodejs/node/commit/0160745057)] - **doc**: mark --cpu-prof and related flags stable (Joyee Cheung) [#53343](https://github.com/nodejs/node/pull/53343)
|
|
83
|
+
|
|
84
|
+
#### Other Notable Changes
|
|
85
|
+
|
|
86
|
+
* \[[`df4762722c`](https://github.com/nodejs/node/commit/df4762722c)] - **doc**: doc-only deprecate OpenSSL engine-based APIs (Richard Lau) [#53329](https://github.com/nodejs/node/pull/53329)
|
|
87
|
+
* \[[`ad5282e196`](https://github.com/nodejs/node/commit/ad5282e196)] - **inspector**: fix disable async hooks on `Debugger.setAsyncCallStackDepth` (Joyee Cheung) [#53473](https://github.com/nodejs/node/pull/53473)
|
|
88
|
+
* \[[`e95af740fc`](https://github.com/nodejs/node/commit/e95af740fc)] - **(SEMVER-MINOR)** **lib**: add diagnostics\_channel events to module loading (RafaelGSS) [#44340](https://github.com/nodejs/node/pull/44340)
|
|
89
|
+
* \[[`50733a1abe`](https://github.com/nodejs/node/commit/50733a1abe)] - **(SEMVER-MINOR)** **util**: support `--no-` for argument with boolean type for parseArgs (Zhenwei Jin) [#53107](https://github.com/nodejs/node/pull/53107)
|
|
90
|
+
|
|
91
|
+
### Commits
|
|
92
|
+
|
|
93
|
+
* \[[`9f32002397`](https://github.com/nodejs/node/commit/9f32002397)] - **assert,util**: correct comparison when both contain same reference (Daniel Lemire) [#53431](https://github.com/nodejs/node/pull/53431)
|
|
94
|
+
* \[[`dfdc062111`](https://github.com/nodejs/node/commit/dfdc062111)] - **buffer**: make indexOf(byte) faster (Tobias Nießen) [#53455](https://github.com/nodejs/node/pull/53455)
|
|
95
|
+
* \[[`1de437527e`](https://github.com/nodejs/node/commit/1de437527e)] - **build**: configure with shared sqlite3 (Chengzhong Wu) [#53519](https://github.com/nodejs/node/pull/53519)
|
|
96
|
+
* \[[`c7d44ba1f3`](https://github.com/nodejs/node/commit/c7d44ba1f3)] - **build**: find version of Clang installed on Windows (Stefan Stojanovic) [#53228](https://github.com/nodejs/node/pull/53228)
|
|
97
|
+
* \[[`36aad8b204`](https://github.com/nodejs/node/commit/36aad8b204)] - **build**: fix spacing before NINJA\_ARGS (jakecastelli) [#53181](https://github.com/nodejs/node/pull/53181)
|
|
98
|
+
* \[[`82092cdaa3`](https://github.com/nodejs/node/commit/82092cdaa3)] - **crypto**: improve GetECGroupBits signature (Tobias Nießen) [#53364](https://github.com/nodejs/node/pull/53364)
|
|
99
|
+
* \[[`073c231607`](https://github.com/nodejs/node/commit/073c231607)] - **deps**: update c-ares to v1.31.0 (Node.js GitHub Bot) [#53554](https://github.com/nodejs/node/pull/53554)
|
|
100
|
+
* \[[`977beab729`](https://github.com/nodejs/node/commit/977beab729)] - **(SEMVER-MINOR)** **deps**: sqlite: fix Windows compilation (Colin Ihrig) [#52435](https://github.com/nodejs/node/pull/52435)
|
|
101
|
+
* \[[`e69b8d202c`](https://github.com/nodejs/node/commit/e69b8d202c)] - **deps**: update undici to 6.19.2 (Node.js GitHub Bot) [#53468](https://github.com/nodejs/node/pull/53468)
|
|
102
|
+
* \[[`c4a7e051c8`](https://github.com/nodejs/node/commit/c4a7e051c8)] - **deps**: update undici to 6.19.1 (Node.js GitHub Bot) [#53468](https://github.com/nodejs/node/pull/53468)
|
|
103
|
+
* \[[`fa34f8fcf0`](https://github.com/nodejs/node/commit/fa34f8fcf0)] - **deps**: update undici to 6.19.1 (Node.js GitHub Bot) [#53468](https://github.com/nodejs/node/pull/53468)
|
|
104
|
+
* \[[`0b40bfad43`](https://github.com/nodejs/node/commit/0b40bfad43)] - **deps**: update undici to 6.19.0 (Node.js GitHub Bot) [#53468](https://github.com/nodejs/node/pull/53468)
|
|
105
|
+
* \[[`1877f22a79`](https://github.com/nodejs/node/commit/1877f22a79)] - **deps**: update simdjson to 3.9.4 (Node.js GitHub Bot) [#53467](https://github.com/nodejs/node/pull/53467)
|
|
106
|
+
* \[[`1b84964b8d`](https://github.com/nodejs/node/commit/1b84964b8d)] - **deps**: patch V8 to 12.4.254.21 (Node.js GitHub Bot) [#53470](https://github.com/nodejs/node/pull/53470)
|
|
107
|
+
* \[[`6acadeb59b`](https://github.com/nodejs/node/commit/6acadeb59b)] - **deps**: update acorn-walk to 8.3.3 (Node.js GitHub Bot) [#53466](https://github.com/nodejs/node/pull/53466)
|
|
108
|
+
* \[[`7a7f438841`](https://github.com/nodejs/node/commit/7a7f438841)] - **deps**: update zlib to 1.3.0.1-motley-209717d (Node.js GitHub Bot) [#53156](https://github.com/nodejs/node/pull/53156)
|
|
109
|
+
* \[[`bf891bf64c`](https://github.com/nodejs/node/commit/bf891bf64c)] - **deps**: update c-ares to v1.30.0 (Node.js GitHub Bot) [#53416](https://github.com/nodejs/node/pull/53416)
|
|
110
|
+
* \[[`bd68888261`](https://github.com/nodejs/node/commit/bd68888261)] - **deps**: V8: cherry-pick a3cc8522a4c8 (kxxt) [#53412](https://github.com/nodejs/node/pull/53412)
|
|
111
|
+
* \[[`2defaaf771`](https://github.com/nodejs/node/commit/2defaaf771)] - **deps**: V8: cherry-pick 6ea594ff7132 (kxxt) [#53412](https://github.com/nodejs/node/pull/53412)
|
|
112
|
+
* \[[`9e30724b53`](https://github.com/nodejs/node/commit/9e30724b53)] - **(SEMVER-MINOR)** **deps,lib,src**: add experimental web storage (Colin Ihrig) [#52435](https://github.com/nodejs/node/pull/52435)
|
|
113
|
+
* \[[`608cc05de1`](https://github.com/nodejs/node/commit/608cc05de1)] - **doc**: recommend not using libuv node-api function (Michael Dawson) [#53521](https://github.com/nodejs/node/pull/53521)
|
|
114
|
+
* \[[`30858eca59`](https://github.com/nodejs/node/commit/30858eca59)] - **doc**: add additional guidance for PRs to deps (Michael Dawson) [#53499](https://github.com/nodejs/node/pull/53499)
|
|
115
|
+
* \[[`a5852cc710`](https://github.com/nodejs/node/commit/a5852cc710)] - **doc**: only apply content-visibility on all.html (Filip Skokan) [#53510](https://github.com/nodejs/node/pull/53510)
|
|
116
|
+
* \[[`befabe5c58`](https://github.com/nodejs/node/commit/befabe5c58)] - **doc**: update the description of the return type for options.filter (Zhenwei Jin) [#52742](https://github.com/nodejs/node/pull/52742)
|
|
117
|
+
* \[[`5ed1a036ba`](https://github.com/nodejs/node/commit/5ed1a036ba)] - **doc**: remove first timer badge (Aviv Keller) [#53338](https://github.com/nodejs/node/pull/53338)
|
|
118
|
+
* \[[`201266706b`](https://github.com/nodejs/node/commit/201266706b)] - **doc**: move `node --run` stability to rc (Yagiz Nizipli) [#53433](https://github.com/nodejs/node/pull/53433)
|
|
119
|
+
* \[[`46a7681cc4`](https://github.com/nodejs/node/commit/46a7681cc4)] - **doc**: add Buffer.from(string) to functions that use buffer pool (Christian Bates-White) [#52801](https://github.com/nodejs/node/pull/52801)
|
|
120
|
+
* \[[`ec5364f6de`](https://github.com/nodejs/node/commit/ec5364f6de)] - **doc**: add initial text for ambassadors program (Michael Dawson) [#52857](https://github.com/nodejs/node/pull/52857)
|
|
121
|
+
* \[[`fa113b8fc7`](https://github.com/nodejs/node/commit/fa113b8fc7)] - **doc**: fix typo (EhsanKhaki) [#53397](https://github.com/nodejs/node/pull/53397)
|
|
122
|
+
* \[[`d9182d0086`](https://github.com/nodejs/node/commit/d9182d0086)] - **doc**: define more cases for stream event emissions (Aviv Keller) [#53317](https://github.com/nodejs/node/pull/53317)
|
|
123
|
+
* \[[`923d24b6f2`](https://github.com/nodejs/node/commit/923d24b6f2)] - **doc**: remove mentions of policy model from security info (Aviv Keller) [#53249](https://github.com/nodejs/node/pull/53249)
|
|
124
|
+
* \[[`48f78cd31b`](https://github.com/nodejs/node/commit/48f78cd31b)] - **doc**: fix mistakes in the module `load` hook api (István Donkó) [#53349](https://github.com/nodejs/node/pull/53349)
|
|
125
|
+
* \[[`16c0884d48`](https://github.com/nodejs/node/commit/16c0884d48)] - **doc**: mark WebSocket as stable (Matthew Aitken) [#53352](https://github.com/nodejs/node/pull/53352)
|
|
126
|
+
* \[[`df4762722c`](https://github.com/nodejs/node/commit/df4762722c)] - **doc**: doc-only deprecate OpenSSL engine-based APIs (Richard Lau) [#53329](https://github.com/nodejs/node/pull/53329)
|
|
127
|
+
* \[[`cf375e73c1`](https://github.com/nodejs/node/commit/cf375e73c1)] - **doc**: mark --heap-prof and related flags stable (Joyee Cheung) [#53343](https://github.com/nodejs/node/pull/53343)
|
|
128
|
+
* \[[`0160745057`](https://github.com/nodejs/node/commit/0160745057)] - **doc**: mark --cpu-prof and related flags stable (Joyee Cheung) [#53343](https://github.com/nodejs/node/pull/53343)
|
|
129
|
+
* \[[`6e12d9f049`](https://github.com/nodejs/node/commit/6e12d9f049)] - **doc**: remove IRC from man page (Tobias Nießen) [#53344](https://github.com/nodejs/node/pull/53344)
|
|
130
|
+
* \[[`24c7a9415b`](https://github.com/nodejs/node/commit/24c7a9415b)] - **doc, http**: add `rejectNonStandardBodyWrites` option, clear its behaviour (jakecastelli) [#53396](https://github.com/nodejs/node/pull/53396)
|
|
131
|
+
* \[[`ec38f3dc6a`](https://github.com/nodejs/node/commit/ec38f3dc6a)] - **doc, meta**: organize contributing to Node-API guide (Aviv Keller) [#53243](https://github.com/nodejs/node/pull/53243)
|
|
132
|
+
* \[[`cf5a973c42`](https://github.com/nodejs/node/commit/cf5a973c42)] - **doc, meta**: use markdown rather than HTML in CONTRIBUTING.md (Aviv Keller) [#53235](https://github.com/nodejs/node/pull/53235)
|
|
133
|
+
* \[[`105b006fd2`](https://github.com/nodejs/node/commit/105b006fd2)] - **fs**: move `ToNamespacedPath` to c++ (Yagiz Nizipli) [#52135](https://github.com/nodejs/node/pull/52135)
|
|
134
|
+
* \[[`568377f7f0`](https://github.com/nodejs/node/commit/568377f7f0)] - **fs**: do not crash if the watched file is removed while setting up watch (Matteo Collina) [#53452](https://github.com/nodejs/node/pull/53452)
|
|
135
|
+
* \[[`fad179307c`](https://github.com/nodejs/node/commit/fad179307c)] - **fs**: add fast api for `InternalModuleStat` (Yagiz Nizipli) [#51344](https://github.com/nodejs/node/pull/51344)
|
|
136
|
+
* \[[`41100b65f6`](https://github.com/nodejs/node/commit/41100b65f6)] - **http2**: reject failed http2.connect when used with promisify (ehsankhfr) [#53475](https://github.com/nodejs/node/pull/53475)
|
|
137
|
+
* \[[`ad5282e196`](https://github.com/nodejs/node/commit/ad5282e196)] - **inspector**: fix disable async hooks on Debugger.setAsyncCallStackDepth (Joyee Cheung) [#53473](https://github.com/nodejs/node/pull/53473)
|
|
138
|
+
* \[[`b5fc227344`](https://github.com/nodejs/node/commit/b5fc227344)] - **lib**: fix typo in comment (codediverdev) [#53543](https://github.com/nodejs/node/pull/53543)
|
|
139
|
+
* \[[`e95af740fc`](https://github.com/nodejs/node/commit/e95af740fc)] - **(SEMVER-MINOR)** **lib**: add diagnostics\_channel events to module loading (RafaelGSS) [#44340](https://github.com/nodejs/node/pull/44340)
|
|
140
|
+
* \[[`123910f1de`](https://github.com/nodejs/node/commit/123910f1de)] - **lib**: remove the unused code (theanarkh) [#53463](https://github.com/nodejs/node/pull/53463)
|
|
141
|
+
* \[[`452011b719`](https://github.com/nodejs/node/commit/452011b719)] - **lib**: speed up MessageEvent creation internally (Matthew Aitken) [#52951](https://github.com/nodejs/node/pull/52951)
|
|
142
|
+
* \[[`710cf7758c`](https://github.com/nodejs/node/commit/710cf7758c)] - **lib**: reduce amount of caught URL errors (Yagiz Nizipli) [#52658](https://github.com/nodejs/node/pull/52658)
|
|
143
|
+
* \[[`45b59e58d1`](https://github.com/nodejs/node/commit/45b59e58d1)] - **lib**: fix naming convention of `Symbol` (Deokjin Kim) [#53387](https://github.com/nodejs/node/pull/53387)
|
|
144
|
+
* \[[`515dd24ee7`](https://github.com/nodejs/node/commit/515dd24ee7)] - **lib**: fix timer leak (theanarkh) [#53337](https://github.com/nodejs/node/pull/53337)
|
|
145
|
+
* \[[`77166137be`](https://github.com/nodejs/node/commit/77166137be)] - **meta**: use correct source for workflow in PR (Aviv Keller) [#53490](https://github.com/nodejs/node/pull/53490)
|
|
146
|
+
* \[[`d1c10fee53`](https://github.com/nodejs/node/commit/d1c10fee53)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#53480](https://github.com/nodejs/node/pull/53480)
|
|
147
|
+
* \[[`a5026386bf`](https://github.com/nodejs/node/commit/a5026386bf)] - **meta**: fix typo in dependency updates (Aviv Keller) [#53471](https://github.com/nodejs/node/pull/53471)
|
|
148
|
+
* \[[`0b9191da99`](https://github.com/nodejs/node/commit/0b9191da99)] - **meta**: bump step-security/harden-runner from 2.7.1 to 2.8.0 (dependabot\[bot]) [#53245](https://github.com/nodejs/node/pull/53245)
|
|
149
|
+
* \[[`49cfb9d001`](https://github.com/nodejs/node/commit/49cfb9d001)] - **src**: reset `process.versions` during pre-execution (Richard Lau) [#53444](https://github.com/nodejs/node/pull/53444)
|
|
150
|
+
* \[[`15df4edd22`](https://github.com/nodejs/node/commit/15df4edd22)] - **src**: use `args.This()` instead of `Holder` (Michaël Zasso) [#53474](https://github.com/nodejs/node/pull/53474)
|
|
151
|
+
* \[[`e16a04e852`](https://github.com/nodejs/node/commit/e16a04e852)] - **src**: fix dynamically linked OpenSSL version (Richard Lau) [#53456](https://github.com/nodejs/node/pull/53456)
|
|
152
|
+
* \[[`5961253824`](https://github.com/nodejs/node/commit/5961253824)] - **src**: remove `base64` from `process.versions` (Richard Lau) [#53442](https://github.com/nodejs/node/pull/53442)
|
|
153
|
+
* \[[`11dd15c0b5`](https://github.com/nodejs/node/commit/11dd15c0b5)] - **src**: remove `SetEncoding` from StringEncoder (Yagiz Nizipli) [#53441](https://github.com/nodejs/node/pull/53441)
|
|
154
|
+
* \[[`0c7e69acd2`](https://github.com/nodejs/node/commit/0c7e69acd2)] - **src**: simplify `size() == 0` checks (Yagiz Nizipli) [#53440](https://github.com/nodejs/node/pull/53440)
|
|
155
|
+
* \[[`f077afafda`](https://github.com/nodejs/node/commit/f077afafda)] - **src**: add utilities to help debugging reproducibility of snapshots (Joyee Cheung) [#50983](https://github.com/nodejs/node/pull/50983)
|
|
156
|
+
* \[[`004b9ea4c4`](https://github.com/nodejs/node/commit/004b9ea4c4)] - **src**: make sure that memcpy-ed structs in snapshot have no padding (Joyee Cheung) [#50983](https://github.com/nodejs/node/pull/50983)
|
|
157
|
+
* \[[`bfc5236423`](https://github.com/nodejs/node/commit/bfc5236423)] - **src**: return non-empty data in context data serializer (Joyee Cheung) [#50983](https://github.com/nodejs/node/pull/50983)
|
|
158
|
+
* \[[`955454ba4d`](https://github.com/nodejs/node/commit/955454ba4d)] - **src**: fix typo in env.cc (EhsanKhaki) [#53418](https://github.com/nodejs/node/pull/53418)
|
|
159
|
+
* \[[`7d8787768c`](https://github.com/nodejs/node/commit/7d8787768c)] - **src**: avoid strcmp in favor of operator== (Tobias Nießen) [#53439](https://github.com/nodejs/node/pull/53439)
|
|
160
|
+
* \[[`599e7c3d8e`](https://github.com/nodejs/node/commit/599e7c3d8e)] - **src**: remove ArrayBufferAllocator::Reallocate override (Shu-yu Guo) [#52910](https://github.com/nodejs/node/pull/52910)
|
|
161
|
+
* \[[`f9075ff38e`](https://github.com/nodejs/node/commit/f9075ff38e)] - **src**: print v8::OOMDetails::detail when it's available (Joyee Cheung) [#53360](https://github.com/nodejs/node/pull/53360)
|
|
162
|
+
* \[[`4704270443`](https://github.com/nodejs/node/commit/4704270443)] - **src**: fix IsIPAddress for IPv6 (Hüseyin Açacak) [#53400](https://github.com/nodejs/node/pull/53400)
|
|
163
|
+
* \[[`63f62d76de`](https://github.com/nodejs/node/commit/63f62d76de)] - **src**: fix permission inspector crash (theanarkh) [#53389](https://github.com/nodejs/node/pull/53389)
|
|
164
|
+
* \[[`70bbc02dac`](https://github.com/nodejs/node/commit/70bbc02dac)] - **src, deps**: add nbytes library (James M Snell) [#53507](https://github.com/nodejs/node/pull/53507)
|
|
165
|
+
* \[[`8b877099d0`](https://github.com/nodejs/node/commit/8b877099d0)] - **stream**: update outdated highwatermark doc (Jay Kim) [#53494](https://github.com/nodejs/node/pull/53494)
|
|
166
|
+
* \[[`eded1e9768`](https://github.com/nodejs/node/commit/eded1e9768)] - **stream**: support dispose in writable (Benjamin Gruenbaum) [#48547](https://github.com/nodejs/node/pull/48547)
|
|
167
|
+
* \[[`b3372a8b0e`](https://github.com/nodejs/node/commit/b3372a8b0e)] - **stream**: callback should be called when pendingcb is 0 (jakecastelli) [#53438](https://github.com/nodejs/node/pull/53438)
|
|
168
|
+
* \[[`f4efb7f625`](https://github.com/nodejs/node/commit/f4efb7f625)] - **stream**: make sure \_destroy is called (jakecastelli) [#53213](https://github.com/nodejs/node/pull/53213)
|
|
169
|
+
* \[[`7dde37591c`](https://github.com/nodejs/node/commit/7dde37591c)] - **stream**: prevent stream unexpected pause when highWaterMark set to 0 (jakecastelli) [#53261](https://github.com/nodejs/node/pull/53261)
|
|
170
|
+
* \[[`6e66d9763f`](https://github.com/nodejs/node/commit/6e66d9763f)] - **test**: mark `test-benchmark-crypto` as flaky (Antoine du Hamel) [#52955](https://github.com/nodejs/node/pull/52955)
|
|
171
|
+
* \[[`1eebcbf9bf`](https://github.com/nodejs/node/commit/1eebcbf9bf)] - **test**: skip reproducible snapshot test on 32-bit (Michaël Zasso) [#53592](https://github.com/nodejs/node/pull/53592)
|
|
172
|
+
* \[[`91b2850303`](https://github.com/nodejs/node/commit/91b2850303)] - **test**: extend env for `test-node-output-errors` (Richard Lau) [#53535](https://github.com/nodejs/node/pull/53535)
|
|
173
|
+
* \[[`bcad560726`](https://github.com/nodejs/node/commit/bcad560726)] - **test**: update `compression` web-platform tests (Yagiz Nizipli) [#53478](https://github.com/nodejs/node/pull/53478)
|
|
174
|
+
* \[[`b8f436c755`](https://github.com/nodejs/node/commit/b8f436c755)] - **test**: update encoding web-platform tests (Yagiz Nizipli) [#53477](https://github.com/nodejs/node/pull/53477)
|
|
175
|
+
* \[[`d2c169a4f6`](https://github.com/nodejs/node/commit/d2c169a4f6)] - **test**: update `url` web-platform tests (Yagiz Nizipli) [#53472](https://github.com/nodejs/node/pull/53472)
|
|
176
|
+
* \[[`513e6aa4c7`](https://github.com/nodejs/node/commit/513e6aa4c7)] - **test**: check against run-time OpenSSL version (Richard Lau) [#53456](https://github.com/nodejs/node/pull/53456)
|
|
177
|
+
* \[[`602b9d63c4`](https://github.com/nodejs/node/commit/602b9d63c4)] - **test**: update tests for OpenSSL 3.0.14 (Richard Lau) [#53373](https://github.com/nodejs/node/pull/53373)
|
|
178
|
+
* \[[`4a3525bb08`](https://github.com/nodejs/node/commit/4a3525bb08)] - **test**: fix test-http-server-keepalive-req-gc (Etienne Pierre-doray) [#53292](https://github.com/nodejs/node/pull/53292)
|
|
179
|
+
* \[[`7349edb28b`](https://github.com/nodejs/node/commit/7349edb28b)] - **test**: update TLS tests for OpenSSL 3.2 (Richard Lau) [#53384](https://github.com/nodejs/node/pull/53384)
|
|
180
|
+
* \[[`a11a05763d`](https://github.com/nodejs/node/commit/a11a05763d)] - **tls**: check result of SSL\_CTX\_set\_\*\_proto\_version (Tobias Nießen) [#53459](https://github.com/nodejs/node/pull/53459)
|
|
181
|
+
* \[[`4b47f89eb2`](https://github.com/nodejs/node/commit/4b47f89eb2)] - **tls**: avoid taking ownership of OpenSSL objects (Tobias Nießen) [#53436](https://github.com/nodejs/node/pull/53436)
|
|
182
|
+
* \[[`ac8adeb99f`](https://github.com/nodejs/node/commit/ac8adeb99f)] - **tls**: use SSL\_get\_peer\_tmp\_key (Tobias Nießen) [#53366](https://github.com/nodejs/node/pull/53366)
|
|
183
|
+
* \[[`d5c380bb09`](https://github.com/nodejs/node/commit/d5c380bb09)] - **tools**: lock versions of irrelevant DB deps (Michaël Zasso) [#53546](https://github.com/nodejs/node/pull/53546)
|
|
184
|
+
* \[[`71321bb249`](https://github.com/nodejs/node/commit/71321bb249)] - **tools**: fix skip detection of test runner output (Richard Lau) [#53545](https://github.com/nodejs/node/pull/53545)
|
|
185
|
+
* \[[`ca198f4125`](https://github.com/nodejs/node/commit/ca198f4125)] - **tools**: update eslint to 9.5.0 (Node.js GitHub Bot) [#53515](https://github.com/nodejs/node/pull/53515)
|
|
186
|
+
* \[[`30fdd482a1`](https://github.com/nodejs/node/commit/30fdd482a1)] - **tools**: move ESLint to tools/eslint (Michaël Zasso) [#53413](https://github.com/nodejs/node/pull/53413)
|
|
187
|
+
* \[[`fe85e05ba9`](https://github.com/nodejs/node/commit/fe85e05ba9)] - **tools**: fix c-ares update script (Marco Ippolito) [#53414](https://github.com/nodejs/node/pull/53414)
|
|
188
|
+
* \[[`8eb7bdf81b`](https://github.com/nodejs/node/commit/8eb7bdf81b)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#53158](https://github.com/nodejs/node/pull/53158)
|
|
189
|
+
* \[[`9ece63d415`](https://github.com/nodejs/node/commit/9ece63d415)] - **tools**: do not run Corepack code before it's reviewed (Antoine du Hamel) [#53405](https://github.com/nodejs/node/pull/53405)
|
|
190
|
+
* \[[`ab2021492b`](https://github.com/nodejs/node/commit/ab2021492b)] - **tools**: move ESLint tools to tools/eslint (Michaël Zasso) [#53393](https://github.com/nodejs/node/pull/53393)
|
|
191
|
+
* \[[`78a9037a6d`](https://github.com/nodejs/node/commit/78a9037a6d)] - **tools**: use Ubuntu 24.04 and Clang on GitHub actions (Michaël Zasso) [#53212](https://github.com/nodejs/node/pull/53212)
|
|
192
|
+
* \[[`855eb25dad`](https://github.com/nodejs/node/commit/855eb25dad)] - **tools**: add stream label on PR when related files being changed in lib (jakecastelli) [#53269](https://github.com/nodejs/node/pull/53269)
|
|
193
|
+
* \[[`50733a1abe`](https://github.com/nodejs/node/commit/50733a1abe)] - **(SEMVER-MINOR)** **util**: support `--no-` for argument with boolean type for parseArgs (Zhenwei Jin) [#53107](https://github.com/nodejs/node/pull/53107)
|
|
194
|
+
|
|
43
195
|
<a id="22.3.0"></a>
|
|
44
196
|
|
|
45
197
|
## 2024-06-11, Version 22.3.0 (Current), @RafaelGSS
|
package/LICENSE
CHANGED
|
@@ -2003,7 +2003,7 @@ The externally maintained libraries used by Node.js are:
|
|
|
2003
2003
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2004
2004
|
"""
|
|
2005
2005
|
|
|
2006
|
-
- ESLint, located at tools/node_modules/eslint, is licensed as follows:
|
|
2006
|
+
- ESLint, located at tools/eslint/node_modules/eslint, is licensed as follows:
|
|
2007
2007
|
"""
|
|
2008
2008
|
Copyright OpenJS Foundation and other contributors, <www.openjsf.org>
|
|
2009
2009
|
|
package/README.md
CHANGED
|
@@ -455,8 +455,6 @@ For information about the governance of the Node.js project, see
|
|
|
455
455
|
**Mohammed Keyvanzadeh** <<mohammadkeyvanzade94@gmail.com>> (he/him)
|
|
456
456
|
* [watilde](https://github.com/watilde) -
|
|
457
457
|
**Daijiro Wachi** <<daijiro.wachi@gmail.com>> (he/him)
|
|
458
|
-
* [XadillaX](https://github.com/XadillaX) -
|
|
459
|
-
**Khaidi Chu** <<i@2333.moe>> (he/him)
|
|
460
458
|
* [zcbenz](https://github.com/zcbenz) -
|
|
461
459
|
**Cheng Zhao** <<zcbenz@gmail.com>> (he/him)
|
|
462
460
|
* [ZYSzys](https://github.com/ZYSzys) -
|
|
@@ -705,6 +703,8 @@ For information about the governance of the Node.js project, see
|
|
|
705
703
|
**Thomas Watson** <<w@tson.dk>>
|
|
706
704
|
* [whitlockjc](https://github.com/whitlockjc) -
|
|
707
705
|
**Jeremy Whitlock** <<jwhitlock@apache.org>>
|
|
706
|
+
* [XadillaX](https://github.com/XadillaX) -
|
|
707
|
+
**Khaidi Chu** <<i@2333.moe>> (he/him)
|
|
708
708
|
* [yashLadha](https://github.com/yashLadha) -
|
|
709
709
|
**Yash Ladha** <<yash@yashladha.in>> (he/him)
|
|
710
710
|
* [yhwang](https://github.com/yhwang) -
|
package/bin/node
CHANGED
|
Binary file
|
package/include/node/common.gypi
CHANGED
package/include/node/config.gypi
CHANGED
|
@@ -297,6 +297,7 @@
|
|
|
297
297
|
'lib/internal/watch_mode/files_watcher.js',
|
|
298
298
|
'lib/internal/watchdog.js',
|
|
299
299
|
'lib/internal/webidl.js',
|
|
300
|
+
'lib/internal/webstorage.js',
|
|
300
301
|
'lib/internal/webstreams/adapters.js',
|
|
301
302
|
'lib/internal/webstreams/compression.js',
|
|
302
303
|
'lib/internal/webstreams/encoding.js',
|
|
@@ -361,6 +362,7 @@
|
|
|
361
362
|
'node_shared_openssl': 'false',
|
|
362
363
|
'node_shared_simdjson': 'false',
|
|
363
364
|
'node_shared_simdutf': 'false',
|
|
365
|
+
'node_shared_sqlite': 'false',
|
|
364
366
|
'node_shared_uvwasi': 'false',
|
|
365
367
|
'node_shared_zlib': 'false',
|
|
366
368
|
'node_tag': '',
|
package/include/node/node.exp
CHANGED
|
@@ -6009,7 +6009,7 @@ _GLOBAL__I_65535_0_.._deps_v8_src_sandbox_external_pointer_table.cc_E21CEA7D_0x7
|
|
|
6009
6009
|
_GLOBAL__I_65535_0_.._deps_v8_src_sandbox_sandbox.cc_BFF00FE3_0x16d255ce1b1bcefb
|
|
6010
6010
|
_GLOBAL__I_65535_0_.._deps_v8_src_sandbox_testing.cc_7874F2D3_0x41df37448a97d4d2
|
|
6011
6011
|
_GLOBAL__I_65535_0_.._deps_v8_src_sandbox_trusted_pointer_table.cc_E21CEA7D_0x18680b2cec3609fc
|
|
6012
|
-
_GLOBAL__I_65535_0_.._src_connection_wrap.
|
|
6012
|
+
_GLOBAL__I_65535_0_.._src_connection_wrap.cc_E21CEA7D_0x62375e60e8eeb5aa
|
|
6013
6013
|
_GLOBAL__I_65535_0_OPENSSL_ppccap_P
|
|
6014
6014
|
_GLOBAL__I_65535_0__Z16_register_configv
|
|
6015
6015
|
_GLOBAL__I_65535_0__Z17_register_symbolsv
|
|
@@ -7028,8 +7028,10 @@ _GLOBAL__I_65535_0__ZN4node10cares_wrap11ChannelWrapC2EPNS_11EnvironmentEN2v85Lo
|
|
|
7028
7028
|
_GLOBAL__I_65535_0__ZN4node10contextify17ContextifyContext3NewEPNS_11EnvironmentEN2v85LocalINS4_6ObjectEEEPNS0_14ContextOptionsE
|
|
7029
7029
|
_GLOBAL__I_65535_0__ZN4node10permission10Permission18PermissionToStringENS0_15PermissionScopeE
|
|
7030
7030
|
_GLOBAL__I_65535_0__ZN4node10permission12FSPermission5ApplyEPNS_11EnvironmentERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaISA_EENS0_15PermissionScopeE
|
|
7031
|
+
_GLOBAL__I_65535_0__ZN4node10webstorage7StorageC2EPNS_11EnvironmentEN2v85LocalINS4_6ObjectEEENS5_INS4_6StringEEE
|
|
7031
7032
|
_GLOBAL__I_65535_0__ZN4node11ConnectWrapC2EPNS_11EnvironmentEN2v85LocalINS3_6ObjectEEENS_9AsyncWrap12ProviderTypeE
|
|
7032
7033
|
_GLOBAL__I_65535_0__ZN4node11StatWatcher26CreatePerIsolatePropertiesEPNS_11IsolateDataEN2v85LocalINS3_14ObjectTemplateEEE
|
|
7034
|
+
_GLOBAL__I_65535_0__ZN4node11StringBytes9WriteUCS2EPN2v87IsolateEPcmNS1_5LocalINS1_6StringEEEi
|
|
7033
7035
|
_GLOBAL__I_65535_0__ZN4node11Uint32ToHexB5cxx11Ej
|
|
7034
7036
|
_GLOBAL__I_65535_0__ZN4node11per_process11dotenv_fileE
|
|
7035
7037
|
_GLOBAL__I_65535_0__ZN4node11per_process11umask_mutexE
|
|
@@ -7048,7 +7050,6 @@ _GLOBAL__I_65535_0__ZN4node13ParseEncodingEPKcNS_8encodingE
|
|
|
7048
7050
|
_GLOBAL__I_65535_0__ZN4node13SocketAddress10ToSockAddrEiPKcjP16sockaddr_storage
|
|
7049
7051
|
_GLOBAL__I_65535_0__ZN4node13StringDecoder10DecodeDataEPN2v87IsolateEPKcPm
|
|
7050
7052
|
_GLOBAL__I_65535_0__ZN4node14ErrnoExceptionEPN2v87IsolateEiPKcS4_S4_
|
|
7051
|
-
_GLOBAL__I_65535_0__ZN4node14unbase64_tableE
|
|
7052
7053
|
_GLOBAL__I_65535_0__ZN4node15IsPathSeparatorEc
|
|
7053
7054
|
_GLOBAL__I_65535_0__ZN4node15NodeCategorySet3NewERKN2v820FunctionCallbackInfoINS1_5ValueEEE
|
|
7054
7055
|
_GLOBAL__I_65535_0__ZN4node15linux_at_secureEv
|
|
@@ -7289,6 +7290,7 @@ _Z20_register_mksnapshotv
|
|
|
7289
7290
|
_Z20_register_permissionv
|
|
7290
7291
|
_Z20_register_spawn_syncv
|
|
7291
7292
|
_Z20_register_task_queuev
|
|
7293
|
+
_Z20_register_webstoragev
|
|
7292
7294
|
_Z20ulocimp_getParent_75PKcR10UErrorCode
|
|
7293
7295
|
_Z20ulocimp_getParent_75PKcRN6icu_758ByteSinkER10UErrorCode
|
|
7294
7296
|
_Z20ulocimp_getRegion_75PKcR10UErrorCode
|
|
@@ -7455,7 +7457,9 @@ _ZGVZN2v88internal28CFunctionBuilderWithFunctionINS_16CTypeInfoBuilderIbJEEEJNS2
|
|
|
7455
7457
|
_ZGVZN2v88internal28CFunctionBuilderWithFunctionINS_16CTypeInfoBuilderIdJEEEJNS2_INS_5LocalINS_5ValueEEEJEEEEE5BuildILNS_13CFunctionInfo19Int64RepresentationE0EEEDavE8instance
|
|
7456
7458
|
_ZGVZN2v88internal28CFunctionBuilderWithFunctionINS_16CTypeInfoBuilderIdJEEEJNS2_INS_5LocalINS_5ValueEEEJEEES3_EE5BuildILNS_13CFunctionInfo19Int64RepresentationE0EEEDavE8instance
|
|
7457
7459
|
_ZGVZN2v88internal28CFunctionBuilderWithFunctionINS_16CTypeInfoBuilderIdJEEEJNS2_INS_5LocalINS_6ObjectEEEJEEEEE5BuildILNS_13CFunctionInfo19Int64RepresentationE0EEEDavE8instance
|
|
7460
|
+
_ZGVZN2v88internal28CFunctionBuilderWithFunctionINS_16CTypeInfoBuilderIiJEEEJNS2_INS_5LocalINS_5ValueEEEJEEENS2_IRKNS_17FastApiTypedArrayIhEEJEEENS2_IjJEEENS2_IlJEEENS2_IbJEEEEE5BuildILNS_13CFunctionInfo19Int64RepresentationE0EEEDavE8instance
|
|
7458
7461
|
_ZGVZN2v88internal28CFunctionBuilderWithFunctionINS_16CTypeInfoBuilderIiJEEEJNS2_INS_5LocalINS_5ValueEEEJEEENS2_IRKNS_17FastApiTypedArrayIhEEJEEESC_EE5BuildILNS_13CFunctionInfo19Int64RepresentationE0EEEDavE8instance
|
|
7462
|
+
_ZGVZN2v88internal28CFunctionBuilderWithFunctionINS_16CTypeInfoBuilderIiJEEEJNS2_INS_5LocalINS_6ObjectEEEJEEENS2_IRKNS_17FastOneByteStringEJEEENS2_IRNS_22FastApiCallbackOptionsEJEEEEE5BuildILNS_13CFunctionInfo19Int64RepresentationE0EEEDavE8instance
|
|
7459
7463
|
_ZGVZN2v88internal28CFunctionBuilderWithFunctionINS_16CTypeInfoBuilderIjJEEEJNS2_INS_5LocalINS_5ValueEEEJEEENS2_IRKNS_17FastOneByteStringEJEEEEE5BuildILNS_13CFunctionInfo19Int64RepresentationE0EEEDavE8instance
|
|
7460
7464
|
_ZGVZN2v88internal28CFunctionBuilderWithFunctionINS_16CTypeInfoBuilderIjJEEEJNS2_INS_5LocalINS_5ValueEEEJEEES3_EE5BuildILNS_13CFunctionInfo19Int64RepresentationE0EEEDavE8instance
|
|
7461
7465
|
_ZGVZN2v88internal28CFunctionBuilderWithFunctionINS_16CTypeInfoBuilderIjJEEEJNS2_INS_5LocalINS_6ObjectEEEJEEENS2_IRNS_22FastApiCallbackOptionsEJEEEEE5BuildILNS_13CFunctionInfo19Int64RepresentationE0EEEDavE8instance
|
|
@@ -60660,6 +60664,7 @@ _ZN4heap4base8WorklistISt4pairIN2v88internal6TaggedINS4_10HeapObjectEEEiELt256EE
|
|
|
60660
60664
|
_ZN4heap4base8WorklistISt4pairIN2v88internal6TaggedINS4_10HeapObjectEEEiELt256EE7Segment6CreateEt
|
|
60661
60665
|
_ZN4heap4base8internal11SegmentBase25GetSentinelSegmentAddressEv
|
|
60662
60666
|
_ZN4node10AsyncHooks11DeserializeEN2v85LocalINS1_7ContextEEE
|
|
60667
|
+
_ZN4node10AsyncHooks15GetPromiseHooksEPN2v87IsolateE
|
|
60663
60668
|
_ZN4node10AsyncHooks17ResetPromiseHooksEN2v85LocalINS1_8FunctionEEES4_S4_S4_
|
|
60664
60669
|
_ZN4node10AsyncHooks17pop_async_contextEd
|
|
60665
60670
|
_ZN4node10AsyncHooks18push_async_contextEddN2v85LocalINS1_6ObjectEEE
|
|
@@ -60996,6 +61001,20 @@ _ZN4node10permission22ChildProcessPermission5ApplyEPNS_11EnvironmentERKSt6vector
|
|
|
60996
61001
|
_ZN4node10permission23CreateAccessDeniedErrorEPNS_11EnvironmentENS0_15PermissionScopeERKSt17basic_string_viewIcSt11char_traitsIcEE
|
|
60997
61002
|
_ZN4node10permission26RegisterExternalReferencesEPNS_25ExternalReferenceRegistryE
|
|
60998
61003
|
_ZN4node10task_queue26RegisterExternalReferencesEPNS_25ExternalReferenceRegistryE
|
|
61004
|
+
_ZN4node10webstorage7Storage3NewERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
61005
|
+
_ZN4node10webstorage7Storage4LoadEN2v85LocalINS2_4NameEEE
|
|
61006
|
+
_ZN4node10webstorage7Storage4OpenEv
|
|
61007
|
+
_ZN4node10webstorage7Storage5ClearEv
|
|
61008
|
+
_ZN4node10webstorage7Storage5StoreEN2v85LocalINS2_4NameEEENS3_INS2_5ValueEEE
|
|
61009
|
+
_ZN4node10webstorage7Storage6LengthEv
|
|
61010
|
+
_ZN4node10webstorage7Storage6RemoveEN2v85LocalINS2_4NameEEE
|
|
61011
|
+
_ZN4node10webstorage7Storage7LoadKeyEi
|
|
61012
|
+
_ZN4node10webstorage7Storage9EnumerateEv
|
|
61013
|
+
_ZN4node10webstorage7StorageC1EPNS_11EnvironmentEN2v85LocalINS4_6ObjectEEENS5_INS4_6StringEEE
|
|
61014
|
+
_ZN4node10webstorage7StorageC2EPNS_11EnvironmentEN2v85LocalINS4_6ObjectEEENS5_INS4_6StringEEE
|
|
61015
|
+
_ZN4node10webstorage7StorageD0Ev
|
|
61016
|
+
_ZN4node10webstorage7StorageD1Ev
|
|
61017
|
+
_ZN4node10webstorage7StorageD2Ev
|
|
60999
61018
|
_ZN4node11AddressToJSEPNS_11EnvironmentEPK8sockaddrN2v85LocalINS5_6ObjectEEE
|
|
61000
61019
|
_ZN4node11BufferValueC1EPN2v87IsolateENS1_5LocalINS1_5ValueEEE
|
|
61001
61020
|
_ZN4node11BufferValueC2EPN2v87IsolateENS1_5LocalINS1_5ValueEEE
|
|
@@ -61146,6 +61165,7 @@ _ZN4node11SPrintFImplIRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEJPKc
|
|
|
61146
61165
|
_ZN4node11SPrintFImplIRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEJRPKcEEES6_SA_OT_DpOT0_
|
|
61147
61166
|
_ZN4node11SPrintFImplIRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEJRS6_S9_EEES6_PKcOT_DpOT0_
|
|
61148
61167
|
_ZN4node11SPrintFImplIRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEJS8_EEES6_PKcOT_DpOT0_
|
|
61168
|
+
_ZN4node11SPrintFImplIRKPKcJEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_OT_DpOT0_
|
|
61149
61169
|
_ZN4node11SPrintFImplIRKSt17basic_string_viewIcSt11char_traitsIcEEJPKcmEEENSt7__cxx1112basic_stringIcS3_SaIcEEES8_OT_DpOT0_
|
|
61150
61170
|
_ZN4node11SPrintFImplIRKhJEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcOT_DpOT0_
|
|
61151
61171
|
_ZN4node11SPrintFImplIRKhJRiEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcOT_DpOT0_
|
|
@@ -61263,6 +61283,9 @@ _ZN4node11SPrintFImplIlJRNS_4quic9QuicErrorEEEENSt7__cxx1112basic_stringIcSt11ch
|
|
|
61263
61283
|
_ZN4node11SPrintFImplIlJRmEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcOT_DpOT0_
|
|
61264
61284
|
_ZN4node11SPrintFImplImJEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcOT_DpOT0_
|
|
61265
61285
|
_ZN4node11SPrintFImplImJPKcEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_OT_DpOT0_
|
|
61286
|
+
_ZN4node11SPrintFImplImJPKcmRmS2_EEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_OT_DpOT0_
|
|
61287
|
+
_ZN4node11SPrintFImplImJPKcmmS2_EEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_OT_DpOT0_
|
|
61288
|
+
_ZN4node11SPrintFImplImJRKjEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcOT_DpOT0_
|
|
61266
61289
|
_ZN4node11SPrintFImplImJRiEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcOT_DpOT0_
|
|
61267
61290
|
_ZN4node11SPrintFImplImJRmEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcOT_DpOT0_
|
|
61268
61291
|
_ZN4node11SPrintFImplImJRmPKcEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES3_OT_DpOT0_
|
|
@@ -61280,8 +61303,6 @@ _ZN4node11StatWatcherC1EPNS_2fs11BindingDataEN2v85LocalINS4_6ObjectEEEb
|
|
|
61280
61303
|
_ZN4node11StatWatcherC2EPNS_2fs11BindingDataEN2v85LocalINS4_6ObjectEEEb
|
|
61281
61304
|
_ZN4node11StatWatcherD0Ev
|
|
61282
61305
|
_ZN4node11StatWatcherD1Ev
|
|
61283
|
-
_ZN4node11StringBytes10hex_encodeB5cxx11EPKcm
|
|
61284
|
-
_ZN4node11StringBytes10hex_encodeEPKcmPcm
|
|
61285
61306
|
_ZN4node11StringBytes11StorageSizeEPN2v87IsolateENS1_5LocalINS1_5ValueEEENS_8encodingE
|
|
61286
61307
|
_ZN4node11StringBytes4SizeEPN2v87IsolateENS1_5LocalINS1_5ValueEEENS_8encodingE
|
|
61287
61308
|
_ZN4node11StringBytes5WriteEPN2v87IsolateEPcmNS1_5LocalINS1_5ValueEEENS_8encodingE
|
|
@@ -61399,8 +61420,6 @@ _ZN4node12RealEnvStore3SetEPN2v87IsolateENS1_5LocalINS1_6StringEEES6_
|
|
|
61399
61420
|
_ZN4node12RealEnvStore6DeleteEPN2v87IsolateENS1_5LocalINS1_6StringEEE
|
|
61400
61421
|
_ZN4node12RealEnvStoreD0Ev
|
|
61401
61422
|
_ZN4node12RealEnvStoreD1Ev
|
|
61402
|
-
_ZN4node12SearchStringIhEEmPKT_mS3_mmb
|
|
61403
|
-
_ZN4node12SearchStringItEEmPKT_mS3_mmb
|
|
61404
61423
|
_ZN4node12ShutdownWrap6OnDoneEi
|
|
61405
61424
|
_ZN4node12SnapshotData19FromEmbedderWrapperEPKNS_20EmbedderSnapshotDataE
|
|
61406
61425
|
_ZN4node12SnapshotData6kMagicE
|
|
@@ -61500,10 +61519,6 @@ _ZN4node12shadow_realm11ShadowRealmD1Ev
|
|
|
61500
61519
|
_ZN4node12shadow_realm11ShadowRealmD2Ev
|
|
61501
61520
|
_ZN4node12shadow_realm36HostCreateShadowRealmContextCallbackEN2v85LocalINS1_7ContextEEE
|
|
61502
61521
|
_ZN4node12signo_stringEi
|
|
61503
|
-
_ZN4node12stringsearch12SearchStringIhEEmNS0_6VectorIKT_EES5_m
|
|
61504
|
-
_ZN4node12stringsearch12SearchStringItEEmNS0_6VectorIKT_EES5_m
|
|
61505
|
-
_ZN4node12stringsearch12StringSearchIhE23PopulateBoyerMooreTableEv
|
|
61506
|
-
_ZN4node12stringsearch12StringSearchItE23PopulateBoyerMooreTableEv
|
|
61507
61522
|
_ZN4node12wasm_web_api10InitializeEN2v85LocalINS1_6ObjectEEENS2_INS1_5ValueEEENS2_INS1_7ContextEEEPv
|
|
61508
61523
|
_ZN4node12wasm_web_api17SetImplementationERKN2v820FunctionCallbackInfoINS1_5ValueEEE
|
|
61509
61524
|
_ZN4node12wasm_web_api19WasmStreamingObject10InitializeEPNS_11EnvironmentE
|
|
@@ -61903,7 +61918,6 @@ _ZN4node14options_parser5ParseINS_12DebugOptionsENS_7OptionsEEEvPSt6vectorINSt7_
|
|
|
61903
61918
|
_ZN4node14options_parser5ParseINS_17PerIsolateOptionsENS_7OptionsEEEvPSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaISA_EESD_SD_PT_NS_20OptionEnvvarSettingsESD_
|
|
61904
61919
|
_ZN4node14options_parser5ParseINS_17PerProcessOptionsENS_7OptionsEEEvPSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaISA_EESD_SD_PT_NS_20OptionEnvvarSettingsESD_
|
|
61905
61920
|
_ZN4node14options_parser8ArgsInfo9pop_firstB5cxx11Ev
|
|
61906
|
-
_ZN4node14unbase64_tableE
|
|
61907
61921
|
_ZN4node15BlobBindingData11DeserializeEN2v85LocalINS1_7ContextEEENS2_INS1_6ObjectEEEiPNS_21InternalFieldInfoBaseE
|
|
61908
61922
|
_ZN4node15BlobBindingData15get_data_objectERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE
|
|
61909
61923
|
_ZN4node15BlobBindingData16StoredDataObjectC1ERKNS_17BaseObjectPtrImplINS_4BlobELb0EEEmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE
|
|
@@ -62030,7 +62044,6 @@ _ZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm1024EE25AllocateSufficientS
|
|
|
62030
62044
|
_ZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm128EE25AllocateSufficientStorageEm
|
|
62031
62045
|
_ZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm16EE25AllocateSufficientStorageEm
|
|
62032
62046
|
_ZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm256EE25AllocateSufficientStorageEm
|
|
62033
|
-
_ZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm32EE25AllocateSufficientStorageEm
|
|
62034
62047
|
_ZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm5EE25AllocateSufficientStorageEm
|
|
62035
62048
|
_ZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm64EE25AllocateSufficientStorageEm
|
|
62036
62049
|
_ZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm8EE25AllocateSufficientStorageEm
|
|
@@ -62054,6 +62067,7 @@ _ZN4node16RequestInterruptEPNS_11EnvironmentEPFvPvES2_
|
|
|
62054
62067
|
_ZN4node16SocketAddressLRUINS_4quic8Endpoint23SocketAddressInfoTraitsEE6UpsertERKNS_13SocketAddressE
|
|
62055
62068
|
_ZN4node16SocketAddressLRUINS_4quic8Endpoint23SocketAddressInfoTraitsEED0Ev
|
|
62056
62069
|
_ZN4node16SocketAddressLRUINS_4quic8Endpoint23SocketAddressInfoTraitsEED1Ev
|
|
62070
|
+
_ZN4node16ToNamespacedPathEPNS_11EnvironmentEPNS_11BufferValueE
|
|
62057
62071
|
_ZN4node16WithoutCodeCacheERKNS_13SnapshotFlagsE
|
|
62058
62072
|
_ZN4node16WithoutCodeCacheERKNS_14SnapshotConfigE
|
|
62059
62073
|
_ZN4node16encoding_binding11BindingData10DecodeUTF8ERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
@@ -62235,9 +62249,6 @@ _ZN4node18SnapshotSerializer5WriteINS_8TickInfo13SerializeInfoELPv0ELS4_0EEEmRKT
|
|
|
62235
62249
|
_ZN4node18SnapshotSerializer5WriteINS_8builtins13CodeCacheInfoELPv0ELS4_0EEEmRKT_
|
|
62236
62250
|
_ZN4node18SnapshotableObjectC1EPNS_5RealmEN2v85LocalINS3_6ObjectEEENS_18EmbedderObjectTypeE
|
|
62237
62251
|
_ZN4node18SnapshotableObjectC2EPNS_5RealmEN2v85LocalINS3_6ObjectEEENS_18EmbedderObjectTypeE
|
|
62238
|
-
_ZN4node18base64_decode_fastIcEEmPcmPKT_mm
|
|
62239
|
-
_ZN4node18base64_decode_fastIhEEmPcmPKT_mm
|
|
62240
|
-
_ZN4node18base64_decode_fastItEEmPcmPKT_mm
|
|
62241
62252
|
_ZN4node19AppendExceptionLineEPNS_11EnvironmentEN2v85LocalINS2_5ValueEEENS3_INS2_7MessageEEENS_17ErrorHandlingModeE
|
|
62242
62253
|
_ZN4node19CompileCacheHandler11GetOrInsertEN2v85LocalINS1_6StringEEES4_NS_14CachedCodeTypeE
|
|
62243
62254
|
_ZN4node19CompileCacheHandler13ReadCacheFileEPNS_17CompileCacheEntryE
|
|
@@ -62503,7 +62514,6 @@ _ZN4node24MakeLibuvRequestCallbackI13uv_udp_send_sPFvPS1_iEE7WrapperES2_i
|
|
|
62503
62514
|
_ZN4node24MakeLibuvRequestCallbackI16uv_getaddrinfo_sPFvPS1_iP8addrinfoEE7WrapperES2_iS4_
|
|
62504
62515
|
_ZN4node24MakeLibuvRequestCallbackI16uv_getnameinfo_sPFvPS1_iPKcS4_EE7WrapperES2_iS4_S4_
|
|
62505
62516
|
_ZN4node24MakeLibuvRequestCallbackI7uv_fs_sPFvPS1_EE7WrapperES2_
|
|
62506
|
-
_ZN4node24NodeArrayBufferAllocator10ReallocateEPvmm
|
|
62507
62517
|
_ZN4node24NodeArrayBufferAllocator15RegisterPointerEPvm
|
|
62508
62518
|
_ZN4node24NodeArrayBufferAllocator17UnregisterPointerEPvm
|
|
62509
62519
|
_ZN4node24NodeArrayBufferAllocator21AllocateUninitializedEm
|
|
@@ -62513,9 +62523,6 @@ _ZN4node24NodeArrayBufferAllocator8AllocateEm
|
|
|
62513
62523
|
_ZN4node24NodeArrayBufferAllocatorD0Ev
|
|
62514
62524
|
_ZN4node24NodeArrayBufferAllocatorD1Ev
|
|
62515
62525
|
_ZN4node24SerializeNodeContextDataEN2v85LocalINS0_7ContextEEEiPv
|
|
62516
|
-
_ZN4node24base64_decode_group_slowIcEEbPcmPKT_mPmS5_
|
|
62517
|
-
_ZN4node24base64_decode_group_slowIhEEbPcmPKT_mPmS5_
|
|
62518
|
-
_ZN4node24base64_decode_group_slowItEEbPcmPKT_mPmS5_
|
|
62519
62526
|
_ZN4node25AddEnvironmentCleanupHookEPN2v87IsolateEPFvPvES3_
|
|
62520
62527
|
_ZN4node25DefaultProcessExitHandlerEPNS_11EnvironmentEi
|
|
62521
62528
|
_ZN4node25ERR_CRYPTO_INVALID_DIGESTIJEEEN2v85LocalINS1_5ValueEEEPNS1_7IsolateEPKcDpOT_
|
|
@@ -62669,7 +62676,6 @@ _ZN4node28RemoveEnvironmentCleanupHookEPN2v87IsolateEPFvPvES3_
|
|
|
62669
62676
|
_ZN4node28SerializeSnapshotableObjectsEPNS_5RealmEPN2v815SnapshotCreatorEPNS_18RealmSerializeInfoE
|
|
62670
62677
|
_ZN4node29AsyncHooksGetExecutionAsyncIdEPN2v87IsolateE
|
|
62671
62678
|
_ZN4node29BuildSnapshotWithoutCodeCacheEPNS_12SnapshotDataERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EESC_St8optionalISt17basic_string_viewIcS6_EERKNS_14SnapshotConfigE
|
|
62672
|
-
_ZN4node29DebuggingArrayBufferAllocator10ReallocateEPvmm
|
|
62673
62679
|
_ZN4node29DebuggingArrayBufferAllocator15RegisterPointerEPvm
|
|
62674
62680
|
_ZN4node29DebuggingArrayBufferAllocator17UnregisterPointerEPvm
|
|
62675
62681
|
_ZN4node29DebuggingArrayBufferAllocator21AllocateUninitializedEm
|
|
@@ -62785,6 +62791,7 @@ _ZN4node2fs18FileHandleReadWrapD1Ev
|
|
|
62785
62791
|
_ZN4node2fs18FileHandleReadWrapD2Ev
|
|
62786
62792
|
_ZN4node2fs19AfterOpenFileHandleEP7uv_fs_s
|
|
62787
62793
|
_ZN4node2fs26RegisterExternalReferencesEPNS_25ExternalReferenceRegistryE
|
|
62794
|
+
_ZN4node2fs26fast_internal_module_stat_E
|
|
62788
62795
|
_ZN4node2fs5CloseERKN2v820FunctionCallbackInfoINS1_5ValueEEE
|
|
62789
62796
|
_ZN4node2fs6AccessERKN2v820FunctionCallbackInfoINS1_5ValueEEE
|
|
62790
62797
|
_ZN4node2fs9AfterStatEP7uv_fs_s
|
|
@@ -64997,8 +65004,6 @@ _ZN4node7FPrintFIJPKcS2_EEEvP4FILES2_DpOT_
|
|
|
64997
65004
|
_ZN4node7FPrintFIJPKcS2_mEEEvP4FILES2_DpOT_
|
|
64998
65005
|
_ZN4node7FPrintFIJPKcmEEEvP4FILES2_DpOT_
|
|
64999
65006
|
_ZN4node7FPrintFIJPKcmRmEEEvP4FILES2_DpOT_
|
|
65000
|
-
_ZN4node7FPrintFIJPKcmRmS2_EEEvP4FILES2_DpOT_
|
|
65001
|
-
_ZN4node7FPrintFIJPKcmmS2_EEEvP4FILES2_DpOT_
|
|
65002
65007
|
_ZN4node7FPrintFIJPN2v86ObjectENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEEvP4FILEPKcDpOT_
|
|
65003
65008
|
_ZN4node7FPrintFIJPN2v86ObjectERA16_KcEEEvP4FILEPS4_DpOT_
|
|
65004
65009
|
_ZN4node7FPrintFIJPN2v86ObjectERA17_KcEEEvP4FILEPS4_DpOT_
|
|
@@ -65029,6 +65034,7 @@ _ZN4node7FPrintFIJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcSA_EE
|
|
|
65029
65034
|
_ZN4node7FPrintFIJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERPKcEEEvP4FILESA_DpOT_
|
|
65030
65035
|
_ZN4node7FPrintFIJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS6_S9_EEEvP4FILEPKcDpOT_
|
|
65031
65036
|
_ZN4node7FPrintFIJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEEvP4FILEPKcDpOT_
|
|
65037
|
+
_ZN4node7FPrintFIJRKPKcEEEvP4FILES2_DpOT_
|
|
65032
65038
|
_ZN4node7FPrintFIJRKSt17basic_string_viewIcSt11char_traitsIcEEPKcmEEEvP4FILES8_DpOT_
|
|
65033
65039
|
_ZN4node7FPrintFIJRKhEEEvP4FILEPKcDpOT_
|
|
65034
65040
|
_ZN4node7FPrintFIJRKhRiEEEvP4FILEPKcDpOT_
|
|
@@ -65111,9 +65117,12 @@ _ZN4node7FPrintFIJlEEEvP4FILEPKcDpOT_
|
|
|
65111
65117
|
_ZN4node7FPrintFIJlRNS_4quic9QuicErrorEEEEvP4FILEPKcDpOT_
|
|
65112
65118
|
_ZN4node7FPrintFIJlRmEEEvP4FILEPKcDpOT_
|
|
65113
65119
|
_ZN4node7FPrintFIJmEEEvP4FILEPKcDpOT_
|
|
65114
|
-
|
|
65120
|
+
_ZN4node7FPrintFIJmPKcmRmS2_EEEvP4FILES2_DpOT_
|
|
65121
|
+
_ZN4node7FPrintFIJmPKcmmS2_EEEvP4FILES2_DpOT_
|
|
65122
|
+
_ZN4node7FPrintFIJmRKjEEEvP4FILEPKcDpOT_
|
|
65115
65123
|
_ZN4node7FPrintFIJmRiEEEvP4FILEPKcDpOT_
|
|
65116
65124
|
_ZN4node7FPrintFIJmmEEEvP4FILEPKcDpOT_
|
|
65125
|
+
_ZN4node7FPrintFIJmmPKcEEEvP4FILES2_DpOT_
|
|
65117
65126
|
_ZN4node7FPrintFIJmmmmEEEvP4FILEPKcDpOT_
|
|
65118
65127
|
_ZN4node7GetHashEPKcm
|
|
65119
65128
|
_ZN4node7KVStore14AssignToObjectEPN2v87IsolateENS1_5LocalINS1_7ContextEEENS4_INS1_6ObjectEEE
|
|
@@ -65148,8 +65157,6 @@ _ZN4node7SPrintFIJPKcS2_S2_EEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcE
|
|
|
65148
65157
|
_ZN4node7SPrintFIJPKcS2_mEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_DpOT_
|
|
65149
65158
|
_ZN4node7SPrintFIJPKcmEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_DpOT_
|
|
65150
65159
|
_ZN4node7SPrintFIJPKcmRmEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_DpOT_
|
|
65151
|
-
_ZN4node7SPrintFIJPKcmRmS2_EEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_DpOT_
|
|
65152
|
-
_ZN4node7SPrintFIJPKcmmS2_EEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_DpOT_
|
|
65153
65160
|
_ZN4node7SPrintFIJPN2v86ObjectENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES9_PKcDpOT_
|
|
65154
65161
|
_ZN4node7SPrintFIJPN2v86ObjectERA16_KcEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS4_DpOT_
|
|
65155
65162
|
_ZN4node7SPrintFIJPN2v86ObjectERA17_KcEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS4_DpOT_
|
|
@@ -65186,6 +65193,7 @@ _ZN4node7SPrintFIJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcSA_EE
|
|
|
65186
65193
|
_ZN4node7SPrintFIJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERPKcEEES6_SA_DpOT_
|
|
65187
65194
|
_ZN4node7SPrintFIJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS6_S9_EEES6_PKcDpOT_
|
|
65188
65195
|
_ZN4node7SPrintFIJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES6_PKcDpOT_
|
|
65196
|
+
_ZN4node7SPrintFIJRKPKcEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_DpOT_
|
|
65189
65197
|
_ZN4node7SPrintFIJRKSt17basic_string_viewIcSt11char_traitsIcEEPKcmEEENSt7__cxx1112basic_stringIcS3_SaIcEEES8_DpOT_
|
|
65190
65198
|
_ZN4node7SPrintFIJRKhEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcDpOT_
|
|
65191
65199
|
_ZN4node7SPrintFIJRKhRiEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcDpOT_
|
|
@@ -65273,9 +65281,12 @@ _ZN4node7SPrintFIJlEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcDpO
|
|
|
65273
65281
|
_ZN4node7SPrintFIJlRNS_4quic9QuicErrorEEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcDpOT_
|
|
65274
65282
|
_ZN4node7SPrintFIJlRmEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcDpOT_
|
|
65275
65283
|
_ZN4node7SPrintFIJmEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcDpOT_
|
|
65276
|
-
|
|
65284
|
+
_ZN4node7SPrintFIJmPKcmRmS2_EEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_DpOT_
|
|
65285
|
+
_ZN4node7SPrintFIJmPKcmmS2_EEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_DpOT_
|
|
65286
|
+
_ZN4node7SPrintFIJmRKjEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcDpOT_
|
|
65277
65287
|
_ZN4node7SPrintFIJmRiEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcDpOT_
|
|
65278
65288
|
_ZN4node7SPrintFIJmmEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcDpOT_
|
|
65289
|
+
_ZN4node7SPrintFIJmmPKcEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_DpOT_
|
|
65279
65290
|
_ZN4node7SPrintFIJmmmmEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcDpOT_
|
|
65280
65291
|
_ZN4node7TCPWrap10InitializeEN2v85LocalINS1_6ObjectEEENS2_INS1_5ValueEEENS2_INS1_7ContextEEEPv
|
|
65281
65292
|
_ZN4node7TCPWrap10SetNoDelayERKN2v820FunctionCallbackInfoINS1_5ValueEEE
|
|
@@ -73500,6 +73511,27 @@ _ZN6icu_759VTimeZoneD2Ev
|
|
|
73500
73511
|
_ZN6icu_759VTimeZoneaSERKS0_
|
|
73501
73512
|
_ZN6icu_75eqERKNS_11StringPieceES2_
|
|
73502
73513
|
_ZN6icu_75plERKNS_13UnicodeStringES2_
|
|
73514
|
+
_ZN6nbytes10ForceAsciiEPKcPcm
|
|
73515
|
+
_ZN6nbytes11SwapBytes16EPvm
|
|
73516
|
+
_ZN6nbytes11SwapBytes32EPvm
|
|
73517
|
+
_ZN6nbytes11SwapBytes64EPvm
|
|
73518
|
+
_ZN6nbytes11unhex_tableE
|
|
73519
|
+
_ZN6nbytes12SearchStringIhEEmPKT_mS3_mmb
|
|
73520
|
+
_ZN6nbytes12SearchStringItEEmPKT_mS3_mmb
|
|
73521
|
+
_ZN6nbytes12stringsearch12SearchStringIhEEmNS0_6VectorIKT_EES5_m
|
|
73522
|
+
_ZN6nbytes12stringsearch12SearchStringItEEmNS0_6VectorIKT_EES5_m
|
|
73523
|
+
_ZN6nbytes12stringsearch12StringSearchIhE23PopulateBoyerMooreTableEv
|
|
73524
|
+
_ZN6nbytes12stringsearch12StringSearchItE23PopulateBoyerMooreTableEv
|
|
73525
|
+
_ZN6nbytes14ForceAsciiSlowEPKcPcm
|
|
73526
|
+
_ZN6nbytes14unbase64_tableE
|
|
73527
|
+
_ZN6nbytes16Base64DecodeFastIcEEmPcmPKT_mm
|
|
73528
|
+
_ZN6nbytes16Base64DecodeFastIhEEmPcmPKT_mm
|
|
73529
|
+
_ZN6nbytes16Base64DecodeFastItEEmPcmPKT_mm
|
|
73530
|
+
_ZN6nbytes21Base64DecodeGroupSlowIcEEbPcmPKT_mPmS5_
|
|
73531
|
+
_ZN6nbytes21Base64DecodeGroupSlowIhEEbPcmPKT_mPmS5_
|
|
73532
|
+
_ZN6nbytes21Base64DecodeGroupSlowItEEbPcmPKT_mPmS5_
|
|
73533
|
+
_ZN6nbytes9HexEncodeB5cxx11EPKcm
|
|
73534
|
+
_ZN6nbytes9HexEncodeEPKcmPcm
|
|
73503
73535
|
_ZN6v8impl10RefTracker8FinalizeEv
|
|
73504
73536
|
_ZN6v8impl10RefTrackerD0Ev
|
|
73505
73537
|
_ZN6v8impl10RefTrackerD1Ev
|
|
@@ -78394,6 +78426,9 @@ _ZNK4node10permission14WASIPermission10is_grantedEPNS_11EnvironmentENS0_15Permis
|
|
|
78394
78426
|
_ZNK4node10permission16WorkerPermission10is_grantedEPNS_11EnvironmentENS0_15PermissionScopeERKSt17basic_string_viewIcSt11char_traitsIcEE
|
|
78395
78427
|
_ZNK4node10permission19InspectorPermission10is_grantedEPNS_11EnvironmentENS0_15PermissionScopeERKSt17basic_string_viewIcSt11char_traitsIcEE
|
|
78396
78428
|
_ZNK4node10permission22ChildProcessPermission10is_grantedEPNS_11EnvironmentENS0_15PermissionScopeERKSt17basic_string_viewIcSt11char_traitsIcEE
|
|
78429
|
+
_ZNK4node10webstorage7Storage10MemoryInfoEPNS_13MemoryTrackerE
|
|
78430
|
+
_ZNK4node10webstorage7Storage14MemoryInfoNameEv
|
|
78431
|
+
_ZNK4node10webstorage7Storage8SelfSizeEv
|
|
78397
78432
|
_ZNK4node11ConnectWrap10MemoryInfoEPNS_13MemoryTrackerE
|
|
78398
78433
|
_ZNK4node11ConnectWrap14MemoryInfoNameEv
|
|
78399
78434
|
_ZNK4node11ConnectWrap8SelfSizeEv
|
|
@@ -82908,7 +82943,6 @@ _ZNSt10_HashtableIPN6v8impl10RefTrackerES2_SaIS2_ENSt8__detail9_IdentityESt8equa
|
|
|
82908
82943
|
_ZNSt10_HashtableIPvS0_SaIS0_ENSt8__detail9_IdentityESt8equal_toIS0_ESt4hashIS0_ENS2_18_Mod_range_hashingENS2_20_Default_ranged_hashENS2_20_Prime_rehash_policyENS2_17_Hashtable_traitsILb0ELb1ELb1EEEE8_M_eraseEmPNS2_15_Hash_node_baseEPNS2_10_Hash_nodeIS0_Lb0EEE
|
|
82909
82944
|
_ZNSt10_HashtableIPvSt4pairIKS0_N4node15TimerWrapHandleEESaIS5_ENSt8__detail10_Select1stESt8equal_toIS0_ESt4hashIS0_ENS7_18_Mod_range_hashingENS7_20_Default_ranged_hashENS7_20_Prime_rehash_policyENS7_17_Hashtable_traitsILb0ELb0ELb1EEEE10_M_emplaceIJRKSt21piecewise_construct_tSt5tupleIJS0_EESN_IJPNS3_11EnvironmentEZNS3_9inspector19NodeInspectorClient19startRepeatingTimerEdPFvS0_ES0_EUlvE_EEEEES1_INS7_14_Node_iteratorIS5_Lb0ELb0EEEbESt17integral_constantIbLb1EEDpOT_
|
|
82910
82945
|
_ZNSt10_HashtableIPvSt4pairIKS0_St8weak_ptrIN12v8_inspector15AsyncStackTraceEEESaIS7_ENSt8__detail10_Select1stESt8equal_toIS0_ESt4hashIS0_ENS9_18_Mod_range_hashingENS9_20_Default_ranged_hashENS9_20_Prime_rehash_policyENS9_17_Hashtable_traitsILb0ELb0ELb1EEEE8_M_eraseEmPNS9_15_Hash_node_baseEPNS9_10_Hash_nodeIS7_Lb0EEE
|
|
82911
|
-
_ZNSt10_HashtableIPvSt4pairIKS0_mESaIS3_ENSt8__detail10_Select1stESt8equal_toIS0_ESt4hashIS0_ENS5_18_Mod_range_hashingENS5_20_Default_ranged_hashENS5_20_Prime_rehash_policyENS5_17_Hashtable_traitsILb0ELb0ELb1EEEE5eraseENS5_20_Node_const_iteratorIS3_Lb0ELb0EEE
|
|
82912
82946
|
_ZNSt10_HashtableISt17basic_string_viewIcSt11char_traitsIcEESt4pairIKS3_S3_ESaIS6_ENSt8__detail10_Select1stESt8equal_toIS3_ESt4hashIS3_ENS8_18_Mod_range_hashingENS8_20_Default_ranged_hashENS8_20_Prime_rehash_policyENS8_17_Hashtable_traitsILb1ELb0ELb1EEEEC1ERKSJ_
|
|
82913
82947
|
_ZNSt10_HashtableISt17basic_string_viewIcSt11char_traitsIcEESt4pairIKS3_S3_ESaIS6_ENSt8__detail10_Select1stESt8equal_toIS3_ESt4hashIS3_ENS8_18_Mod_range_hashingENS8_20_Default_ranged_hashENS8_20_Prime_rehash_policyENS8_17_Hashtable_traitsILb1ELb0ELb1EEEED1Ev
|
|
82914
82948
|
_ZNSt10_HashtableISt4pairImPN2v88internal6torque6SymbolEES0_IKS6_St3setIPKNS3_4ItemESt4lessISB_ESaISB_EEESaISG_ENSt8__detail10_Select1stESt8equal_toIS6_ENS1_4base4hashIS6_EENSI_18_Mod_range_hashingENSI_20_Default_ranged_hashENSI_20_Prime_rehash_policyENSI_17_Hashtable_traitsILb1ELb0ELb1EEEE9_M_rehashEmRKm
|
|
@@ -88770,6 +88804,7 @@ _ZTVN4node10permission14WASIPermissionE
|
|
|
88770
88804
|
_ZTVN4node10permission16WorkerPermissionE
|
|
88771
88805
|
_ZTVN4node10permission19InspectorPermissionE
|
|
88772
88806
|
_ZTVN4node10permission22ChildProcessPermissionE
|
|
88807
|
+
_ZTVN4node10webstorage7StorageE
|
|
88773
88808
|
_ZTVN4node11ConnectWrapE
|
|
88774
88809
|
_ZTVN4node11EnvironmentE
|
|
88775
88810
|
_ZTVN4node11IsolateDataE
|
|
@@ -90346,7 +90381,9 @@ _ZZN2v88internal28CFunctionBuilderWithFunctionINS_16CTypeInfoBuilderIbJEEEJNS2_I
|
|
|
90346
90381
|
_ZZN2v88internal28CFunctionBuilderWithFunctionINS_16CTypeInfoBuilderIdJEEEJNS2_INS_5LocalINS_5ValueEEEJEEEEE5BuildILNS_13CFunctionInfo19Int64RepresentationE0EEEDavE8instance
|
|
90347
90382
|
_ZZN2v88internal28CFunctionBuilderWithFunctionINS_16CTypeInfoBuilderIdJEEEJNS2_INS_5LocalINS_5ValueEEEJEEES3_EE5BuildILNS_13CFunctionInfo19Int64RepresentationE0EEEDavE8instance
|
|
90348
90383
|
_ZZN2v88internal28CFunctionBuilderWithFunctionINS_16CTypeInfoBuilderIdJEEEJNS2_INS_5LocalINS_6ObjectEEEJEEEEE5BuildILNS_13CFunctionInfo19Int64RepresentationE0EEEDavE8instance
|
|
90384
|
+
_ZZN2v88internal28CFunctionBuilderWithFunctionINS_16CTypeInfoBuilderIiJEEEJNS2_INS_5LocalINS_5ValueEEEJEEENS2_IRKNS_17FastApiTypedArrayIhEEJEEENS2_IjJEEENS2_IlJEEENS2_IbJEEEEE5BuildILNS_13CFunctionInfo19Int64RepresentationE0EEEDavE8instance
|
|
90349
90385
|
_ZZN2v88internal28CFunctionBuilderWithFunctionINS_16CTypeInfoBuilderIiJEEEJNS2_INS_5LocalINS_5ValueEEEJEEENS2_IRKNS_17FastApiTypedArrayIhEEJEEESC_EE5BuildILNS_13CFunctionInfo19Int64RepresentationE0EEEDavE8instance
|
|
90386
|
+
_ZZN2v88internal28CFunctionBuilderWithFunctionINS_16CTypeInfoBuilderIiJEEEJNS2_INS_5LocalINS_6ObjectEEEJEEENS2_IRKNS_17FastOneByteStringEJEEENS2_IRNS_22FastApiCallbackOptionsEJEEEEE5BuildILNS_13CFunctionInfo19Int64RepresentationE0EEEDavE8instance
|
|
90350
90387
|
_ZZN2v88internal28CFunctionBuilderWithFunctionINS_16CTypeInfoBuilderIjJEEEJNS2_INS_5LocalINS_5ValueEEEJEEENS2_IRKNS_17FastOneByteStringEJEEEEE5BuildILNS_13CFunctionInfo19Int64RepresentationE0EEEDavE8instance
|
|
90351
90388
|
_ZZN2v88internal28CFunctionBuilderWithFunctionINS_16CTypeInfoBuilderIjJEEEJNS2_INS_5LocalINS_5ValueEEEJEEES3_EE5BuildILNS_13CFunctionInfo19Int64RepresentationE0EEEDavE8instance
|
|
90352
90389
|
_ZZN2v88internal28CFunctionBuilderWithFunctionINS_16CTypeInfoBuilderIjJEEEJNS2_INS_5LocalINS_6ObjectEEEJEEENS2_IRNS_22FastApiCallbackOptionsEJEEEEE5BuildILNS_13CFunctionInfo19Int64RepresentationE0EEEDavE8instance
|
|
@@ -92936,6 +92973,8 @@ _ZZN4node11SPrintFImplIRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEJRS
|
|
|
92936
92973
|
_ZZN4node11SPrintFImplIRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEJRS6_S9_EEES6_PKcOT_DpOT0_E4args_0
|
|
92937
92974
|
_ZZN4node11SPrintFImplIRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEJS8_EEES6_PKcOT_DpOT0_E4args
|
|
92938
92975
|
_ZZN4node11SPrintFImplIRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEJS8_EEES6_PKcOT_DpOT0_E4args_0
|
|
92976
|
+
_ZZN4node11SPrintFImplIRKPKcJEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_OT_DpOT0_E4args
|
|
92977
|
+
_ZZN4node11SPrintFImplIRKPKcJEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_OT_DpOT0_E4args_1
|
|
92939
92978
|
_ZZN4node11SPrintFImplIRKSt17basic_string_viewIcSt11char_traitsIcEEJPKcmEEENSt7__cxx1112basic_stringIcS3_SaIcEEES8_OT_DpOT0_E4args
|
|
92940
92979
|
_ZZN4node11SPrintFImplIRKSt17basic_string_viewIcSt11char_traitsIcEEJPKcmEEENSt7__cxx1112basic_stringIcS3_SaIcEEES8_OT_DpOT0_E4args_0
|
|
92941
92980
|
_ZZN4node11SPrintFImplIRKhJEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcOT_DpOT0_E4args
|
|
@@ -93170,6 +93209,12 @@ _ZZN4node11SPrintFImplImJEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE
|
|
|
93170
93209
|
_ZZN4node11SPrintFImplImJEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcOT_DpOT0_E4args_0
|
|
93171
93210
|
_ZZN4node11SPrintFImplImJPKcEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_OT_DpOT0_E4args
|
|
93172
93211
|
_ZZN4node11SPrintFImplImJPKcEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_OT_DpOT0_E4args_0
|
|
93212
|
+
_ZZN4node11SPrintFImplImJPKcmRmS2_EEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_OT_DpOT0_E4args
|
|
93213
|
+
_ZZN4node11SPrintFImplImJPKcmRmS2_EEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_OT_DpOT0_E4args_0
|
|
93214
|
+
_ZZN4node11SPrintFImplImJPKcmmS2_EEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_OT_DpOT0_E4args
|
|
93215
|
+
_ZZN4node11SPrintFImplImJPKcmmS2_EEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_OT_DpOT0_E4args_0
|
|
93216
|
+
_ZZN4node11SPrintFImplImJRKjEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcOT_DpOT0_E4args
|
|
93217
|
+
_ZZN4node11SPrintFImplImJRKjEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcOT_DpOT0_E4args_0
|
|
93173
93218
|
_ZZN4node11SPrintFImplImJRiEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcOT_DpOT0_E4args
|
|
93174
93219
|
_ZZN4node11SPrintFImplImJRiEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcOT_DpOT0_E4args_0
|
|
93175
93220
|
_ZZN4node11SPrintFImplImJRmEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcOT_DpOT0_E4args
|
|
@@ -93184,23 +93229,8 @@ _ZZN4node11SPrintFImplImJmmEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcE
|
|
|
93184
93229
|
_ZZN4node11SPrintFImplImJmmEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcOT_DpOT0_E4args_0
|
|
93185
93230
|
_ZZN4node11SPrintFImplImJmmmEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcOT_DpOT0_E4args
|
|
93186
93231
|
_ZZN4node11SPrintFImplImJmmmEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcOT_DpOT0_E4args_0
|
|
93187
|
-
_ZZN4node11SwapBytes16EPcmE4args
|
|
93188
|
-
_ZZN4node11SwapBytes32EPcmE4args
|
|
93189
|
-
_ZZN4node11SwapBytes64EPcmE4args
|
|
93190
93232
|
_ZZN4node11performance27GetPerformanceMilestoneNameENS0_20PerformanceMilestoneEE4args
|
|
93191
93233
|
_ZZN4node12CleanupQueue3AddEPFvPvES1_E4args
|
|
93192
|
-
_ZZN4node12stringsearch12StringSearchIhE12LinearSearchENS0_6VectorIKhEEmE4args_0
|
|
93193
|
-
_ZZN4node12stringsearch12StringSearchIhE13InitialSearchENS0_6VectorIKhEEmE4args
|
|
93194
|
-
_ZZN4node12stringsearch12StringSearchIhEC4ENS0_6VectorIKhEEE4args
|
|
93195
|
-
_ZZN4node12stringsearch12StringSearchItE12LinearSearchENS0_6VectorIKtEEmE4args_0
|
|
93196
|
-
_ZZN4node12stringsearch12StringSearchItE13InitialSearchENS0_6VectorIKtEEmE4args
|
|
93197
|
-
_ZZN4node12stringsearch12StringSearchItEC4ENS0_6VectorIKtEEE4args
|
|
93198
|
-
_ZZN4node12stringsearch18FindFirstCharacterItEEmNS0_6VectorIKT_EES5_mE4args
|
|
93199
|
-
_ZZN4node12stringsearch18FindFirstCharacterItEEmNS0_6VectorIKT_EES5_mE4args_0
|
|
93200
|
-
_ZZN4node12stringsearch18FindFirstCharacterItEEmNS0_6VectorIKT_EES5_mE4args_1
|
|
93201
|
-
_ZZN4node12stringsearch18FindFirstCharacterItEEmNS0_6VectorIKT_EES5_mE4args_2
|
|
93202
|
-
_ZZN4node12stringsearch6VectorIKhEC4EPS2_mbE4args
|
|
93203
|
-
_ZZN4node12stringsearch6VectorIKtEC4EPS2_mbE4args
|
|
93204
93234
|
_ZZN4node13MemoryTracker24TrackInlineFieldWithSizeEPKcmS2_E4args
|
|
93205
93235
|
_ZZN4node13MemoryTracker5TrackEPKNS_14MemoryRetainerEPKcE4args
|
|
93206
93236
|
_ZZN4node13MemoryTracker5TrackEPKNS_14MemoryRetainerEPKcE4args_0
|
|
@@ -93275,7 +93305,6 @@ _ZZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm16EE25AllocateSufficientSt
|
|
|
93275
93305
|
_ZZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm16EEixEmE4args
|
|
93276
93306
|
_ZZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm256EE25AllocateSufficientStorageEmE4args
|
|
93277
93307
|
_ZZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm256EEixEmE4args
|
|
93278
|
-
_ZZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm32EE25AllocateSufficientStorageEmE4args
|
|
93279
93308
|
_ZZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm32EEixEmE4args
|
|
93280
93309
|
_ZZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm5EE25AllocateSufficientStorageEmE4args
|
|
93281
93310
|
_ZZN4node16MaybeStackBufferIN2v85LocalINS1_5ValueEEELm5EEixEmE4args
|
|
@@ -93424,8 +93453,8 @@ _ZZN4node24MakeLibuvRequestCallbackI16uv_getaddrinfo_sPFvPS1_iP8addrinfoEE3ForEP
|
|
|
93424
93453
|
_ZZN4node24MakeLibuvRequestCallbackI16uv_getnameinfo_sPFvPS1_iPKcS4_EE3ForEPNS_7ReqWrapIS1_EES6_E4args
|
|
93425
93454
|
_ZZN4node24MakeLibuvRequestCallbackI7uv_fs_sPFvPS1_EE3ForEPNS_7ReqWrapIS1_EES4_E4args
|
|
93426
93455
|
_ZZN4node25MultiplyWithOverflowCheckImEET_S1_S1_E4args
|
|
93427
|
-
|
|
93428
|
-
|
|
93456
|
+
_ZZN4node2fs10FileHandle5CloseEvE28trace_event_unique_atomic325
|
|
93457
|
+
_ZZN4node2fs10FileHandle5CloseEvE28trace_event_unique_atomic327
|
|
93429
93458
|
_ZZN4node2fs10FileHandle5CloseEvE4args
|
|
93430
93459
|
_ZZN4node2fs12FSReqPromiseINS_17AliasedBufferBaseIdN2v812Float64ArrayEEEED4EvE4args
|
|
93431
93460
|
_ZZN4node2fs12FSReqPromiseINS_17AliasedBufferBaseIlN2v813BigInt64ArrayEEEED4EvE4args
|
|
@@ -93689,11 +93718,11 @@ _ZZN4node7ReallocIcEEPT_S2_mE4args
|
|
|
93689
93718
|
_ZZN4node7ReallocIhEEPT_S2_mE4args
|
|
93690
93719
|
_ZZN4node7ReallocIjEEPT_S2_mE4args
|
|
93691
93720
|
_ZZN4node7ReallocItEEPT_S2_mE4args
|
|
93692
|
-
|
|
93721
|
+
_ZZN4node7TCPWrap7ConnectI11sockaddr_inEEvRKN2v820FunctionCallbackInfoINS3_5ValueEEESt8functionIFiPKcPT_EEE28trace_event_unique_atomic342
|
|
93693
93722
|
_ZZN4node7TCPWrap7ConnectI11sockaddr_inEEvRKN2v820FunctionCallbackInfoINS3_5ValueEEESt8functionIFiPKcPT_EEE4args
|
|
93694
93723
|
_ZZN4node7TCPWrap7ConnectI11sockaddr_inEEvRKN2v820FunctionCallbackInfoINS3_5ValueEEESt8functionIFiPKcPT_EEE4args_0
|
|
93695
93724
|
_ZZN4node7TCPWrap7ConnectI11sockaddr_inEEvRKN2v820FunctionCallbackInfoINS3_5ValueEEESt8functionIFiPKcPT_EEE4args_1
|
|
93696
|
-
|
|
93725
|
+
_ZZN4node7TCPWrap7ConnectI12sockaddr_in6EEvRKN2v820FunctionCallbackInfoINS3_5ValueEEESt8functionIFiPKcPT_EEE28trace_event_unique_atomic342
|
|
93697
93726
|
_ZZN4node7TCPWrap7ConnectI12sockaddr_in6EEvRKN2v820FunctionCallbackInfoINS3_5ValueEEESt8functionIFiPKcPT_EEE4args
|
|
93698
93727
|
_ZZN4node7TCPWrap7ConnectI12sockaddr_in6EEvRKN2v820FunctionCallbackInfoINS3_5ValueEEESt8functionIFiPKcPT_EEE4args_0
|
|
93699
93728
|
_ZZN4node7TCPWrap7ConnectI12sockaddr_in6EEvRKN2v820FunctionCallbackInfoINS3_5ValueEEESt8functionIFiPKcPT_EEE4args_1
|
|
@@ -93730,9 +93759,12 @@ _ZZN5cppgc8internal14StatsCollector13InternalScopeILNS1_13TraceCategoryE0ELNS1_1
|
|
|
93730
93759
|
_ZZN5cppgc8internal14StatsCollector13InternalScopeILNS1_13TraceCategoryE0ELNS1_12ScopeContextE0EE14StartTraceImplIdPKcEEvS8_T_S8_T0_E28trace_event_unique_atomic470
|
|
93731
93760
|
_ZZN5cppgc8internal14StatsCollector13InternalScopeILNS1_13TraceCategoryE0ELNS1_12ScopeContextE1EE13StopTraceImplEvE28trace_event_unique_atomic480
|
|
93732
93761
|
_ZZN5cppgc8internal14StatsCollector13InternalScopeILNS1_13TraceCategoryE0ELNS1_12ScopeContextE1EE14StartTraceImplEvE28trace_event_unique_atomic448
|
|
93762
|
+
_ZZN6nbytes12stringsearch6VectorIKhEC4EPS2_mbE4args
|
|
93763
|
+
_ZZN6nbytes12stringsearch6VectorIKtEC4EPS2_mbE4args
|
|
93733
93764
|
_ZZN8simdjson8internal13compute_floatINS0_13binary_formatIdEEEENS0_17adjusted_mantissaERNS0_7decimalEE6powers
|
|
93734
93765
|
_ZZN8simdjson8internal9dtoa_impl36get_cached_power_for_binary_exponentEiE13kCachedPowers
|
|
93735
93766
|
_ZZNK2v88internal8compiler26SimplifiedLoweringVerifier15InputTruncationEPNS1_4NodeEiE14any_truncation
|
|
93767
|
+
_ZZNK4node10webstorage12conn_deleterclEP7sqlite3E4args
|
|
93736
93768
|
_ZZNK4node14options_parser13OptionsParserINS_12DebugOptionsEE5ParseEPSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaISA_EESD_SD_PS2_NS_20OptionEnvvarSettingsESD_E4args
|
|
93737
93769
|
_ZZNK4node14options_parser13OptionsParserINS_17PerIsolateOptionsEE5ParseEPSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaISA_EESD_SD_PS2_NS_20OptionEnvvarSettingsESD_E4args
|
|
93738
93770
|
_ZZNK4node14options_parser13OptionsParserINS_17PerProcessOptionsEE5ParseEPSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaISA_EESD_SD_PS2_NS_20OptionEnvvarSettingsESD_E4args
|
|
@@ -93935,7 +93967,6 @@ ares__dns_name_parse
|
|
|
93935
93967
|
ares__dns_name_write
|
|
93936
93968
|
ares__dnsrec_convert_arg
|
|
93937
93969
|
ares__dnsrec_convert_cb
|
|
93938
|
-
ares__expand_name_for_response
|
|
93939
93970
|
ares__expand_name_validated
|
|
93940
93971
|
ares__free_query
|
|
93941
93972
|
ares__freeaddrinfo_cnames
|
|
@@ -94066,6 +94097,7 @@ ares__socket_recv
|
|
|
94066
94097
|
ares__socket_recvfrom
|
|
94067
94098
|
ares__socket_write
|
|
94068
94099
|
ares__sortaddrinfo
|
|
94100
|
+
ares__str_isprint
|
|
94069
94101
|
ares__str_ltrim
|
|
94070
94102
|
ares__str_rtrim
|
|
94071
94103
|
ares__str_trim
|
|
@@ -98801,6 +98833,278 @@ sha512_256_init
|
|
|
98801
98833
|
sha512_block_data_order
|
|
98802
98834
|
should_add_extension
|
|
98803
98835
|
shutdown_stream_sync
|
|
98836
|
+
sqlite3_aggregate_context
|
|
98837
|
+
sqlite3_aggregate_count
|
|
98838
|
+
sqlite3_auto_extension
|
|
98839
|
+
sqlite3_autovacuum_pages
|
|
98840
|
+
sqlite3_backup_finish
|
|
98841
|
+
sqlite3_backup_init
|
|
98842
|
+
sqlite3_backup_pagecount
|
|
98843
|
+
sqlite3_backup_remaining
|
|
98844
|
+
sqlite3_backup_step
|
|
98845
|
+
sqlite3_bind_blob
|
|
98846
|
+
sqlite3_bind_blob64
|
|
98847
|
+
sqlite3_bind_double
|
|
98848
|
+
sqlite3_bind_int
|
|
98849
|
+
sqlite3_bind_int64
|
|
98850
|
+
sqlite3_bind_null
|
|
98851
|
+
sqlite3_bind_parameter_count
|
|
98852
|
+
sqlite3_bind_parameter_index
|
|
98853
|
+
sqlite3_bind_parameter_name
|
|
98854
|
+
sqlite3_bind_pointer
|
|
98855
|
+
sqlite3_bind_text
|
|
98856
|
+
sqlite3_bind_text16
|
|
98857
|
+
sqlite3_bind_text64
|
|
98858
|
+
sqlite3_bind_value
|
|
98859
|
+
sqlite3_bind_zeroblob
|
|
98860
|
+
sqlite3_bind_zeroblob64
|
|
98861
|
+
sqlite3_blob_bytes
|
|
98862
|
+
sqlite3_blob_close
|
|
98863
|
+
sqlite3_blob_open
|
|
98864
|
+
sqlite3_blob_read
|
|
98865
|
+
sqlite3_blob_reopen
|
|
98866
|
+
sqlite3_blob_write
|
|
98867
|
+
sqlite3_busy_handler
|
|
98868
|
+
sqlite3_busy_timeout
|
|
98869
|
+
sqlite3_cancel_auto_extension
|
|
98870
|
+
sqlite3_changes
|
|
98871
|
+
sqlite3_changes64
|
|
98872
|
+
sqlite3_clear_bindings
|
|
98873
|
+
sqlite3_close
|
|
98874
|
+
sqlite3_close_v2
|
|
98875
|
+
sqlite3_collation_needed
|
|
98876
|
+
sqlite3_collation_needed16
|
|
98877
|
+
sqlite3_column_blob
|
|
98878
|
+
sqlite3_column_bytes
|
|
98879
|
+
sqlite3_column_bytes16
|
|
98880
|
+
sqlite3_column_count
|
|
98881
|
+
sqlite3_column_decltype
|
|
98882
|
+
sqlite3_column_decltype16
|
|
98883
|
+
sqlite3_column_double
|
|
98884
|
+
sqlite3_column_int
|
|
98885
|
+
sqlite3_column_int64
|
|
98886
|
+
sqlite3_column_name
|
|
98887
|
+
sqlite3_column_name16
|
|
98888
|
+
sqlite3_column_text
|
|
98889
|
+
sqlite3_column_text16
|
|
98890
|
+
sqlite3_column_type
|
|
98891
|
+
sqlite3_column_value
|
|
98892
|
+
sqlite3_commit_hook
|
|
98893
|
+
sqlite3_compileoption_get
|
|
98894
|
+
sqlite3_compileoption_used
|
|
98895
|
+
sqlite3_complete
|
|
98896
|
+
sqlite3_complete16
|
|
98897
|
+
sqlite3_config
|
|
98898
|
+
sqlite3_context_db_handle
|
|
98899
|
+
sqlite3_create_collation
|
|
98900
|
+
sqlite3_create_collation16
|
|
98901
|
+
sqlite3_create_collation_v2
|
|
98902
|
+
sqlite3_create_filename
|
|
98903
|
+
sqlite3_create_function
|
|
98904
|
+
sqlite3_create_function16
|
|
98905
|
+
sqlite3_create_function_v2
|
|
98906
|
+
sqlite3_create_module
|
|
98907
|
+
sqlite3_create_module_v2
|
|
98908
|
+
sqlite3_create_window_function
|
|
98909
|
+
sqlite3_data_count
|
|
98910
|
+
sqlite3_data_directory
|
|
98911
|
+
sqlite3_database_file_object
|
|
98912
|
+
sqlite3_db_cacheflush
|
|
98913
|
+
sqlite3_db_config
|
|
98914
|
+
sqlite3_db_filename
|
|
98915
|
+
sqlite3_db_handle
|
|
98916
|
+
sqlite3_db_mutex
|
|
98917
|
+
sqlite3_db_name
|
|
98918
|
+
sqlite3_db_readonly
|
|
98919
|
+
sqlite3_db_release_memory
|
|
98920
|
+
sqlite3_db_status
|
|
98921
|
+
sqlite3_declare_vtab
|
|
98922
|
+
sqlite3_deserialize
|
|
98923
|
+
sqlite3_drop_modules
|
|
98924
|
+
sqlite3_enable_load_extension
|
|
98925
|
+
sqlite3_enable_shared_cache
|
|
98926
|
+
sqlite3_errcode
|
|
98927
|
+
sqlite3_errmsg
|
|
98928
|
+
sqlite3_errmsg16
|
|
98929
|
+
sqlite3_error_offset
|
|
98930
|
+
sqlite3_errstr
|
|
98931
|
+
sqlite3_exec
|
|
98932
|
+
sqlite3_expanded_sql
|
|
98933
|
+
sqlite3_expired
|
|
98934
|
+
sqlite3_extended_errcode
|
|
98935
|
+
sqlite3_extended_result_codes
|
|
98936
|
+
sqlite3_file_control
|
|
98937
|
+
sqlite3_filename_database
|
|
98938
|
+
sqlite3_filename_journal
|
|
98939
|
+
sqlite3_filename_wal
|
|
98940
|
+
sqlite3_finalize
|
|
98941
|
+
sqlite3_free
|
|
98942
|
+
sqlite3_free_filename
|
|
98943
|
+
sqlite3_free_table
|
|
98944
|
+
sqlite3_get_autocommit
|
|
98945
|
+
sqlite3_get_auxdata
|
|
98946
|
+
sqlite3_get_clientdata
|
|
98947
|
+
sqlite3_get_table
|
|
98948
|
+
sqlite3_global_recover
|
|
98949
|
+
sqlite3_hard_heap_limit64
|
|
98950
|
+
sqlite3_initialize
|
|
98951
|
+
sqlite3_interrupt
|
|
98952
|
+
sqlite3_is_interrupted
|
|
98953
|
+
sqlite3_keyword_check
|
|
98954
|
+
sqlite3_keyword_count
|
|
98955
|
+
sqlite3_keyword_name
|
|
98956
|
+
sqlite3_last_insert_rowid
|
|
98957
|
+
sqlite3_libversion
|
|
98958
|
+
sqlite3_libversion_number
|
|
98959
|
+
sqlite3_limit
|
|
98960
|
+
sqlite3_load_extension
|
|
98961
|
+
sqlite3_log
|
|
98962
|
+
sqlite3_malloc
|
|
98963
|
+
sqlite3_malloc64
|
|
98964
|
+
sqlite3_memory_alarm
|
|
98965
|
+
sqlite3_memory_highwater
|
|
98966
|
+
sqlite3_memory_used
|
|
98967
|
+
sqlite3_mprintf
|
|
98968
|
+
sqlite3_msize
|
|
98969
|
+
sqlite3_mutex_alloc
|
|
98970
|
+
sqlite3_mutex_enter
|
|
98971
|
+
sqlite3_mutex_free
|
|
98972
|
+
sqlite3_mutex_leave
|
|
98973
|
+
sqlite3_mutex_try
|
|
98974
|
+
sqlite3_next_stmt
|
|
98975
|
+
sqlite3_open
|
|
98976
|
+
sqlite3_open16
|
|
98977
|
+
sqlite3_open_v2
|
|
98978
|
+
sqlite3_os_end
|
|
98979
|
+
sqlite3_os_init
|
|
98980
|
+
sqlite3_overload_function
|
|
98981
|
+
sqlite3_prepare
|
|
98982
|
+
sqlite3_prepare16
|
|
98983
|
+
sqlite3_prepare16_v2
|
|
98984
|
+
sqlite3_prepare16_v3
|
|
98985
|
+
sqlite3_prepare_v2
|
|
98986
|
+
sqlite3_prepare_v3
|
|
98987
|
+
sqlite3_profile
|
|
98988
|
+
sqlite3_progress_handler
|
|
98989
|
+
sqlite3_randomness
|
|
98990
|
+
sqlite3_realloc
|
|
98991
|
+
sqlite3_realloc64
|
|
98992
|
+
sqlite3_release_memory
|
|
98993
|
+
sqlite3_reset
|
|
98994
|
+
sqlite3_reset_auto_extension
|
|
98995
|
+
sqlite3_result_blob
|
|
98996
|
+
sqlite3_result_blob64
|
|
98997
|
+
sqlite3_result_double
|
|
98998
|
+
sqlite3_result_error
|
|
98999
|
+
sqlite3_result_error16
|
|
99000
|
+
sqlite3_result_error_code
|
|
99001
|
+
sqlite3_result_error_nomem
|
|
99002
|
+
sqlite3_result_error_toobig
|
|
99003
|
+
sqlite3_result_int
|
|
99004
|
+
sqlite3_result_int64
|
|
99005
|
+
sqlite3_result_null
|
|
99006
|
+
sqlite3_result_pointer
|
|
99007
|
+
sqlite3_result_subtype
|
|
99008
|
+
sqlite3_result_text
|
|
99009
|
+
sqlite3_result_text16
|
|
99010
|
+
sqlite3_result_text16be
|
|
99011
|
+
sqlite3_result_text16le
|
|
99012
|
+
sqlite3_result_text64
|
|
99013
|
+
sqlite3_result_value
|
|
99014
|
+
sqlite3_result_zeroblob
|
|
99015
|
+
sqlite3_result_zeroblob64
|
|
99016
|
+
sqlite3_rollback_hook
|
|
99017
|
+
sqlite3_serialize
|
|
99018
|
+
sqlite3_set_authorizer
|
|
99019
|
+
sqlite3_set_auxdata
|
|
99020
|
+
sqlite3_set_clientdata
|
|
99021
|
+
sqlite3_set_last_insert_rowid
|
|
99022
|
+
sqlite3_shutdown
|
|
99023
|
+
sqlite3_sleep
|
|
99024
|
+
sqlite3_snprintf
|
|
99025
|
+
sqlite3_soft_heap_limit
|
|
99026
|
+
sqlite3_soft_heap_limit64
|
|
99027
|
+
sqlite3_sourceid
|
|
99028
|
+
sqlite3_sql
|
|
99029
|
+
sqlite3_status
|
|
99030
|
+
sqlite3_status64
|
|
99031
|
+
sqlite3_step
|
|
99032
|
+
sqlite3_stmt_busy
|
|
99033
|
+
sqlite3_stmt_explain
|
|
99034
|
+
sqlite3_stmt_isexplain
|
|
99035
|
+
sqlite3_stmt_readonly
|
|
99036
|
+
sqlite3_stmt_status
|
|
99037
|
+
sqlite3_str_append
|
|
99038
|
+
sqlite3_str_appendall
|
|
99039
|
+
sqlite3_str_appendchar
|
|
99040
|
+
sqlite3_str_appendf
|
|
99041
|
+
sqlite3_str_errcode
|
|
99042
|
+
sqlite3_str_finish
|
|
99043
|
+
sqlite3_str_length
|
|
99044
|
+
sqlite3_str_new
|
|
99045
|
+
sqlite3_str_reset
|
|
99046
|
+
sqlite3_str_value
|
|
99047
|
+
sqlite3_str_vappendf
|
|
99048
|
+
sqlite3_strglob
|
|
99049
|
+
sqlite3_stricmp
|
|
99050
|
+
sqlite3_strlike
|
|
99051
|
+
sqlite3_strnicmp
|
|
99052
|
+
sqlite3_system_errno
|
|
99053
|
+
sqlite3_table_column_metadata
|
|
99054
|
+
sqlite3_temp_directory
|
|
99055
|
+
sqlite3_test_control
|
|
99056
|
+
sqlite3_thread_cleanup
|
|
99057
|
+
sqlite3_threadsafe
|
|
99058
|
+
sqlite3_total_changes
|
|
99059
|
+
sqlite3_total_changes64
|
|
99060
|
+
sqlite3_trace
|
|
99061
|
+
sqlite3_trace_v2
|
|
99062
|
+
sqlite3_transfer_bindings
|
|
99063
|
+
sqlite3_txn_state
|
|
99064
|
+
sqlite3_update_hook
|
|
99065
|
+
sqlite3_uri_boolean
|
|
99066
|
+
sqlite3_uri_int64
|
|
99067
|
+
sqlite3_uri_key
|
|
99068
|
+
sqlite3_uri_parameter
|
|
99069
|
+
sqlite3_user_data
|
|
99070
|
+
sqlite3_value_blob
|
|
99071
|
+
sqlite3_value_bytes
|
|
99072
|
+
sqlite3_value_bytes16
|
|
99073
|
+
sqlite3_value_double
|
|
99074
|
+
sqlite3_value_dup
|
|
99075
|
+
sqlite3_value_encoding
|
|
99076
|
+
sqlite3_value_free
|
|
99077
|
+
sqlite3_value_frombind
|
|
99078
|
+
sqlite3_value_int
|
|
99079
|
+
sqlite3_value_int64
|
|
99080
|
+
sqlite3_value_nochange
|
|
99081
|
+
sqlite3_value_numeric_type
|
|
99082
|
+
sqlite3_value_pointer
|
|
99083
|
+
sqlite3_value_subtype
|
|
99084
|
+
sqlite3_value_text
|
|
99085
|
+
sqlite3_value_text16
|
|
99086
|
+
sqlite3_value_text16be
|
|
99087
|
+
sqlite3_value_text16le
|
|
99088
|
+
sqlite3_value_type
|
|
99089
|
+
sqlite3_version
|
|
99090
|
+
sqlite3_vfs_find
|
|
99091
|
+
sqlite3_vfs_register
|
|
99092
|
+
sqlite3_vfs_unregister
|
|
99093
|
+
sqlite3_vmprintf
|
|
99094
|
+
sqlite3_vsnprintf
|
|
99095
|
+
sqlite3_vtab_collation
|
|
99096
|
+
sqlite3_vtab_config
|
|
99097
|
+
sqlite3_vtab_distinct
|
|
99098
|
+
sqlite3_vtab_in
|
|
99099
|
+
sqlite3_vtab_in_first
|
|
99100
|
+
sqlite3_vtab_in_next
|
|
99101
|
+
sqlite3_vtab_nochange
|
|
99102
|
+
sqlite3_vtab_on_conflict
|
|
99103
|
+
sqlite3_vtab_rhs_value
|
|
99104
|
+
sqlite3_wal_autocheckpoint
|
|
99105
|
+
sqlite3_wal_checkpoint
|
|
99106
|
+
sqlite3_wal_checkpoint_v2
|
|
99107
|
+
sqlite3_wal_hook
|
|
98804
99108
|
srp_generate_client_master_secret
|
|
98805
99109
|
srp_generate_server_master_secret
|
|
98806
99110
|
srp_verify_server_param
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
#define SRC_NODE_VERSION_H_
|
|
24
24
|
|
|
25
25
|
#define NODE_MAJOR_VERSION 22
|
|
26
|
-
#define NODE_MINOR_VERSION
|
|
27
|
-
#define NODE_PATCH_VERSION
|
|
26
|
+
#define NODE_MINOR_VERSION 4
|
|
27
|
+
#define NODE_PATCH_VERSION 1
|
|
28
28
|
|
|
29
29
|
#define NODE_VERSION_IS_LTS 0
|
|
30
30
|
#define NODE_VERSION_LTS_CODENAME ""
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
#define V8_MAJOR_VERSION 12
|
|
12
12
|
#define V8_MINOR_VERSION 4
|
|
13
13
|
#define V8_BUILD_NUMBER 254
|
|
14
|
-
#define V8_PATCH_LEVEL
|
|
14
|
+
#define V8_PATCH_LEVEL 21
|
|
15
15
|
|
|
16
16
|
// Use 1 for candidates and 0 otherwise.
|
|
17
17
|
// (Boolean macro values are not supported by all preprocessors.)
|
package/package.json
CHANGED
package/share/man/man1/node.1
CHANGED
|
@@ -203,6 +203,9 @@ Disable experimental support for the Fetch API.
|
|
|
203
203
|
.It Fl -no-experimental-websocket
|
|
204
204
|
Disable experimental support for the WebSocket API.
|
|
205
205
|
.
|
|
206
|
+
.It Fl -experimental-webstorage
|
|
207
|
+
Enable experimental support for the Web Storage API.
|
|
208
|
+
.
|
|
206
209
|
.It Fl -no-experimental-global-customevent
|
|
207
210
|
Disable exposition of the CustomEvent on the global scope.
|
|
208
211
|
.
|
|
@@ -322,6 +325,9 @@ other platforms, but the performance impact may be severe.
|
|
|
322
325
|
This flag is inherited from V8 and is subject to change upstream. It may
|
|
323
326
|
disappear in a non-semver-major release.
|
|
324
327
|
.
|
|
328
|
+
.It Fl -localstorage-file Ns = Ns Ar file
|
|
329
|
+
The file used to store localStorage data.
|
|
330
|
+
.
|
|
325
331
|
.It Fl -max-http-header-size Ns = Ns Ar size
|
|
326
332
|
Specify the maximum size of HTTP headers in bytes. Defaults to 16 KiB.
|
|
327
333
|
.
|
|
@@ -812,8 +818,3 @@ Documentation:
|
|
|
812
818
|
.Pp
|
|
813
819
|
GitHub repository and issue tracker:
|
|
814
820
|
.Sy https://github.com/nodejs/node
|
|
815
|
-
.
|
|
816
|
-
.Pp
|
|
817
|
-
IRC (general questions):
|
|
818
|
-
.Sy "libera.chat #node.js"
|
|
819
|
-
(unofficial)
|