node-aix-ppc64 21.0.0 → 21.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +124 -0
- package/LICENSE +21 -10
- package/README.md +4 -2
- package/bin/node +0 -0
- package/include/node/common.gypi +1 -1
- package/include/node/node.exp +166 -32
- package/include/node/node_version.h +1 -1
- package/include/node/v8-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="#21.1.0">21.1.0</a><br/>
|
|
11
12
|
<a href="#21.0.0">21.0.0</a><br/>
|
|
12
13
|
</td>
|
|
13
14
|
</tr>
|
|
@@ -36,6 +37,129 @@
|
|
|
36
37
|
* [io.js](CHANGELOG_IOJS.md)
|
|
37
38
|
* [Archive](CHANGELOG_ARCHIVE.md)
|
|
38
39
|
|
|
40
|
+
<a id="21.1.0"></a>
|
|
41
|
+
|
|
42
|
+
## 2023-10-24, Version 21.1.0 (Current), @targos
|
|
43
|
+
|
|
44
|
+
### Notable Changes
|
|
45
|
+
|
|
46
|
+
#### Automatically detect and run ESM syntax
|
|
47
|
+
|
|
48
|
+
The new flag `--experimental-detect-module` can be used to automatically run
|
|
49
|
+
ES modules when their syntax can be detected. For “ambiguous” files, which are
|
|
50
|
+
`.js` or extensionless files with no `package.json` with a `type` field, Node.js
|
|
51
|
+
will parse the file to detect ES module syntax; if found, it will run the file
|
|
52
|
+
as an ES module, otherwise it will run the file as a CommonJS module.
|
|
53
|
+
The same applies to string input via `--eval` or `STDIN`.
|
|
54
|
+
|
|
55
|
+
We hope to make detection enabled by default in a future version of Node.js.
|
|
56
|
+
Detection increases startup time, so we encourage everyone — especially package
|
|
57
|
+
authors — to add a `type` field to `package.json`, even for the default
|
|
58
|
+
`"type": "commonjs"`. The presence of a `type` field, or explicit extensions
|
|
59
|
+
such as `.mjs` or `.cjs`, will opt out of detection.
|
|
60
|
+
|
|
61
|
+
Contributed by Geoffrey Booth in [#50096](https://github.com/nodejs/node/pull/50096).
|
|
62
|
+
|
|
63
|
+
#### Other Notable Changes
|
|
64
|
+
|
|
65
|
+
* \[[`3729e33358`](https://github.com/nodejs/node/commit/3729e33358)] - **doc**: add H4ad to collaborators (Vinícius Lourenço) [#50217](https://github.com/nodejs/node/pull/50217)
|
|
66
|
+
* \[[`18862e4d5d`](https://github.com/nodejs/node/commit/18862e4d5d)] - **(SEMVER-MINOR)** **fs**: add `flush` option to `appendFile()` functions (Colin Ihrig) [#50095](https://github.com/nodejs/node/pull/50095)
|
|
67
|
+
* \[[`5a52c518ef`](https://github.com/nodejs/node/commit/5a52c518ef)] - **(SEMVER-MINOR)** **lib**: add `navigator.userAgent` (Yagiz Nizipli) [#50200](https://github.com/nodejs/node/pull/50200)
|
|
68
|
+
* \[[`789372a072`](https://github.com/nodejs/node/commit/789372a072)] - **(SEMVER-MINOR)** **stream**: allow pass stream class to `stream.compose` (Alex Yang) [#50187](https://github.com/nodejs/node/pull/50187)
|
|
69
|
+
* \[[`f3a9ea0bc4`](https://github.com/nodejs/node/commit/f3a9ea0bc4)] - **stream**: improve performance of readable stream reads (Raz Luvaton) [#50173](https://github.com/nodejs/node/pull/50173)
|
|
70
|
+
* \[[`dda33c2bf1`](https://github.com/nodejs/node/commit/dda33c2bf1)] - **vm**: reject in importModuleDynamically without --experimental-vm-modules (Joyee Cheung) [#50137](https://github.com/nodejs/node/pull/50137)
|
|
71
|
+
* \[[`3999362c59`](https://github.com/nodejs/node/commit/3999362c59)] - **vm**: use internal versions of compileFunction and Script (Joyee Cheung) [#50137](https://github.com/nodejs/node/pull/50137)
|
|
72
|
+
* \[[`a54179f0e0`](https://github.com/nodejs/node/commit/a54179f0e0)] - **vm**: unify host-defined option generation in vm.compileFunction (Joyee Cheung) [#50137](https://github.com/nodejs/node/pull/50137)
|
|
73
|
+
|
|
74
|
+
### Commits
|
|
75
|
+
|
|
76
|
+
* \[[`9cd68b9083`](https://github.com/nodejs/node/commit/9cd68b9083)] - **buffer**: remove unnecessary assignment in fromString (Tobias Nießen) [#50199](https://github.com/nodejs/node/pull/50199)
|
|
77
|
+
* \[[`a362c276ec`](https://github.com/nodejs/node/commit/a362c276ec)] - **crypto**: ensure valid point on elliptic curve in SubtleCrypto.importKey (Filip Skokan) [#50234](https://github.com/nodejs/node/pull/50234)
|
|
78
|
+
* \[[`f4da308f8d`](https://github.com/nodejs/node/commit/f4da308f8d)] - **deps**: V8: cherry-pick f7d000a7ae7b (Luke Albao) [#50302](https://github.com/nodejs/node/pull/50302)
|
|
79
|
+
* \[[`269e268c38`](https://github.com/nodejs/node/commit/269e268c38)] - **deps**: update ada to 2.7.2 (Node.js GitHub Bot) [#50338](https://github.com/nodejs/node/pull/50338)
|
|
80
|
+
* \[[`03a31ce41e`](https://github.com/nodejs/node/commit/03a31ce41e)] - **deps**: update corepack to 0.22.0 (Node.js GitHub Bot) [#50325](https://github.com/nodejs/node/pull/50325)
|
|
81
|
+
* \[[`000531781b`](https://github.com/nodejs/node/commit/000531781b)] - **deps**: update undici to 5.26.4 (Node.js GitHub Bot) [#50274](https://github.com/nodejs/node/pull/50274)
|
|
82
|
+
* \[[`f050668c14`](https://github.com/nodejs/node/commit/f050668c14)] - **deps**: update c-ares to 1.20.1 (Node.js GitHub Bot) [#50082](https://github.com/nodejs/node/pull/50082)
|
|
83
|
+
* \[[`ba258b682b`](https://github.com/nodejs/node/commit/ba258b682b)] - **deps**: update c-ares to 1.20.0 (Node.js GitHub Bot) [#50082](https://github.com/nodejs/node/pull/50082)
|
|
84
|
+
* \[[`571f7ef1fa`](https://github.com/nodejs/node/commit/571f7ef1fa)] - **deps**: patch V8 to 11.8.172.15 (Michaël Zasso) [#50114](https://github.com/nodejs/node/pull/50114)
|
|
85
|
+
* \[[`943047e800`](https://github.com/nodejs/node/commit/943047e800)] - **deps**: V8: cherry-pick 25902244ad1a (Joyee Cheung) [#50156](https://github.com/nodejs/node/pull/50156)
|
|
86
|
+
* \[[`db2a1cf1cb`](https://github.com/nodejs/node/commit/db2a1cf1cb)] - **doc**: fix `navigator.hardwareConcurrency` example (Tobias Nießen) [#50278](https://github.com/nodejs/node/pull/50278)
|
|
87
|
+
* \[[`6e537aeb44`](https://github.com/nodejs/node/commit/6e537aeb44)] - **doc**: explain how to disable navigator (Geoffrey Booth) [#50310](https://github.com/nodejs/node/pull/50310)
|
|
88
|
+
* \[[`c40de82d62`](https://github.com/nodejs/node/commit/c40de82d62)] - **doc**: add loong64 info into platform list (Shi Pujin) [#50086](https://github.com/nodejs/node/pull/50086)
|
|
89
|
+
* \[[`1c21a1880b`](https://github.com/nodejs/node/commit/1c21a1880b)] - **doc**: update release process LTS step (Richard Lau) [#50299](https://github.com/nodejs/node/pull/50299)
|
|
90
|
+
* \[[`2473aa3672`](https://github.com/nodejs/node/commit/2473aa3672)] - **doc**: fix release process table of contents (Richard Lau) [#50216](https://github.com/nodejs/node/pull/50216)
|
|
91
|
+
* \[[`ce9d84eae3`](https://github.com/nodejs/node/commit/ce9d84eae3)] - **doc**: update api `stream.compose` (Alex Yang) [#50206](https://github.com/nodejs/node/pull/50206)
|
|
92
|
+
* \[[`dacee4d9b5`](https://github.com/nodejs/node/commit/dacee4d9b5)] - **doc**: add ReflectConstruct to known perf issues (Vinicius Lourenço) [#50111](https://github.com/nodejs/node/pull/50111)
|
|
93
|
+
* \[[`82363be2ac`](https://github.com/nodejs/node/commit/82363be2ac)] - **doc**: fix typo in dgram docs (Peter Johnson) [#50211](https://github.com/nodejs/node/pull/50211)
|
|
94
|
+
* \[[`8c1a46c751`](https://github.com/nodejs/node/commit/8c1a46c751)] - **doc**: fix H4ad collaborator sort (Vinicius Lourenço) [#50218](https://github.com/nodejs/node/pull/50218)
|
|
95
|
+
* \[[`3729e33358`](https://github.com/nodejs/node/commit/3729e33358)] - **doc**: add H4ad to collaborators (Vinícius Lourenço) [#50217](https://github.com/nodejs/node/pull/50217)
|
|
96
|
+
* \[[`bac872cbd0`](https://github.com/nodejs/node/commit/bac872cbd0)] - **doc**: update release-stewards with last sec-release (Rafael Gonzaga) [#50179](https://github.com/nodejs/node/pull/50179)
|
|
97
|
+
* \[[`06b7724f14`](https://github.com/nodejs/node/commit/06b7724f14)] - **doc**: add command to keep major branch sync (Rafael Gonzaga) [#50102](https://github.com/nodejs/node/pull/50102)
|
|
98
|
+
* \[[`47633ab086`](https://github.com/nodejs/node/commit/47633ab086)] - **doc**: add loong64 to list of architectures (Shi Pujin) [#50172](https://github.com/nodejs/node/pull/50172)
|
|
99
|
+
* \[[`1f40ca1b91`](https://github.com/nodejs/node/commit/1f40ca1b91)] - **doc**: update security release process (Michael Dawson) [#50166](https://github.com/nodejs/node/pull/50166)
|
|
100
|
+
* \[[`998feda118`](https://github.com/nodejs/node/commit/998feda118)] - **esm**: do not give wrong hints when detecting file format (Antoine du Hamel) [#50314](https://github.com/nodejs/node/pull/50314)
|
|
101
|
+
* \[[`e375063e01`](https://github.com/nodejs/node/commit/e375063e01)] - **(SEMVER-MINOR)** **esm**: detect ESM syntax in ambiguous JavaScript (Geoffrey Booth) [#50096](https://github.com/nodejs/node/pull/50096)
|
|
102
|
+
* \[[`c76eb27971`](https://github.com/nodejs/node/commit/c76eb27971)] - **esm**: improve check for ESM syntax (Geoffrey Booth) [#50127](https://github.com/nodejs/node/pull/50127)
|
|
103
|
+
* \[[`7740bf820c`](https://github.com/nodejs/node/commit/7740bf820c)] - **esm**: rename error code related to import attributes (Antoine du Hamel) [#50181](https://github.com/nodejs/node/pull/50181)
|
|
104
|
+
* \[[`0cc176ef25`](https://github.com/nodejs/node/commit/0cc176ef25)] - **fs**: improve error performance for `readSync` (Jungku Lee) [#50033](https://github.com/nodejs/node/pull/50033)
|
|
105
|
+
* \[[`5942edb774`](https://github.com/nodejs/node/commit/5942edb774)] - **fs**: improve error performance for `fsyncSync` (Jungku Lee) [#49880](https://github.com/nodejs/node/pull/49880)
|
|
106
|
+
* \[[`6ec5abadc0`](https://github.com/nodejs/node/commit/6ec5abadc0)] - **fs**: improve error performance for `mkdirSync` (CanadaHonk) [#49847](https://github.com/nodejs/node/pull/49847)
|
|
107
|
+
* \[[`c5ff000cb1`](https://github.com/nodejs/node/commit/c5ff000cb1)] - **fs**: improve error performance of `realpathSync` (Yagiz Nizipli) [#49962](https://github.com/nodejs/node/pull/49962)
|
|
108
|
+
* \[[`6eeaa02f5c`](https://github.com/nodejs/node/commit/6eeaa02f5c)] - **fs**: improve error performance of `lchownSync` (Yagiz Nizipli) [#49962](https://github.com/nodejs/node/pull/49962)
|
|
109
|
+
* \[[`dc9ac8d41c`](https://github.com/nodejs/node/commit/dc9ac8d41c)] - **fs**: improve error performance of `symlinkSync` (Yagiz Nizipli) [#49962](https://github.com/nodejs/node/pull/49962)
|
|
110
|
+
* \[[`bc6f279261`](https://github.com/nodejs/node/commit/bc6f279261)] - **fs**: improve error performance of `readlinkSync` (Yagiz Nizipli) [#49962](https://github.com/nodejs/node/pull/49962)
|
|
111
|
+
* \[[`275987841e`](https://github.com/nodejs/node/commit/275987841e)] - **fs**: improve error performance of `mkdtempSync` (Yagiz Nizipli) [#49962](https://github.com/nodejs/node/pull/49962)
|
|
112
|
+
* \[[`81f15274e2`](https://github.com/nodejs/node/commit/81f15274e2)] - **fs**: improve error performance of `linkSync` (Yagiz Nizipli) [#49962](https://github.com/nodejs/node/pull/49962)
|
|
113
|
+
* \[[`f766c04856`](https://github.com/nodejs/node/commit/f766c04856)] - **fs**: improve error performance of `chownSync` (Yagiz Nizipli) [#49962](https://github.com/nodejs/node/pull/49962)
|
|
114
|
+
* \[[`610036c67d`](https://github.com/nodejs/node/commit/610036c67d)] - **fs**: improve error performance of `renameSync` (Yagiz Nizipli) [#49962](https://github.com/nodejs/node/pull/49962)
|
|
115
|
+
* \[[`18862e4d5d`](https://github.com/nodejs/node/commit/18862e4d5d)] - **(SEMVER-MINOR)** **fs**: add flush option to appendFile() functions (Colin Ihrig) [#50095](https://github.com/nodejs/node/pull/50095)
|
|
116
|
+
* \[[`3f8cbb15cb`](https://github.com/nodejs/node/commit/3f8cbb15cb)] - **http2**: allow streams to complete gracefully after goaway (Michael Lumish) [#50202](https://github.com/nodejs/node/pull/50202)
|
|
117
|
+
* \[[`1464eba1a0`](https://github.com/nodejs/node/commit/1464eba1a0)] - **lib**: improve performance of validateStringArray and validateBooleanArray (Aras Abbasi) [#49756](https://github.com/nodejs/node/pull/49756)
|
|
118
|
+
* \[[`5a52c518ef`](https://github.com/nodejs/node/commit/5a52c518ef)] - **(SEMVER-MINOR)** **lib**: add `navigator.userAgent` (Yagiz Nizipli) [#50200](https://github.com/nodejs/node/pull/50200)
|
|
119
|
+
* \[[`b6021ab8f6`](https://github.com/nodejs/node/commit/b6021ab8f6)] - **lib**: reduce overhead of blob clone (Vinicius Lourenço) [#50110](https://github.com/nodejs/node/pull/50110)
|
|
120
|
+
* \[[`be19d9baa1`](https://github.com/nodejs/node/commit/be19d9baa1)] - **meta**: move Trott to TSC regular member (Rich Trott) [#50297](https://github.com/nodejs/node/pull/50297)
|
|
121
|
+
* \[[`91e373f8e9`](https://github.com/nodejs/node/commit/91e373f8e9)] - **node-api**: return napi\_exception\_pending on proxy handlers (Chengzhong Wu) [#48607](https://github.com/nodejs/node/pull/48607)
|
|
122
|
+
* \[[`531a3ae4b5`](https://github.com/nodejs/node/commit/531a3ae4b5)] - **stream**: simplify prefinish (Robert Nagy) [#50204](https://github.com/nodejs/node/pull/50204)
|
|
123
|
+
* \[[`514ac86579`](https://github.com/nodejs/node/commit/514ac86579)] - **stream**: reduce scope of readable bitmap details (Robert Nagy) [#49963](https://github.com/nodejs/node/pull/49963)
|
|
124
|
+
* \[[`789372a072`](https://github.com/nodejs/node/commit/789372a072)] - **(SEMVER-MINOR)** **stream**: allow pass stream class to `stream.compose` (Alex Yang) [#50187](https://github.com/nodejs/node/pull/50187)
|
|
125
|
+
* \[[`f3a9ea0bc4`](https://github.com/nodejs/node/commit/f3a9ea0bc4)] - **stream**: call helper function from push and unshift (Raz Luvaton) [#50173](https://github.com/nodejs/node/pull/50173)
|
|
126
|
+
* \[[`a9ca7b32e7`](https://github.com/nodejs/node/commit/a9ca7b32e7)] - **test**: improve watch mode test (Moshe Atlow) [#50319](https://github.com/nodejs/node/pull/50319)
|
|
127
|
+
* \[[`63b7059efd`](https://github.com/nodejs/node/commit/63b7059efd)] - **test**: set `test-watch-mode-inspect` as flaky (Yagiz Nizipli) [#50259](https://github.com/nodejs/node/pull/50259)
|
|
128
|
+
* \[[`7f87084b05`](https://github.com/nodejs/node/commit/7f87084b05)] - _**Revert**_ "**test**: set `test-esm-loader-resolve-type` as flaky" (Antoine du Hamel) [#50315](https://github.com/nodejs/node/pull/50315)
|
|
129
|
+
* \[[`4d390e2de4`](https://github.com/nodejs/node/commit/4d390e2de4)] - **test**: replace forEach with for..of in test-http-perf\_hooks.js (Niya Shiyas) [#49818](https://github.com/nodejs/node/pull/49818)
|
|
130
|
+
* \[[`67c599ec39`](https://github.com/nodejs/node/commit/67c599ec39)] - **test**: replace forEach with for..of in test-net-isipv4.js (Niya Shiyas) [#49822](https://github.com/nodejs/node/pull/49822)
|
|
131
|
+
* \[[`19d3ce2494`](https://github.com/nodejs/node/commit/19d3ce2494)] - **test**: deflake `test-esm-loader-resolve-type` (Antoine du Hamel) [#50273](https://github.com/nodejs/node/pull/50273)
|
|
132
|
+
* \[[`2d8d6c5701`](https://github.com/nodejs/node/commit/2d8d6c5701)] - **test**: replace forEach with for..of in test-http2-server (Niya Shiyas) [#49819](https://github.com/nodejs/node/pull/49819)
|
|
133
|
+
* \[[`af31d51e5a`](https://github.com/nodejs/node/commit/af31d51e5a)] - **test**: replace forEach with for..of in test-http2-client-destroy.js (Niya Shiyas) [#49820](https://github.com/nodejs/node/pull/49820)
|
|
134
|
+
* \[[`465ad2a5ce`](https://github.com/nodejs/node/commit/465ad2a5ce)] - **test**: update `url` web platform tests (Yagiz Nizipli) [#50264](https://github.com/nodejs/node/pull/50264)
|
|
135
|
+
* \[[`3b80a6894c`](https://github.com/nodejs/node/commit/3b80a6894c)] - **test**: set `test-emit-after-on-destroyed` as flaky (Yagiz Nizipli) [#50246](https://github.com/nodejs/node/pull/50246)
|
|
136
|
+
* \[[`57adbdd156`](https://github.com/nodejs/node/commit/57adbdd156)] - **test**: set inspector async stack test as flaky (Yagiz Nizipli) [#50244](https://github.com/nodejs/node/pull/50244)
|
|
137
|
+
* \[[`6507f66404`](https://github.com/nodejs/node/commit/6507f66404)] - **test**: set test-worker-nearheaplimit-deadlock flaky (StefanStojanovic) [#50277](https://github.com/nodejs/node/pull/50277)
|
|
138
|
+
* \[[`21a6ba548d`](https://github.com/nodejs/node/commit/21a6ba548d)] - **test**: set `test-cli-node-options` as flaky (Yagiz Nizipli) [#50296](https://github.com/nodejs/node/pull/50296)
|
|
139
|
+
* \[[`c55f8f30cb`](https://github.com/nodejs/node/commit/c55f8f30cb)] - **test**: reduce the number of requests and parsers (Luigi Pinca) [#50240](https://github.com/nodejs/node/pull/50240)
|
|
140
|
+
* \[[`5129bedfa2`](https://github.com/nodejs/node/commit/5129bedfa2)] - **test**: set crypto-timing test as flaky (Yagiz Nizipli) [#50232](https://github.com/nodejs/node/pull/50232)
|
|
141
|
+
* \[[`9bc5ab5e07`](https://github.com/nodejs/node/commit/9bc5ab5e07)] - **test**: set `test-structuredclone-*` as flaky (Yagiz Nizipli) [#50261](https://github.com/nodejs/node/pull/50261)
|
|
142
|
+
* \[[`317e447ddc`](https://github.com/nodejs/node/commit/317e447ddc)] - **test**: deflake `test-loaders-workers-spawned` (Antoine du Hamel) [#50251](https://github.com/nodejs/node/pull/50251)
|
|
143
|
+
* \[[`0c710daae2`](https://github.com/nodejs/node/commit/0c710daae2)] - **test**: improve code coverage of diagnostics\_channel (Jithil P Ponnan) [#50053](https://github.com/nodejs/node/pull/50053)
|
|
144
|
+
* \[[`7c6e4d7ec3`](https://github.com/nodejs/node/commit/7c6e4d7ec3)] - **test**: set `test-esm-loader-resolve-type` as flaky (Yagiz Nizipli) [#50226](https://github.com/nodejs/node/pull/50226)
|
|
145
|
+
* \[[`c8744909b0`](https://github.com/nodejs/node/commit/c8744909b0)] - **test**: set inspector async hook test as flaky (Yagiz Nizipli) [#50252](https://github.com/nodejs/node/pull/50252)
|
|
146
|
+
* \[[`3e38001739`](https://github.com/nodejs/node/commit/3e38001739)] - **test**: skip test-benchmark-os.js on IBM i (Abdirahim Musse) [#50208](https://github.com/nodejs/node/pull/50208)
|
|
147
|
+
* \[[`dd66fdfb7b`](https://github.com/nodejs/node/commit/dd66fdfb7b)] - **test**: set parallel http server test as flaky (Yagiz Nizipli) [#50227](https://github.com/nodejs/node/pull/50227)
|
|
148
|
+
* \[[`a38d1311bf`](https://github.com/nodejs/node/commit/a38d1311bf)] - **test**: set test-worker-nearheaplimit-deadlock flaky (Stefan Stojanovic) [#50238](https://github.com/nodejs/node/pull/50238)
|
|
149
|
+
* \[[`8efb75fd80`](https://github.com/nodejs/node/commit/8efb75fd80)] - **test**: set `test-runner-watch-mode` as flaky (Yagiz Nizipli) [#50221](https://github.com/nodejs/node/pull/50221)
|
|
150
|
+
* \[[`143ddded74`](https://github.com/nodejs/node/commit/143ddded74)] - **test**: set sea snapshot tests as flaky (Yagiz Nizipli) [#50223](https://github.com/nodejs/node/pull/50223)
|
|
151
|
+
* \[[`ae905a8f35`](https://github.com/nodejs/node/commit/ae905a8f35)] - **test**: fix defect path traversal tests (Tobias Nießen) [#50124](https://github.com/nodejs/node/pull/50124)
|
|
152
|
+
* \[[`ce27ee701b`](https://github.com/nodejs/node/commit/ce27ee701b)] - **tls**: reduce TLS 'close' event listener warnings (Tim Perry) [#50136](https://github.com/nodejs/node/pull/50136)
|
|
153
|
+
* \[[`ab4bae8e1f`](https://github.com/nodejs/node/commit/ab4bae8e1f)] - **tools**: drop support for osx notarization with gon (Ulises Gascón) [#50291](https://github.com/nodejs/node/pull/50291)
|
|
154
|
+
* \[[`5df3d5abcc`](https://github.com/nodejs/node/commit/5df3d5abcc)] - **tools**: update comment in `update-uncidi.sh` and `acorn_version.h` (Jungku Lee) [#50175](https://github.com/nodejs/node/pull/50175)
|
|
155
|
+
* \[[`bf7b94f0b3`](https://github.com/nodejs/node/commit/bf7b94f0b3)] - **tools**: refactor checkimports.py (Mohammed Keyvanzadeh) [#50011](https://github.com/nodejs/node/pull/50011)
|
|
156
|
+
* \[[`5dc454a837`](https://github.com/nodejs/node/commit/5dc454a837)] - **util**: remove internal mime fns from benchmarks (Aras Abbasi) [#50201](https://github.com/nodejs/node/pull/50201)
|
|
157
|
+
* \[[`8f7eb15603`](https://github.com/nodejs/node/commit/8f7eb15603)] - **vm**: use import attributes instead of import assertions (Antoine du Hamel) [#50141](https://github.com/nodejs/node/pull/50141)
|
|
158
|
+
* \[[`dda33c2bf1`](https://github.com/nodejs/node/commit/dda33c2bf1)] - **vm**: reject in importModuleDynamically without --experimental-vm-modules (Joyee Cheung) [#50137](https://github.com/nodejs/node/pull/50137)
|
|
159
|
+
* \[[`3999362c59`](https://github.com/nodejs/node/commit/3999362c59)] - **vm**: use internal versions of compileFunction and Script (Joyee Cheung) [#50137](https://github.com/nodejs/node/pull/50137)
|
|
160
|
+
* \[[`a54179f0e0`](https://github.com/nodejs/node/commit/a54179f0e0)] - **vm**: unify host-defined option generation in vm.compileFunction (Joyee Cheung) [#50137](https://github.com/nodejs/node/pull/50137)
|
|
161
|
+
* \[[`87be790fa9`](https://github.com/nodejs/node/commit/87be790fa9)] - **worker**: handle detached `MessagePort` from a different context (Juan José) [#49150](https://github.com/nodejs/node/pull/49150)
|
|
162
|
+
|
|
39
163
|
<a id="21.0.0"></a>
|
|
40
164
|
|
|
41
165
|
## 2023-10-17, Version 21.0.0 (Current), @RafaelGSS and @targos
|
package/LICENSE
CHANGED
|
@@ -78,19 +78,30 @@ The externally maintained libraries used by Node.js are:
|
|
|
78
78
|
|
|
79
79
|
- c-ares, located at deps/cares, is licensed as follows:
|
|
80
80
|
"""
|
|
81
|
-
|
|
81
|
+
MIT License
|
|
82
|
+
|
|
83
|
+
Copyright (c) 1998 Massachusetts Institute of Technology
|
|
84
|
+
Copyright (c) 2007 - 2023 Daniel Stenberg with many contributors, see AUTHORS
|
|
82
85
|
file.
|
|
83
86
|
|
|
84
|
-
|
|
87
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
88
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
89
|
+
the Software without restriction, including without limitation the rights to
|
|
90
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
91
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
92
|
+
subject to the following conditions:
|
|
93
|
+
|
|
94
|
+
The above copyright notice and this permission notice (including the next
|
|
95
|
+
paragraph) shall be included in all copies or substantial portions of the
|
|
96
|
+
Software.
|
|
85
97
|
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
purpose. It is provided "as is" without express or implied warranty.
|
|
98
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
99
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
100
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
101
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
102
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
103
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
104
|
+
SOFTWARE.
|
|
94
105
|
"""
|
|
95
106
|
|
|
96
107
|
- cjs-module-lexer, located at deps/cjs-module-lexer, is licensed as follows:
|
package/README.md
CHANGED
|
@@ -204,8 +204,6 @@ For information about the governance of the Node.js project, see
|
|
|
204
204
|
**Michaël Zasso** <<targos@protonmail.com>> (he/him)
|
|
205
205
|
* [tniessen](https://github.com/tniessen) -
|
|
206
206
|
**Tobias Nießen** <<tniessen@tnie.de>> (he/him)
|
|
207
|
-
* [Trott](https://github.com/Trott) -
|
|
208
|
-
**Rich Trott** <<rtrott@gmail.com>> (he/him)
|
|
209
207
|
|
|
210
208
|
#### TSC regular members
|
|
211
209
|
|
|
@@ -233,6 +231,8 @@ For information about the governance of the Node.js project, see
|
|
|
233
231
|
**Rod Vagg** <<r@va.gg>>
|
|
234
232
|
* [TimothyGu](https://github.com/TimothyGu) -
|
|
235
233
|
**Tiancheng "Timothy" Gu** <<timothygu99@gmail.com>> (he/him)
|
|
234
|
+
* [Trott](https://github.com/Trott) -
|
|
235
|
+
**Rich Trott** <<rtrott@gmail.com>> (he/him)
|
|
236
236
|
|
|
237
237
|
<details>
|
|
238
238
|
|
|
@@ -357,6 +357,8 @@ For information about the governance of the Node.js project, see
|
|
|
357
357
|
**Gireesh Punathil** <<gpunathi@in.ibm.com>> (he/him)
|
|
358
358
|
* [guybedford](https://github.com/guybedford) -
|
|
359
359
|
**Guy Bedford** <<guybedford@gmail.com>> (he/him)
|
|
360
|
+
* [H4ad](https://github.com/H4ad) -
|
|
361
|
+
**Vinícius Lourenço Claro Cardoso** <<contact@viniciusl.com.br>> (he/him)
|
|
360
362
|
* [HarshithaKP](https://github.com/HarshithaKP) -
|
|
361
363
|
**Harshitha K P** <<harshitha014@gmail.com>> (she/her)
|
|
362
364
|
* [himself65](https://github.com/himself65) -
|
package/bin/node
CHANGED
|
Binary file
|
package/include/node/common.gypi
CHANGED
package/include/node/node.exp
CHANGED
|
@@ -5962,24 +5962,24 @@ _GLOBAL__F__ZN2v88internal6torque5Block13SetInputTypesERKNS1_5StackIPKNS1_4TypeE
|
|
|
5962
5962
|
_GLOBAL__F__ZN2v88internal6torque9KytheData21AddConstantDefinitionEPKNS1_5ValueE
|
|
5963
5963
|
_GLOBAL__F__ZNK2v88internal6torque3cpp8Function22PrintDeclarationHeaderERSoi
|
|
5964
5964
|
_GLOBAL__F__ZNK2v88internal6torque4Rule9RunActionEPKNS1_4ItemERKNS1_11LexerResultE
|
|
5965
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_common_ptr_compr.
|
|
5966
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_compiler_int64_lowering.
|
|
5967
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_compiler_turboshaft_utils.
|
|
5968
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_diagnostics_gdb_jit.
|
|
5969
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_diagnostics_objects_debug.
|
|
5970
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_execution_arguments.
|
|
5971
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_execution_simulator_base.
|
|
5972
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_heap_evacuation_verifier.
|
|
5973
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_heap_factory_base.
|
|
5974
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_heap_heap_verifier.
|
|
5975
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_heap_objects_visiting.
|
|
5976
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_objects_tagged_impl.
|
|
5977
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_runtime_runtime_trace.
|
|
5978
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_sandbox_code_pointer_table.
|
|
5979
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_sandbox_external_pointer_table.
|
|
5980
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_sandbox_sandbox.
|
|
5981
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_sandbox_testing.
|
|
5982
|
-
_GLOBAL__I_65535_0_.._src_connection_wrap.
|
|
5965
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_common_ptr_compr.cc_87E8306D_0x2d29bc3d904e72c
|
|
5966
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_compiler_int64_lowering.cc_E21CEA7D_0xdd304e0973bc3591
|
|
5967
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_compiler_turboshaft_utils.cc_DFF67DD7_0xa86c05ef788fd2ea
|
|
5968
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_diagnostics_gdb_jit.cc_DFF67DD7_0xa23ab78cde58b978
|
|
5969
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_diagnostics_objects_debug.cc_DFF67DD7_0xcc0ebaaaaa9b2265
|
|
5970
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_execution_arguments.cc_DFF67DD7_0xde62cab6a7edf8bc
|
|
5971
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_execution_simulator_base.cc_7874F2D3_0x61e2b90de0d1ba51
|
|
5972
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_heap_evacuation_verifier.cc_FE345EE0_0x87cf6a24ba7a5789
|
|
5973
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_heap_factory_base.cc_7874F2D3_0x1b0ad5d383caf15c
|
|
5974
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_heap_heap_verifier.cc_7874F2D3_0x41ccda59a86470f6
|
|
5975
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_heap_objects_visiting.cc_DFF67DD7_0x6197d172fa4ba97e
|
|
5976
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_objects_tagged_impl.cc_87E8306D_0x516776839772ad41
|
|
5977
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_runtime_runtime_trace.cc_E21CEA7D_0xee4227c83c465789
|
|
5978
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_sandbox_code_pointer_table.cc_87E8306D_0x5b71cb22ccb79ab8
|
|
5979
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_sandbox_external_pointer_table.cc_87E8306D_0x1f2149d1a7dee329
|
|
5980
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_sandbox_sandbox.cc_87E8306D_0xfccb1f18c2b685a9
|
|
5981
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_sandbox_testing.cc_7874F2D3_0xa02dc21e723949bf
|
|
5982
|
+
_GLOBAL__I_65535_0_.._src_connection_wrap.cc_E21CEA7D_0x35109f3e50d02fe6
|
|
5983
5983
|
_GLOBAL__I_65535_0_OPENSSL_ppccap_P
|
|
5984
5984
|
_GLOBAL__I_65535_0__Z16_register_configv
|
|
5985
5985
|
_GLOBAL__I_65535_0__Z17_register_symbolsv
|
|
@@ -7115,9 +7115,9 @@ _GLOBAL__I_65535_0__ZNK4node3sea11SeaResource12use_snapshotEv
|
|
|
7115
7115
|
_GLOBAL__I_65535_0__ZNK4node3url11BindingData10MemoryInfoEPNS_13MemoryTrackerE
|
|
7116
7116
|
_GLOBAL__I_65535_0__ZNK4node4quic6Packet11destinationEv
|
|
7117
7117
|
_GLOBAL__I_65535_0__ZNK7simdutf14implementation27supported_by_runtime_systemEv
|
|
7118
|
-
_GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_enum_verifiers.
|
|
7119
|
-
_GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_factory.
|
|
7120
|
-
_GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_src_objects_torque_defined_classes_tq_csa.
|
|
7118
|
+
_GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_enum_verifiers.cc_E21CEA7D_0xd3436ef4b829cb32
|
|
7119
|
+
_GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_factory.cc_7874F2D3_0x8a850f5999e22bec
|
|
7120
|
+
_GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_src_objects_torque_defined_classes_tq_csa.cc_E21CEA7D_0xbc020779a253c712
|
|
7121
7121
|
_GLOBAL__I_65535_0_nodedbg_const_ContextEmbedderIndex__kEnvironment__int
|
|
7122
7122
|
_GLOBAL__I_65535_0_v8dbg_frametype_EntryFrame
|
|
7123
7123
|
_HZData_73
|
|
@@ -7297,6 +7297,9 @@ _Z44_register_external_reference_process_methodsPN4node25ExternalReferenceRegist
|
|
|
7297
7297
|
_Z45_register_external_reference_encoding_bindingPN4node25ExternalReferenceRegistryE
|
|
7298
7298
|
_Z8V8_FatalPKcz
|
|
7299
7299
|
_Z9V8_DcheckPKciS0_
|
|
7300
|
+
_ZGVN3ada22url_search_params_iterISt17basic_string_viewIcSt11char_traitsIcEELNS_27url_search_params_iter_typeE0EE5EMPTYE
|
|
7301
|
+
_ZGVN3ada22url_search_params_iterISt17basic_string_viewIcSt11char_traitsIcEELNS_27url_search_params_iter_typeE1EE5EMPTYE
|
|
7302
|
+
_ZGVN3ada22url_search_params_iterISt4pairISt17basic_string_viewIcSt11char_traitsIcEES5_ELNS_27url_search_params_iter_typeE2EE5EMPTYE
|
|
7300
7303
|
_ZGVZN2v88internal28CFunctionBuilderWithFunctionINS_16CTypeInfoBuilderIbJEEEJNS2_INS_5LocalINS_5ValueEEEJEEENS2_IRKNS_17FastOneByteStringEJEEEEE5BuildILNS_13CFunctionInfo19Int64RepresentationE0EEEDavE8instance
|
|
7301
7304
|
_ZGVZN2v88internal28CFunctionBuilderWithFunctionINS_16CTypeInfoBuilderIbJEEEJNS2_INS_5LocalINS_5ValueEEEJEEENS2_IRKNS_17FastOneByteStringEJEEESB_EE5BuildILNS_13CFunctionInfo19Int64RepresentationE0EEEDavE8instance
|
|
7302
7305
|
_ZGVZN2v88internal28CFunctionBuilderWithFunctionINS_16CTypeInfoBuilderIdJEEEJNS2_INS_5LocalINS_6ObjectEEEJEEEEE5BuildILNS_13CFunctionInfo19Int64RepresentationE0EEEDavE8instance
|
|
@@ -55785,6 +55788,7 @@ _ZN3ada11serializers4ipv6B5cxx11ERKSt5arrayItLm8EE
|
|
|
55785
55788
|
_ZN3ada14href_from_fileB5cxx11ESt17basic_string_viewIcSt11char_traitsIcEE
|
|
55786
55789
|
_ZN3ada14url_aggregator10parse_ipv4ESt17basic_string_viewIcSt11char_traitsIcEE
|
|
55787
55790
|
_ZN3ada14url_aggregator10parse_ipv6ESt17basic_string_viewIcSt11char_traitsIcEE
|
|
55791
|
+
_ZN3ada14url_aggregator10parse_portESt17basic_string_viewIcSt11char_traitsIcEE
|
|
55788
55792
|
_ZN3ada14url_aggregator10parse_portESt17basic_string_viewIcSt11char_traitsIcEEb
|
|
55789
55793
|
_ZN3ada14url_aggregator10set_schemeESt17basic_string_viewIcSt11char_traitsIcEE
|
|
55790
55794
|
_ZN3ada14url_aggregator10set_searchESt17basic_string_viewIcSt11char_traitsIcEE
|
|
@@ -55813,15 +55817,22 @@ _ZN3ada14url_aggregator21consume_prepared_pathESt17basic_string_viewIcSt11char_t
|
|
|
55813
55817
|
_ZN3ada14url_aggregator21update_base_authorityESt17basic_string_viewIcSt11char_traitsIcEERKNS_14url_componentsE
|
|
55814
55818
|
_ZN3ada14url_aggregator26update_unencoded_base_hashESt17basic_string_viewIcSt11char_traitsIcEE
|
|
55815
55819
|
_ZN3ada14url_aggregator31add_authority_slashes_if_neededEv
|
|
55820
|
+
_ZN3ada14url_aggregator31set_scheme_from_view_with_colonESt17basic_string_viewIcSt11char_traitsIcEE
|
|
55816
55821
|
_ZN3ada14url_aggregator8set_hashESt17basic_string_viewIcSt11char_traitsIcEE
|
|
55817
55822
|
_ZN3ada14url_aggregator8set_hostESt17basic_string_viewIcSt11char_traitsIcEE
|
|
55818
55823
|
_ZN3ada14url_aggregator8set_hrefESt17basic_string_viewIcSt11char_traitsIcEE
|
|
55819
55824
|
_ZN3ada14url_aggregator8set_portESt17basic_string_viewIcSt11char_traitsIcEE
|
|
55820
55825
|
_ZN3ada14url_aggregatorD0Ev
|
|
55821
55826
|
_ZN3ada14url_aggregatorD1Ev
|
|
55827
|
+
_ZN3ada17url_search_paramsD1Ev
|
|
55828
|
+
_ZN3ada22url_search_params_iterISt17basic_string_viewIcSt11char_traitsIcEELNS_27url_search_params_iter_typeE0EE5EMPTYE
|
|
55829
|
+
_ZN3ada22url_search_params_iterISt17basic_string_viewIcSt11char_traitsIcEELNS_27url_search_params_iter_typeE1EE5EMPTYE
|
|
55830
|
+
_ZN3ada22url_search_params_iterISt4pairISt17basic_string_viewIcSt11char_traitsIcEES5_ELNS_27url_search_params_iter_typeE2EE5EMPTYE
|
|
55822
55831
|
_ZN3ada3url10parse_ipv4ESt17basic_string_viewIcSt11char_traitsIcEE
|
|
55823
55832
|
_ZN3ada3url10parse_ipv6ESt17basic_string_viewIcSt11char_traitsIcEE
|
|
55833
|
+
_ZN3ada3url10parse_portESt17basic_string_viewIcSt11char_traitsIcEE
|
|
55824
55834
|
_ZN3ada3url10parse_portESt17basic_string_viewIcSt11char_traitsIcEEb
|
|
55835
|
+
_ZN3ada3url10set_schemeEONSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE
|
|
55825
55836
|
_ZN3ada3url10set_searchESt17basic_string_viewIcSt11char_traitsIcEE
|
|
55826
55837
|
_ZN3ada3url12clear_searchEv
|
|
55827
55838
|
_ZN3ada3url12set_hostnameESt17basic_string_viewIcSt11char_traitsIcEE
|
|
@@ -56213,16 +56224,21 @@ _ZN4node10contextify17ContextifyContext11MakeContextERKN2v820FunctionCallbackInf
|
|
|
56213
56224
|
_ZN4node10contextify17ContextifyContext12WeakCallbackERKN2v816WeakCallbackInfoIS1_EE
|
|
56214
56225
|
_ZN4node10contextify17ContextifyContext15CompileFunctionERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
56215
56226
|
_ZN4node10contextify17ContextifyContext15CreateV8ContextEPN2v87IsolateENS2_5LocalINS2_14ObjectTemplateEEEPKNS_12SnapshotDataEPNS2_14MicrotaskQueueE
|
|
56227
|
+
_ZN4node10contextify17ContextifyContext17GetCompileOptionsERKN2v814ScriptCompiler6SourceE
|
|
56216
56228
|
_ZN4node10contextify17ContextifyContext19IsStillInitializingEPKS1_
|
|
56229
|
+
_ZN4node10contextify17ContextifyContext20ContainsModuleSyntaxERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
56230
|
+
_ZN4node10contextify17ContextifyContext21GetHostDefinedOptionsEPN2v87IsolateENS2_5LocalINS2_6SymbolEEE
|
|
56217
56231
|
_ZN4node10contextify17ContextifyContext22PropertyGetterCallbackEN2v85LocalINS2_4NameEEERKNS2_20PropertyCallbackInfoINS2_5ValueEEE
|
|
56218
56232
|
_ZN4node10contextify17ContextifyContext22PropertySetterCallbackEN2v85LocalINS2_4NameEEENS3_INS2_5ValueEEERKNS2_20PropertyCallbackInfoIS6_EE
|
|
56219
56233
|
_ZN4node10contextify17ContextifyContext23PropertyDefinerCallbackEN2v85LocalINS2_4NameEEERKNS2_18PropertyDescriptorERKNS2_20PropertyCallbackInfoINS2_5ValueEEE
|
|
56220
56234
|
_ZN4node10contextify17ContextifyContext23PropertyDeleterCallbackEN2v85LocalINS2_4NameEEERKNS2_20PropertyCallbackInfoINS2_7BooleanEEE
|
|
56235
|
+
_ZN4node10contextify17ContextifyContext25GetCommonJSSourceInstanceEPN2v87IsolateENS2_5LocalINS2_6StringEEES7_iiNS5_INS2_14PrimitiveArrayEEEPNS2_14ScriptCompiler10CachedDataE
|
|
56221
56236
|
_ZN4node10contextify17ContextifyContext25InitializeGlobalTemplatesEPNS_11IsolateDataE
|
|
56222
56237
|
_ZN4node10contextify17ContextifyContext26CreatePerIsolatePropertiesEPNS_11IsolateDataEN2v85LocalINS4_14ObjectTemplateEEE
|
|
56223
56238
|
_ZN4node10contextify17ContextifyContext26PropertyDescriptorCallbackEN2v85LocalINS2_4NameEEERKNS2_20PropertyCallbackInfoINS2_5ValueEEE
|
|
56224
56239
|
_ZN4node10contextify17ContextifyContext26PropertyEnumeratorCallbackERKN2v820PropertyCallbackInfoINS2_5ArrayEEE
|
|
56225
56240
|
_ZN4node10contextify17ContextifyContext26RegisterExternalReferencesEPNS_25ExternalReferenceRegistryE
|
|
56241
|
+
_ZN4node10contextify17ContextifyContext29CompileFunctionAndCacheResultEPNS_11EnvironmentEN2v85LocalINS4_7ContextEEEPNS4_14ScriptCompiler6SourceESt6vectorINS5_INS4_6StringEEESaISD_EESB_INS5_INS4_6ObjectEEESaISH_EENS8_14CompileOptionsEbNS5_INS4_6SymbolEEERKNS_6errors13TryCatchScopeE
|
|
56226
56242
|
_ZN4node10contextify17ContextifyContext29IndexedPropertyGetterCallbackEjRKN2v820PropertyCallbackInfoINS2_5ValueEEE
|
|
56227
56243
|
_ZN4node10contextify17ContextifyContext29IndexedPropertySetterCallbackEjN2v85LocalINS2_5ValueEEERKNS2_20PropertyCallbackInfoIS4_EE
|
|
56228
56244
|
_ZN4node10contextify17ContextifyContext30ContextFromContextifiedSandboxEPNS_11EnvironmentERKN2v85LocalINS4_6ObjectEEE
|
|
@@ -57406,6 +57422,7 @@ _ZN4node20ERR_BUFFER_TOO_LARGEEPN2v87IsolateE
|
|
|
57406
57422
|
_ZN4node20ERR_BUFFER_TOO_LARGEIJEEEN2v85LocalINS1_5ValueEEEPNS1_7IsolateEPKcDpOT_
|
|
57407
57423
|
_ZN4node20ERR_INVALID_ARG_TYPEIJEEEN2v85LocalINS1_5ValueEEEPNS1_7IsolateEPKcDpOT_
|
|
57408
57424
|
_ZN4node20ERR_MODULE_NOT_FOUNDIJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEEN2v85LocalINS8_5ValueEEEPNS8_7IsolateEPKcDpOT_
|
|
57425
|
+
_ZN4node20ERR_MODULE_NOT_FOUNDIJRPKcEEEN2v85LocalINS4_5ValueEEEPNS4_7IsolateES2_DpOT_
|
|
57409
57426
|
_ZN4node20ERR_WASI_NOT_STARTEDIJEEEN2v85LocalINS1_5ValueEEEPNS1_7IsolateEPKcDpOT_
|
|
57410
57427
|
_ZN4node20EmbedderSnapshotData19BuiltinSnapshotDataEv
|
|
57411
57428
|
_ZN4node20EmbedderSnapshotData30CanUseCustomSnapshotPerIsolateEv
|
|
@@ -57836,7 +57853,6 @@ _ZN4node2fs13FSReqCallbackD0Ev
|
|
|
57836
57853
|
_ZN4node2fs13FSReqCallbackD1Ev
|
|
57837
57854
|
_ZN4node2fs13FSReqWrapSyncD1Ev
|
|
57838
57855
|
_ZN4node2fs14AfterStringPtrEP7uv_fs_s
|
|
57839
|
-
_ZN4node2fs14CallMKDirpSyncEPNS_11EnvironmentERKN2v820FunctionCallbackInfoINS3_5ValueEEEPNS0_13FSReqWrapSyncEPKci
|
|
57840
57856
|
_ZN4node2fs14FillStatsArrayIdN2v812Float64ArrayEEEvPNS_17AliasedBufferBaseIT_T0_EEPK9uv_stat_tm
|
|
57841
57857
|
_ZN4node2fs14FillStatsArrayIlN2v813BigInt64ArrayEEEvPNS_17AliasedBufferBaseIT_T0_EEPK9uv_stat_tm
|
|
57842
57858
|
_ZN4node2fs15AfterStringPathEP7uv_fs_s
|
|
@@ -57861,7 +57877,6 @@ _ZN4node2fs26RegisterExternalReferencesEPNS_25ExternalReferenceRegistryE
|
|
|
57861
57877
|
_ZN4node2fs5CloseERKN2v820FunctionCallbackInfoINS1_5ValueEEE
|
|
57862
57878
|
_ZN4node2fs6AccessERKN2v820FunctionCallbackInfoINS1_5ValueEEE
|
|
57863
57879
|
_ZN4node2fs8BasenameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_
|
|
57864
|
-
_ZN4node2fs8SyncCallIPFiP9uv_loop_sP7uv_fs_sPKcPFvS5_EEJPcEEEiPNS_11EnvironmentEN2v85LocalINSF_5ValueEEEPNS0_13FSReqWrapSyncES7_T_DpT0_
|
|
57865
57880
|
_ZN4node2fs9AfterStatEP7uv_fs_s
|
|
57866
57881
|
_ZN4node2fs9FSReqBase12binding_dataEv
|
|
57867
57882
|
_ZN4node2fs9FSReqBaseD0Ev
|
|
@@ -59277,6 +59292,7 @@ _ZN4node6crypto15ImportJWKRsaKeyEPNS_11EnvironmentEN2v85LocalINS3_6ObjectEEERKNS
|
|
|
59277
59292
|
_ZN4node6crypto15KeyObjectHandle10InitializeEPNS_11EnvironmentE
|
|
59278
59293
|
_ZN4node6crypto15KeyObjectHandle11HasInstanceEPNS_11EnvironmentEN2v85LocalINS4_5ValueEEE
|
|
59279
59294
|
_ZN4node6crypto15KeyObjectHandle12GetKeyDetailERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
59295
|
+
_ZN4node6crypto15KeyObjectHandle14CheckEcKeyDataERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
59280
59296
|
_ZN4node6crypto15KeyObjectHandle19GetSymmetricKeySizeERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
59281
59297
|
_ZN4node6crypto15KeyObjectHandle20GetAsymmetricKeyTypeERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
59282
59298
|
_ZN4node6crypto15KeyObjectHandle26RegisterExternalReferencesEPNS_25ExternalReferenceRegistryE
|
|
@@ -69648,6 +69664,7 @@ _ZNK2v88internal3Map14FindFieldOwnerENS0_16PtrComprCageBaseENS0_13InternalIndexE
|
|
|
69648
69664
|
_ZNK2v88internal3Map14GetFieldCountsEv
|
|
69649
69665
|
_ZNK2v88internal3Map14NumberOfFieldsENS0_15ConcurrencyModeE
|
|
69650
69666
|
_ZNK2v88internal3Map16UsedInstanceSizeEv
|
|
69667
|
+
_ZNK2v88internal3Map20UnusedPropertyFieldsEv
|
|
69651
69668
|
_ZNK2v88internal3Map21NextFreePropertyIndexEv
|
|
69652
69669
|
_ZNK2v88internal3Map22InstancesNeedRewritingENS0_6TaggedIS1_EENS0_15ConcurrencyModeE
|
|
69653
69670
|
_ZNK2v88internal3Map22InstancesNeedRewritingENS0_6TaggedIS1_EEiiiPiNS0_15ConcurrencyModeE
|
|
@@ -73093,6 +73110,7 @@ _ZNK4node6crypto15EcKeyPairParams10MemoryInfoEPNS_13MemoryTrackerE
|
|
|
73093
73110
|
_ZNK4node6crypto15EcKeyPairParams14MemoryInfoNameEv
|
|
73094
73111
|
_ZNK4node6crypto15EcKeyPairParams8SelfSizeEv
|
|
73095
73112
|
_ZNK4node6crypto15KeyObjectHandle10MemoryInfoEPNS_13MemoryTrackerE
|
|
73113
|
+
_ZNK4node6crypto15KeyObjectHandle14CheckEcKeyDataEv
|
|
73096
73114
|
_ZNK4node6crypto15KeyObjectHandle14MemoryInfoNameEv
|
|
73097
73115
|
_ZNK4node6crypto15KeyObjectHandle15ExportPublicKeyERKNS0_27AsymmetricKeyEncodingConfigE
|
|
73098
73116
|
_ZNK4node6crypto15KeyObjectHandle15ExportSecretKeyEv
|
|
@@ -76673,6 +76691,7 @@ _ZNSt11_Deque_baseISt4pairIN2v88platform27DefaultForegroundTaskRunner11Nestabili
|
|
|
76673
76691
|
_ZNSt11_Deque_baseISt4pairIPKN2v88internal8compiler17PendingAssessmentEiENS2_22RecyclingZoneAllocatorIS7_EEE17_M_initialize_mapEm
|
|
76674
76692
|
_ZNSt11_Deque_baseIiN2v88internal22RecyclingZoneAllocatorIiEEE17_M_initialize_mapEm
|
|
76675
76693
|
_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm
|
|
76694
|
+
_ZNSt11__copy_moveILb1ELb0ESt26random_access_iterator_tagE8__copy_mIPSt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ESB_EET0_T_SD_SC_
|
|
76676
76695
|
_ZNSt12_Destroy_auxILb0EE9__destroyIPN2v88internal6torque13LabelAndTypesEEEvT_S7_
|
|
76677
76696
|
_ZNSt12_Destroy_auxILb0EE9__destroyIPN2v88internal6torque16LabelDeclarationEEEvT_S7_
|
|
76678
76697
|
_ZNSt12_Destroy_auxILb0EE9__destroyIPN2v88internal6torque21ConditionalAnnotationEEEvT_S7_
|
|
@@ -77071,6 +77090,7 @@ _ZNSt17_Function_handlerIFvvEZN4node9inspector19NodeInspectorClient19startRepeat
|
|
|
77071
77090
|
_ZNSt17_Temporary_bufferIN9__gnu_cxx17__normal_iteratorIPN2v88internal4wasm10WasmExportESt6vectorIS5_SaIS5_EEEES5_EC1ESA_l
|
|
77072
77091
|
_ZNSt17_Temporary_bufferIN9__gnu_cxx17__normal_iteratorIPSt4pairIN8v8_crdtp4spanIhEES5_ESt6vectorIS6_SaIS6_EEEES6_EC1ESB_l
|
|
77073
77092
|
_ZNSt17_Temporary_bufferIN9__gnu_cxx17__normal_iteratorIPSt4pairIN8v8_crdtp4spanIhEESt10unique_ptrINS3_16DomainDispatcherESt14default_deleteIS7_EEESt6vectorISB_SaISB_EEEESB_EC1ESG_l
|
|
77093
|
+
_ZNSt17_Temporary_bufferIN9__gnu_cxx17__normal_iteratorIPSt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_ESt6vectorIS9_SaIS9_EEEES9_EC1ESE_l
|
|
77074
77094
|
_ZNSt19_Sp_counted_deleterIPN2v812BackingStoreESt14default_deleteIS1_ESaIvELN9__gnu_cxx12_Lock_policyE2EE10_M_destroyEv
|
|
77075
77095
|
_ZNSt19_Sp_counted_deleterIPN2v812BackingStoreESt14default_deleteIS1_ESaIvELN9__gnu_cxx12_Lock_policyE2EE10_M_disposeEv
|
|
77076
77096
|
_ZNSt19_Sp_counted_deleterIPN2v812BackingStoreESt14default_deleteIS1_ESaIvELN9__gnu_cxx12_Lock_policyE2EE14_M_get_deleterERKSt9type_info
|
|
@@ -77141,6 +77161,7 @@ _ZNSt19_Sp_counted_deleterIPcSt14default_deleteIA_cESaIvELN9__gnu_cxx12_Lock_pol
|
|
|
77141
77161
|
_ZNSt19_Sp_counted_deleterIPcSt14default_deleteIA_cESaIvELN9__gnu_cxx12_Lock_policyE2EE14_M_get_deleterERKSt9type_info
|
|
77142
77162
|
_ZNSt19_Sp_counted_deleterIPcSt14default_deleteIA_cESaIvELN9__gnu_cxx12_Lock_policyE2EED0Ev
|
|
77143
77163
|
_ZNSt19_Sp_counted_deleterIPcSt14default_deleteIA_cESaIvELN9__gnu_cxx12_Lock_policyE2EED1Ev
|
|
77164
|
+
_ZNSt20__copy_move_backwardILb1ELb0ESt26random_access_iterator_tagE13__copy_move_bIPSt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ESB_EET0_T_SD_SC_
|
|
77144
77165
|
_ZNSt20__uninitialized_copyILb0EE13__uninit_copyIPKN2v88internal6torque11VisitResultEPS5_EET0_T_SA_S9_
|
|
77145
77166
|
_ZNSt20__uninitialized_copyILb0EE13__uninit_copyIPKN2v88internal6torque9SignatureEPS5_EET0_T_SA_S9_
|
|
77146
77167
|
_ZNSt22_Optional_payload_baseINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEE14_M_copy_assignERKS6_
|
|
@@ -77832,6 +77853,7 @@ _ZNSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS5_EE17_M_re
|
|
|
77832
77853
|
_ZNSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS5_EE17_M_realloc_insertIJRA256_cEEEvN9__gnu_cxx17__normal_iteratorIPS5_S7_EEDpOT_
|
|
77833
77854
|
_ZNSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS5_EE17_M_realloc_insertIJRA2_cEEEvN9__gnu_cxx17__normal_iteratorIPS5_S7_EEDpOT_
|
|
77834
77855
|
_ZNSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS5_EE17_M_realloc_insertIJRKS5_EEEvN9__gnu_cxx17__normal_iteratorIPS5_S7_EEDpOT_
|
|
77856
|
+
_ZNSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS5_EE17_M_realloc_insertIJRS5_EEEvN9__gnu_cxx17__normal_iteratorIPS5_S7_EEDpOT_
|
|
77835
77857
|
_ZNSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS5_EE17_M_realloc_insertIJS5_EEEvN9__gnu_cxx17__normal_iteratorIPS5_S7_EEDpOT_
|
|
77836
77858
|
_ZNSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS5_EE6insertEN9__gnu_cxx17__normal_iteratorIPKS5_S7_EERSA_
|
|
77837
77859
|
_ZNSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS5_EE8_M_eraseEN9__gnu_cxx17__normal_iteratorIPS5_S7_EE
|
|
@@ -78029,6 +78051,9 @@ _ZNSt6vectorISt4pairIN2v88internal6HandleINS2_6ObjectEEES5_ESaIS6_EE17_M_realloc
|
|
|
78029
78051
|
_ZNSt6vectorISt4pairIN2v88internal6TaggedINS2_10HeapObjectEEEbESaIS6_EE17_M_realloc_insertIJS6_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_
|
|
78030
78052
|
_ZNSt6vectorISt4pairIN2v88internal6torque14SourcePositionES4_ESaIS5_EE17_M_realloc_insertIJRS4_S9_EEEvN9__gnu_cxx17__normal_iteratorIPS5_S7_EEDpOT_
|
|
78031
78053
|
_ZNSt6vectorISt4pairIN8v8_crdtp4spanIhEESt10unique_ptrINS1_16DomainDispatcherESt14default_deleteIS5_EEESaIS9_EE17_M_realloc_insertIJS9_EEEvN9__gnu_cxx17__normal_iteratorIPS9_SB_EEDpOT_
|
|
78054
|
+
_ZNSt6vectorISt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES6_ESaIS7_EE17_M_realloc_insertIJRKSt17basic_string_viewIcS4_ESE_EEEvN9__gnu_cxx17__normal_iteratorIPS7_S9_EEDpOT_
|
|
78055
|
+
_ZNSt6vectorISt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES6_ESaIS7_EE17_M_realloc_insertIJS6_RA1_KcEEEvN9__gnu_cxx17__normal_iteratorIPS7_S9_EEDpOT_
|
|
78056
|
+
_ZNSt6vectorISt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES6_ESaIS7_EE17_M_realloc_insertIJS6_S6_EEEvN9__gnu_cxx17__normal_iteratorIPS7_S9_EEDpOT_
|
|
78032
78057
|
_ZNSt6vectorISt4pairIPFmPvmmES1_ESaIS4_EE17_M_realloc_insertIJS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_
|
|
78033
78058
|
_ZNSt6vectorISt4pairIPFvPN2v87IsolateEPNS1_13EmbedderGraphEPvES6_ESaIS9_EE17_M_realloc_insertIJS9_EEEvN9__gnu_cxx17__normal_iteratorIPS9_SB_EEDpOT_
|
|
78034
78059
|
_ZNSt6vectorISt4pairIPFvPN2v87IsolateEPvES4_ESaIS7_EE17_M_realloc_insertIJRKS7_EEEvN9__gnu_cxx17__normal_iteratorIPS7_S9_EEDpOT_
|
|
@@ -83439,7 +83464,7 @@ _ZZN2v88internal20RegExpMacroAssembler22ImplementationToStringENS1_22IrregexpImp
|
|
|
83439
83464
|
_ZZN2v88internal22InternalStringToDoubleIPKhS3_EEdT_T0_idE15kInfinityString
|
|
83440
83465
|
_ZZN2v88internal22InternalStringToDoubleIPKtS3_EEdT_T0_idE15kInfinityString
|
|
83441
83466
|
_ZZN2v88internal26EphemeronTableUpdatingItem7ProcessEvE29trace_event_unique_atomic4784
|
|
83442
|
-
|
|
83467
|
+
_ZZN2v88internal26TracingAccountingAllocator39UpdateMemoryTrafficAndReportMemoryUsageEmE29trace_event_unique_atomic3348
|
|
83443
83468
|
_ZZN2v88internal27OptimizingCompileDispatcher11CompileTask3RunEPNS_11JobDelegateEE27trace_event_unique_atomic46
|
|
83444
83469
|
_ZZN2v88internal28CFunctionBuilderWithFunctionINS_16CTypeInfoBuilderIbJEEEJNS2_INS_5LocalINS_5ValueEEEJEEENS2_IRKNS_17FastOneByteStringEJEEEEE5BuildILNS_13CFunctionInfo19Int64RepresentationE0EEEDavE8instance
|
|
83445
83470
|
_ZZN2v88internal28CFunctionBuilderWithFunctionINS_16CTypeInfoBuilderIbJEEEJNS2_INS_5LocalINS_5ValueEEEJEEENS2_IRKNS_17FastOneByteStringEJEEESB_EE5BuildILNS_13CFunctionInfo19Int64RepresentationE0EEEDavE8instance
|
|
@@ -85595,6 +85620,9 @@ _ZZN2v88internal8compiler28ArrayBufferViewAccessBuilder11BuildLengthENS0_5TNodeI
|
|
|
85595
85620
|
_ZZN2v88internal8compiler28ArrayBufferViewAccessBuilder15BuildByteLengthENS0_5TNodeINS0_17JSArrayBufferViewEEENS3_INS0_7ContextEEEENKUlvE0_clEv
|
|
85596
85621
|
_ZZN2v88internal8compiler28ArrayBufferViewAccessBuilder15BuildByteLengthENS0_5TNodeINS0_17JSArrayBufferViewEEENS3_INS0_7ContextEEEENKUlvE2_clEv
|
|
85597
85622
|
_ZZN2v88internal8compiler28ArrayBufferViewAccessBuilder18BuildDetachedCheckENS0_5TNodeINS0_17JSArrayBufferViewEEEENKUlvE_clEv
|
|
85623
|
+
_ZZN3ada17url_search_params10initializeESt17basic_string_viewIcSt11char_traitsIcEEENKUlS4_E_clES4_
|
|
85624
|
+
_ZZN3ada17url_search_params3hasESt17basic_string_viewIcSt11char_traitsIcEES4_ENKUlRT_E_clISt4pairINSt7__cxx1112basic_stringIcS3_SaIcEEESD_EEEDaS6_
|
|
85625
|
+
_ZZN3ada17url_search_params6removeESt17basic_string_viewIcSt11char_traitsIcEES4_ENKUlRT_E_clISt4pairINSt7__cxx1112basic_stringIcS3_SaIcEEESD_EEEDaS6_
|
|
85598
85626
|
_ZZN3ada7helpers16fast_digit_countEjE5table
|
|
85599
85627
|
_ZZN4node10BaseObject16InternalFieldSetILi3EXadL_ZNK2v85Value10IsFunctionEvEEEEvNS2_5LocalINS2_6StringEEENS4_IS3_EERKNS2_20PropertyCallbackInfoIvEEE4args
|
|
85600
85628
|
_ZZN4node10BaseObject6DetachEvE4args
|
|
@@ -86220,9 +86248,12 @@ _ZZN4node2fs10FileHandle5CloseEvE28trace_event_unique_atomic351
|
|
|
86220
86248
|
_ZZN4node2fs10FileHandle5CloseEvE4args
|
|
86221
86249
|
_ZZN4node2fs12FSReqPromiseINS_17AliasedBufferBaseIdN2v812Float64ArrayEEEED4EvE4args
|
|
86222
86250
|
_ZZN4node2fs12FSReqPromiseINS_17AliasedBufferBaseIlN2v813BigInt64ArrayEEEED4EvE4args
|
|
86251
|
+
_ZZN4node2fs13AsyncDestCallIPFiP9uv_loop_sP7uv_fs_sPKcPFvS5_EEJPcEEEPNS0_9FSReqBaseEPNS_11EnvironmentESE_RKN2v820FunctionCallbackInfoINSH_5ValueEEES7_S7_mNS_8encodingES9_T_DpT0_E4args
|
|
86252
|
+
_ZZN4node2fs13AsyncDestCallIPFiP9uv_loop_sP7uv_fs_sPKcS7_PFvS5_EEJPcSC_EEEPNS0_9FSReqBaseEPNS_11EnvironmentESE_RKN2v820FunctionCallbackInfoINSH_5ValueEEES7_S7_mNS_8encodingES9_T_DpT0_E4args
|
|
86223
86253
|
_ZZN4node2fs13AsyncDestCallIPFiP9uv_loop_sP7uv_fs_sPKcS7_iPFvS5_EEJPcSC_iEEEPNS0_9FSReqBaseEPNS_11EnvironmentESE_RKN2v820FunctionCallbackInfoINSH_5ValueEEES7_S7_mNS_8encodingES9_T_DpT0_E4args
|
|
86224
86254
|
_ZZN4node2fs13AsyncDestCallIPFiP9uv_loop_sP7uv_fs_sPKcddPFvS5_EEJPcddEEEPNS0_9FSReqBaseEPNS_11EnvironmentESE_RKN2v820FunctionCallbackInfoINSH_5ValueEEES7_S7_mNS_8encodingES9_T_DpT0_E4args
|
|
86225
86255
|
_ZZN4node2fs13AsyncDestCallIPFiP9uv_loop_sP7uv_fs_sPKciPFvS5_EEJPciEEEPNS0_9FSReqBaseEPNS_11EnvironmentESE_RKN2v820FunctionCallbackInfoINSH_5ValueEEES7_S7_mNS_8encodingES9_T_DpT0_E4args
|
|
86256
|
+
_ZZN4node2fs13AsyncDestCallIPFiP9uv_loop_sP7uv_fs_sPKcjjPFvS5_EEJPcjjEEEPNS0_9FSReqBaseEPNS_11EnvironmentESE_RKN2v820FunctionCallbackInfoINSH_5ValueEEES7_S7_mNS_8encodingES9_T_DpT0_E4args
|
|
86226
86257
|
_ZZN4node2fs13AsyncDestCallIPFiP9uv_loop_sP7uv_fs_siPK8uv_buf_tjlPFvS5_EEJiPS6_mlEEEPNS0_9FSReqBaseEPNS_11EnvironmentESF_RKN2v820FunctionCallbackInfoINSI_5ValueEEEPKcSP_mNS_8encodingESA_T_DpT0_E4args
|
|
86227
86258
|
_ZZN4node2fs13AsyncDestCallIPFiP9uv_loop_sP7uv_fs_siddPFvS5_EEJiddEEEPNS0_9FSReqBaseEPNS_11EnvironmentESB_RKN2v820FunctionCallbackInfoINSE_5ValueEEEPKcSL_mNS_8encodingES7_T_DpT0_E4args
|
|
86228
86259
|
_ZZN4node2fs13AsyncDestCallIPFiP9uv_loop_sP7uv_fs_siiPFvS5_EEJiiEEEPNS0_9FSReqBaseEPNS_11EnvironmentESB_RKN2v820FunctionCallbackInfoINSE_5ValueEEEPKcSL_mNS_8encodingES7_T_DpT0_E4args
|
|
@@ -86585,6 +86616,11 @@ ada_clear_search
|
|
|
86585
86616
|
ada_copy
|
|
86586
86617
|
ada_free
|
|
86587
86618
|
ada_free_owned_string
|
|
86619
|
+
ada_free_search_params
|
|
86620
|
+
ada_free_search_params_entries_iter
|
|
86621
|
+
ada_free_search_params_keys_iter
|
|
86622
|
+
ada_free_search_params_values_iter
|
|
86623
|
+
ada_free_strings
|
|
86588
86624
|
ada_get_components
|
|
86589
86625
|
ada_get_hash
|
|
86590
86626
|
ada_get_host
|
|
@@ -86612,7 +86648,28 @@ ada_idna_to_ascii
|
|
|
86612
86648
|
ada_idna_to_unicode
|
|
86613
86649
|
ada_is_valid
|
|
86614
86650
|
ada_parse
|
|
86651
|
+
ada_parse_search_params
|
|
86615
86652
|
ada_parse_with_base
|
|
86653
|
+
ada_search_params_append
|
|
86654
|
+
ada_search_params_entries_iter_has_next
|
|
86655
|
+
ada_search_params_entries_iter_next
|
|
86656
|
+
ada_search_params_get
|
|
86657
|
+
ada_search_params_get_all
|
|
86658
|
+
ada_search_params_get_entries
|
|
86659
|
+
ada_search_params_get_keys
|
|
86660
|
+
ada_search_params_get_values
|
|
86661
|
+
ada_search_params_has
|
|
86662
|
+
ada_search_params_has_value
|
|
86663
|
+
ada_search_params_keys_iter_has_next
|
|
86664
|
+
ada_search_params_keys_iter_next
|
|
86665
|
+
ada_search_params_remove
|
|
86666
|
+
ada_search_params_remove_value
|
|
86667
|
+
ada_search_params_set
|
|
86668
|
+
ada_search_params_size
|
|
86669
|
+
ada_search_params_sort
|
|
86670
|
+
ada_search_params_to_string
|
|
86671
|
+
ada_search_params_values_iter_has_next
|
|
86672
|
+
ada_search_params_values_iter_next
|
|
86616
86673
|
ada_set_hash
|
|
86617
86674
|
ada_set_host
|
|
86618
86675
|
ada_set_hostname
|
|
@@ -86624,6 +86681,8 @@ ada_set_protocol
|
|
|
86624
86681
|
ada_set_search
|
|
86625
86682
|
ada_set_username
|
|
86626
86683
|
ada_string_create
|
|
86684
|
+
ada_strings_get
|
|
86685
|
+
ada_strings_size
|
|
86627
86686
|
adler32
|
|
86628
86687
|
adler32_combine
|
|
86629
86688
|
adler32_combine64
|
|
@@ -86637,7 +86696,30 @@ ares__addrinfo_localhost
|
|
|
86637
86696
|
ares__append_addrinfo_cname
|
|
86638
86697
|
ares__append_addrinfo_node
|
|
86639
86698
|
ares__bitncmp
|
|
86699
|
+
ares__buf_append
|
|
86700
|
+
ares__buf_append_finish
|
|
86701
|
+
ares__buf_append_start
|
|
86702
|
+
ares__buf_begins_with
|
|
86703
|
+
ares__buf_consume
|
|
86704
|
+
ares__buf_consume_line
|
|
86705
|
+
ares__buf_consume_nonwhitespace
|
|
86706
|
+
ares__buf_consume_whitespace
|
|
86707
|
+
ares__buf_create
|
|
86708
|
+
ares__buf_create_const
|
|
86709
|
+
ares__buf_destroy
|
|
86710
|
+
ares__buf_fetch_be16
|
|
86711
|
+
ares__buf_fetch_bytes
|
|
86712
|
+
ares__buf_finish_bin
|
|
86713
|
+
ares__buf_finish_str
|
|
86714
|
+
ares__buf_len
|
|
86715
|
+
ares__buf_peek
|
|
86716
|
+
ares__buf_tag
|
|
86717
|
+
ares__buf_tag_clear
|
|
86718
|
+
ares__buf_tag_fetch
|
|
86719
|
+
ares__buf_tag_rollback
|
|
86640
86720
|
ares__cat_domain
|
|
86721
|
+
ares__check_cleanup_conn
|
|
86722
|
+
ares__close_connection
|
|
86641
86723
|
ares__close_socket
|
|
86642
86724
|
ares__close_sockets
|
|
86643
86725
|
ares__connect_socket
|
|
@@ -86650,23 +86732,73 @@ ares__freeaddrinfo_cnames
|
|
|
86650
86732
|
ares__freeaddrinfo_nodes
|
|
86651
86733
|
ares__generate_new_id
|
|
86652
86734
|
ares__get_hostent
|
|
86653
|
-
|
|
86654
|
-
|
|
86735
|
+
ares__htable_asvp_create
|
|
86736
|
+
ares__htable_asvp_destroy
|
|
86737
|
+
ares__htable_asvp_get
|
|
86738
|
+
ares__htable_asvp_get_direct
|
|
86739
|
+
ares__htable_asvp_insert
|
|
86740
|
+
ares__htable_asvp_num_keys
|
|
86741
|
+
ares__htable_asvp_remove
|
|
86742
|
+
ares__htable_create
|
|
86743
|
+
ares__htable_destroy
|
|
86744
|
+
ares__htable_get
|
|
86745
|
+
ares__htable_hash_FNV1a
|
|
86746
|
+
ares__htable_hash_FNV1a_casecmp
|
|
86747
|
+
ares__htable_insert
|
|
86748
|
+
ares__htable_num_keys
|
|
86749
|
+
ares__htable_remove
|
|
86750
|
+
ares__htable_stvp_create
|
|
86751
|
+
ares__htable_stvp_destroy
|
|
86752
|
+
ares__htable_stvp_get
|
|
86753
|
+
ares__htable_stvp_get_direct
|
|
86754
|
+
ares__htable_stvp_insert
|
|
86755
|
+
ares__htable_stvp_num_keys
|
|
86756
|
+
ares__htable_stvp_remove
|
|
86655
86757
|
ares__init_rand_state
|
|
86656
86758
|
ares__init_servers_state
|
|
86657
|
-
ares__insert_in_list
|
|
86658
|
-
ares__is_list_empty
|
|
86659
86759
|
ares__is_onion_domain
|
|
86660
|
-
|
|
86661
|
-
|
|
86662
|
-
|
|
86760
|
+
ares__llist_create
|
|
86761
|
+
ares__llist_destroy
|
|
86762
|
+
ares__llist_first_val
|
|
86763
|
+
ares__llist_insert_after
|
|
86764
|
+
ares__llist_insert_before
|
|
86765
|
+
ares__llist_insert_first
|
|
86766
|
+
ares__llist_insert_last
|
|
86767
|
+
ares__llist_last_val
|
|
86768
|
+
ares__llist_len
|
|
86769
|
+
ares__llist_node_claim
|
|
86770
|
+
ares__llist_node_destroy
|
|
86771
|
+
ares__llist_node_first
|
|
86772
|
+
ares__llist_node_last
|
|
86773
|
+
ares__llist_node_next
|
|
86774
|
+
ares__llist_node_parent
|
|
86775
|
+
ares__llist_node_prev
|
|
86776
|
+
ares__llist_node_replace
|
|
86777
|
+
ares__llist_node_val
|
|
86778
|
+
ares__llist_replace_destructor
|
|
86663
86779
|
ares__open_socket
|
|
86664
86780
|
ares__parse_into_addrinfo
|
|
86781
|
+
ares__rand_bytes
|
|
86665
86782
|
ares__read_line
|
|
86666
86783
|
ares__readaddrinfo
|
|
86667
|
-
ares__remove_from_list
|
|
86668
86784
|
ares__send_query
|
|
86669
86785
|
ares__single_domain
|
|
86786
|
+
ares__slist_create
|
|
86787
|
+
ares__slist_destroy
|
|
86788
|
+
ares__slist_first_val
|
|
86789
|
+
ares__slist_insert
|
|
86790
|
+
ares__slist_last_val
|
|
86791
|
+
ares__slist_len
|
|
86792
|
+
ares__slist_node_claim
|
|
86793
|
+
ares__slist_node_destroy
|
|
86794
|
+
ares__slist_node_find
|
|
86795
|
+
ares__slist_node_first
|
|
86796
|
+
ares__slist_node_last
|
|
86797
|
+
ares__slist_node_next
|
|
86798
|
+
ares__slist_node_parent
|
|
86799
|
+
ares__slist_node_prev
|
|
86800
|
+
ares__slist_node_val
|
|
86801
|
+
ares__slist_replace_destructor
|
|
86670
86802
|
ares__sortaddrinfo
|
|
86671
86803
|
ares__strsplit
|
|
86672
86804
|
ares__strsplit_free
|
|
@@ -86727,10 +86859,12 @@ ares_parse_uri_reply
|
|
|
86727
86859
|
ares_process
|
|
86728
86860
|
ares_process_fd
|
|
86729
86861
|
ares_query
|
|
86862
|
+
ares_query_qid
|
|
86730
86863
|
ares_realloc
|
|
86731
86864
|
ares_save_options
|
|
86732
86865
|
ares_search
|
|
86733
86866
|
ares_send
|
|
86867
|
+
ares_send_ex
|
|
86734
86868
|
ares_set_local_dev
|
|
86735
86869
|
ares_set_local_ip4
|
|
86736
86870
|
ares_set_local_ip6
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
#define V8_MAJOR_VERSION 11
|
|
12
12
|
#define V8_MINOR_VERSION 8
|
|
13
13
|
#define V8_BUILD_NUMBER 172
|
|
14
|
-
#define V8_PATCH_LEVEL
|
|
14
|
+
#define V8_PATCH_LEVEL 15
|
|
15
15
|
|
|
16
16
|
// Use 1 for candidates and 0 otherwise.
|
|
17
17
|
// (Boolean macro values are not supported by all preprocessors.)
|