node-aix-ppc64 19.2.0 → 19.3.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 CHANGED
@@ -8,7 +8,8 @@
8
8
  </tr>
9
9
  <tr>
10
10
  <td>
11
- <b><a href="#19.2.0">19.2.0</a></b><br/>
11
+ <b><a href="#19.3.0">19.3.0</a></b><br/>
12
+ <a href="#19.2.0">19.2.0</a><br/>
12
13
  <a href="#19.1.0">19.1.0</a><br/>
13
14
  <a href="#19.0.1">19.0.1</a><br/>
14
15
  <a href="#19.0.0">19.0.0</a><br/>
@@ -37,6 +38,199 @@
37
38
  * [io.js](CHANGELOG_IOJS.md)
38
39
  * [Archive](CHANGELOG_ARCHIVE.md)
39
40
 
41
+ <a id="19.3.0"></a>
42
+
43
+ ## 2022-12-14, Version 19.3.0 (Current), @targos
44
+
45
+ ### Notable Changes
46
+
47
+ #### Updated npm to 9.2.0
48
+
49
+ Based on the [list of guidelines we've established on integrating `npm` and `node`](https://github.com/npm/cli/wiki/Integrating-with-node),
50
+ here is a grouped list of the breaking changes with the reasoning as to why they
51
+ fit within the guidelines linked above. Note that all the breaking changes were
52
+ made in [9.0.0](https://github.com/npm/cli/releases/tag/v9.0.0).
53
+ All subsequent minor and patch releases after `npm@9.0.0` do not contain any
54
+ breaking changes.
55
+
56
+ ##### Engines
57
+
58
+ > Explanation: the node engines supported by `npm@9` make it safe to allow `npm@9` as the default in any LTS version of `14` or `16`, as well as anything later than or including `18.0.0`
59
+
60
+ * `npm` is now compatible with the following semver range for node: `^14.17.0 || ^16.13.0 || >=18.0.0`
61
+
62
+ ##### Filesystem
63
+
64
+ > Explanation: when run as root previous versions of npm attempted to manage file ownership automatically on the user's behalf. this behavior was problematic in many cases and has been removed in favor of allowing users to manage their own filesystem permissions
65
+
66
+ * `npm` will no longer attempt to modify ownership of files it creates.
67
+
68
+ ##### Auth
69
+
70
+ > Explanation: any errors thrown from users having unsupported auth configurations will show `npm config fix` in the remediation instructions, which will allow the user to automatically have their auth config fixed.
71
+
72
+ * The presence of auth related settings that are not scoped to a specific
73
+ registry found in a config file is no longer supported and will throw errors.
74
+
75
+ ##### Login
76
+
77
+ > Explanation: the default `auth-type` has changed and users can opt back into the old behavior with `npm config set auth-type=legacy`. `login` and `adduser` have also been seperated making each command more closely match it's name instead of being aliases for each other.
78
+
79
+ * Legacy auth types `sso`, `saml` & `legacy` have been consolidated into `"legacy"`.
80
+ * `auth-type` defaults to `"web"`
81
+ * `login` and `adduser` are now separate commands that send different data to the registry.
82
+ * `auth-type` config values `web` and `legacy` only try their respective methods,
83
+ npm no longer tries them all and waits to see which one doesn't fail.
84
+
85
+ ##### Tarball Packing
86
+
87
+ > Explanation: previously using multiple ignore/allow lists when packing was an undefined behavior, and now the order of operations is strictly defined when packing a tarball making it easier to follow and should only affect users relying on the previously undefined behavior.
88
+
89
+ * `npm pack` now follows a strict order of operations when applying ignore rules.
90
+ If a `files` array is present in the `package.json`, then rules in `.gitignore`
91
+ and `.npmignore` files from the root will be ignored.
92
+
93
+ ##### Display/Debug/Timing Info
94
+
95
+ > Explanation: these changes center around the display of information to the terminal including timing and debug log info. We do not anticipate these changes breaking any existing workflows.
96
+
97
+ * Links generated from git urls will now use `HEAD` instead of `master` as the default ref.
98
+ * `timing` has been removed as a value for `--loglevel`.
99
+ * `--timing` will show timing information regardless of `--loglevel`, except when `--silent`.
100
+ * When run with the `--timing` flag, `npm` now writes timing data to a file
101
+ alongside the debug log data, respecting the `logs-dir` option and falling
102
+ back to `<CACHE>/_logs/` dir, instead of directly inside the cache directory.
103
+ * The timing file data is no longer newline delimited JSON, and instead each run
104
+ will create a uniquely named `<ID>-timing.json` file, with the `<ID>` portion
105
+ being the same as the debug log.
106
+ * `npm` now outputs some json errors on stdout. Previously `npm` would output
107
+ all json formatted errors on stderr, making it difficult to parse as the
108
+ stderr stream usually has logs already written to it.
109
+
110
+ ##### Config/Command Deprecations or Removals
111
+
112
+ > Explanation: `install-links` is the only config or command in the list that has an effect on package installs. We fixed a number of issues that came up during prereleases with this change. It will also only be applied to new package trees created without a package-lock.json file. Any install with an existing lock file will not be changed.
113
+
114
+ * Deprecate boolean install flags in favor of `--install-strategy`.
115
+ * `npm config set` will no longer accept deprecated or invalid config options.
116
+ * `install-links` config defaults to `"true"`.
117
+ * `node-version` config has been removed.
118
+ * `npm-version` config has been removed.
119
+ * `npm access` subcommands have been renamed.
120
+ * `npm birthday` has been removed.
121
+ * `npm set-script` has been removed.
122
+ * `npm bin` has been removed (use `npx` or `npm exec` to execute binaries).
123
+
124
+ #### Other notable changes
125
+
126
+ * \[[`03db415540`](https://github.com/nodejs/node/commit/03db415540)] - **build**: disable v8 snapshot compression by default (Joyee Cheung) [#45716](https://github.com/nodejs/node/pull/45716)
127
+ * \[[`9f51b9e50d`](https://github.com/nodejs/node/commit/9f51b9e50d)] - **doc**: add doc-only deprecation for headers/trailers setters (Rich Trott) [#45697](https://github.com/nodejs/node/pull/45697)
128
+ * \[[`b010820c4e`](https://github.com/nodejs/node/commit/b010820c4e)] - **doc**: add Rafael Gonzaga to the TSC (Michael Dawson) [#45691](https://github.com/nodejs/node/pull/45691)
129
+ * \[[`b8b13dccd9`](https://github.com/nodejs/node/commit/b8b13dccd9)] - **(SEMVER-MINOR)** **net**: add autoSelectFamily and autoSelectFamilyAttemptTimeout options (Paolo Insogna) [#44731](https://github.com/nodejs/node/pull/44731)
130
+ * \[[`5d7cd363ab`](https://github.com/nodejs/node/commit/5d7cd363ab)] - **(SEMVER-MINOR)** **src**: add uvwasi version (Jithil P Ponnan) [#45639](https://github.com/nodejs/node/pull/45639)
131
+ * \[[`4165dcddf0`](https://github.com/nodejs/node/commit/95af851a25)] - **(SEMVER-MINOR)** **test\_runner**: add t.after() hook (Colin Ihrig) [#45792](https://github.com/nodejs/node/pull/45792)
132
+ * \[[`d1bd7796ad`](https://github.com/nodejs/node/commit/d1bd7796ad)] - **(SEMVER-MINOR)** **test\_runner**: don't use a symbol for runHook() (Colin Ihrig) [#45792](https://github.com/nodejs/node/pull/45792)
133
+ * \[[`691f58e76c`](https://github.com/nodejs/node/commit/691f58e76c)] - **tls**: remove trustcor root ca certificates (Ben Noordhuis) [#45776](https://github.com/nodejs/node/pull/45776)
134
+
135
+ ### Commits
136
+
137
+ * \[[`382efdf460`](https://github.com/nodejs/node/commit/382efdf460)] - **benchmark**: add variety of inputs to text-encoder (Yagiz Nizipli) [#45787](https://github.com/nodejs/node/pull/45787)
138
+ * \[[`102c2dc071`](https://github.com/nodejs/node/commit/102c2dc071)] - **benchmark**: make benchmarks runnable in older versions of Node.js (Joyee Cheung) [#45746](https://github.com/nodejs/node/pull/45746)
139
+ * \[[`e2caf7ced9`](https://github.com/nodejs/node/commit/e2caf7ced9)] - **bootstrap**: lazy load non-essential modules (Joyee Cheung) [#45659](https://github.com/nodejs/node/pull/45659)
140
+ * \[[`49840d443c`](https://github.com/nodejs/node/commit/49840d443c)] - **buffer**: remove unnecessary lazy loading (Antoine du Hamel) [#45807](https://github.com/nodejs/node/pull/45807)
141
+ * \[[`17847683dc`](https://github.com/nodejs/node/commit/17847683dc)] - **buffer**: make decodeUTF8 params loose (Yagiz Nizipli) [#45610](https://github.com/nodejs/node/pull/45610)
142
+ * \[[`03db415540`](https://github.com/nodejs/node/commit/03db415540)] - **build**: disable v8 snapshot compression by default (Joyee Cheung) [#45716](https://github.com/nodejs/node/pull/45716)
143
+ * \[[`95a23e24f3`](https://github.com/nodejs/node/commit/95a23e24f3)] - **build**: add python 3.11 support for android (Mohammed Keyvanzadeh) [#45765](https://github.com/nodejs/node/pull/45765)
144
+ * \[[`09bc89daba`](https://github.com/nodejs/node/commit/09bc89daba)] - **build**: rework gyp files for zlib (Richard Lau) [#45589](https://github.com/nodejs/node/pull/45589)
145
+ * \[[`b5b56b6b45`](https://github.com/nodejs/node/commit/b5b56b6b45)] - **crypto**: simplify lazy loading of internal modules (Antoine du Hamel) [#45809](https://github.com/nodejs/node/pull/45809)
146
+ * \[[`2e4d37e3f0`](https://github.com/nodejs/node/commit/2e4d37e3f0)] - **crypto**: fix CipherBase Update int32 overflow (Marco Ippolito) [#45769](https://github.com/nodejs/node/pull/45769)
147
+ * \[[`573eab9235`](https://github.com/nodejs/node/commit/573eab9235)] - **crypto**: refactor ArrayBuffer to bigint conversion utils (Antoine du Hamel) [#45567](https://github.com/nodejs/node/pull/45567)
148
+ * \[[`845f805490`](https://github.com/nodejs/node/commit/845f805490)] - **crypto**: refactor verify acceptable key usage functions (Filip Skokan) [#45569](https://github.com/nodejs/node/pull/45569)
149
+ * \[[`7cc9998737`](https://github.com/nodejs/node/commit/7cc9998737)] - **crypto**: fix ECDH webcrypto public CryptoKey usages (Filip Skokan) [#45569](https://github.com/nodejs/node/pull/45569)
150
+ * \[[`d030963f37`](https://github.com/nodejs/node/commit/d030963f37)] - **crypto**: validate CFRG webcrypto JWK import "d" and "x" are a pair (Filip Skokan) [#45569](https://github.com/nodejs/node/pull/45569)
151
+ * \[[`9cd106efdc`](https://github.com/nodejs/node/commit/9cd106efdc)] - **crypto**: use DataError for CFRG webcrypto raw and jwk import key checks (Filip Skokan) [#45569](https://github.com/nodejs/node/pull/45569)
152
+ * \[[`9e2e3de6ce`](https://github.com/nodejs/node/commit/9e2e3de6ce)] - **crypto**: use DataError for webcrypto keyData import failures (Filip Skokan) [#45569](https://github.com/nodejs/node/pull/45569)
153
+ * \[[`40037b4e79`](https://github.com/nodejs/node/commit/40037b4e79)] - **crypto**: fix X25519 and X448 webcrypto public CryptoKey usages (Filip Skokan) [#45569](https://github.com/nodejs/node/pull/45569)
154
+ * \[[`de2b6b97b9`](https://github.com/nodejs/node/commit/de2b6b97b9)] - **crypto**: ensure "x" is present when importing private CFRG webcrypto keys (Filip Skokan) [#45569](https://github.com/nodejs/node/pull/45569)
155
+ * \[[`75dbce9a07`](https://github.com/nodejs/node/commit/75dbce9a07)] - **deps**: upgrade npm to 9.2.0 (npm team) [#45780](https://github.com/nodejs/node/pull/45780)
156
+ * \[[`677eb62bf2`](https://github.com/nodejs/node/commit/677eb62bf2)] - **deps**: upgrade npm to 9.1.3 (npm team) [#45693](https://github.com/nodejs/node/pull/45693)
157
+ * \[[`1d823a6d30`](https://github.com/nodejs/node/commit/1d823a6d30)] - _**Revert**_ "**deps**: fix zlib compilation for CPUs without SIMD features" (Luigi Pinca) [#45589](https://github.com/nodejs/node/pull/45589)
158
+ * \[[`6b15994597`](https://github.com/nodejs/node/commit/6b15994597)] - **deps**: update undici to 5.13.0 (Node.js GitHub Bot) [#45634](https://github.com/nodejs/node/pull/45634)
159
+ * \[[`fbd2d27789`](https://github.com/nodejs/node/commit/fbd2d27789)] - **deps**: update corepack to 0.15.2 (Node.js GitHub Bot) [#45635](https://github.com/nodejs/node/pull/45635)
160
+ * \[[`60c9ac5178`](https://github.com/nodejs/node/commit/60c9ac5178)] - **deps**: update nghttp2 to 1.51.0 (Yagiz Nizipli) [#45537](https://github.com/nodejs/node/pull/45537)
161
+ * \[[`c8421204b0`](https://github.com/nodejs/node/commit/c8421204b0)] - **deps**: patch V8 to 10.8.168.21 (Michaël Zasso) [#45749](https://github.com/nodejs/node/pull/45749)
162
+ * \[[`c5277417c9`](https://github.com/nodejs/node/commit/c5277417c9)] - **diagnostics\_channel**: fix diagnostics channel memory leak (theanarkh) [#45633](https://github.com/nodejs/node/pull/45633)
163
+ * \[[`8a90f5c784`](https://github.com/nodejs/node/commit/8a90f5c784)] - **doc**: buffer.fill empty value (Marco Ippolito) [#45794](https://github.com/nodejs/node/pull/45794)
164
+ * \[[`9d6af617ea`](https://github.com/nodejs/node/commit/9d6af617ea)] - **doc**: add args of filter option of fs.cp (MURAKAMI Masahiko) [#45739](https://github.com/nodejs/node/pull/45739)
165
+ * \[[`8c728d2f02`](https://github.com/nodejs/node/commit/8c728d2f02)] - **doc**: disambiguate `native module` to `addon` (Daeyeon Jeong) [#45673](https://github.com/nodejs/node/pull/45673)
166
+ * \[[`7718ff82a4`](https://github.com/nodejs/node/commit/7718ff82a4)] - **doc**: using console.error for error cases in crypto and events (emirgoren) [#45640](https://github.com/nodejs/node/pull/45640)
167
+ * \[[`029060e6e4`](https://github.com/nodejs/node/commit/029060e6e4)] - **doc**: fix actual result of example is different in events (Deokjin Kim) [#45656](https://github.com/nodejs/node/pull/45656)
168
+ * \[[`9f51b9e50d`](https://github.com/nodejs/node/commit/9f51b9e50d)] - **doc**: add doc-only deprecation for headers/trailers setters (Rich Trott) [#45697](https://github.com/nodejs/node/pull/45697)
169
+ * \[[`801fe30488`](https://github.com/nodejs/node/commit/801fe30488)] - **doc**: add detail on how api docs are published (Michael Dawson) [#45626](https://github.com/nodejs/node/pull/45626)
170
+ * \[[`e124e2a6ee`](https://github.com/nodejs/node/commit/e124e2a6ee)] - **doc**: use console.error for error case in child\_process and dgram (Deokjin Kim) [#45690](https://github.com/nodejs/node/pull/45690)
171
+ * \[[`1b920287b6`](https://github.com/nodejs/node/commit/1b920287b6)] - **doc**: move streaming instruc to doc/contributing (Michael Dawson) [#45582](https://github.com/nodejs/node/pull/45582)
172
+ * \[[`b010820c4e`](https://github.com/nodejs/node/commit/b010820c4e)] - **doc**: add Rafael to the tsc (Michael Dawson) [#45691](https://github.com/nodejs/node/pull/45691)
173
+ * \[[`4fb7cf88e2`](https://github.com/nodejs/node/commit/4fb7cf88e2)] - **doc**: add missing line in debugger (Deokjin Kim) [#45632](https://github.com/nodejs/node/pull/45632)
174
+ * \[[`c0df265fea`](https://github.com/nodejs/node/commit/c0df265fea)] - **doc**: fix actual result of example is different in stream (Deokjin Kim) [#45619](https://github.com/nodejs/node/pull/45619)
175
+ * \[[`027e738064`](https://github.com/nodejs/node/commit/027e738064)] - **doc**: add `options` parameter to eventTarget.removeEventListener (Deokjin Kim) [#45667](https://github.com/nodejs/node/pull/45667)
176
+ * \[[`23ff5057b2`](https://github.com/nodejs/node/commit/23ff5057b2)] - **doc**: define "react-native" community condition (Alex Hunt) [#45367](https://github.com/nodejs/node/pull/45367)
177
+ * \[[`2e767bf18b`](https://github.com/nodejs/node/commit/2e767bf18b)] - **doc**: move os.machine() docs to sorted position (Colin Ihrig) [#45647](https://github.com/nodejs/node/pull/45647)
178
+ * \[[`aabfdef861`](https://github.com/nodejs/node/commit/aabfdef861)] - **doc**: use console.error for error case in fs, https, net and process (Deokjin Kim) [#45606](https://github.com/nodejs/node/pull/45606)
179
+ * \[[`3a02d50d35`](https://github.com/nodejs/node/commit/3a02d50d35)] - **doc**: add link to doc with social processes (Michael Dawson) [#45584](https://github.com/nodejs/node/pull/45584)
180
+ * \[[`e4316124fa`](https://github.com/nodejs/node/commit/e4316124fa)] - **fs**: fix `nonNativeWatcher` watching folder with existing files (Moshe Atlow) [#45500](https://github.com/nodejs/node/pull/45500)
181
+ * \[[`d272faa54d`](https://github.com/nodejs/node/commit/d272faa54d)] - **fs**: fix `nonNativeWatcher` leak of `StatWatchers` (Moshe Atlow) [#45501](https://github.com/nodejs/node/pull/45501)
182
+ * \[[`d64e773168`](https://github.com/nodejs/node/commit/d64e773168)] - **http**: make `OutgoingMessage` more streamlike (Robert Nagy) [#45672](https://github.com/nodejs/node/pull/45672)
183
+ * \[[`ed8ae88f30`](https://github.com/nodejs/node/commit/ed8ae88f30)] - **lib**: remove unnecessary lazy loading in `internal/encoding` (Antoine du Hamel) [#45810](https://github.com/nodejs/node/pull/45810)
184
+ * \[[`302c5240c5`](https://github.com/nodejs/node/commit/302c5240c5)] - **lib**: allow Writeable.toWeb() to work on http.Outgoing message (Debadree Chatterjee) [#45642](https://github.com/nodejs/node/pull/45642)
185
+ * \[[`e8745083b9`](https://github.com/nodejs/node/commit/e8745083b9)] - **lib**: check number of arguments in `EventTarget`'s function (Deokjin Kim) [#45668](https://github.com/nodejs/node/pull/45668)
186
+ * \[[`9f7bb5ce0e`](https://github.com/nodejs/node/commit/9f7bb5ce0e)] - **lib**: disambiguate `native module` to `binding` (Daeyeon Jeong) [#45673](https://github.com/nodejs/node/pull/45673)
187
+ * \[[`353339a552`](https://github.com/nodejs/node/commit/353339a552)] - **lib**: disambiguate `native module` to `builtin module` (Daeyeon Jeong) [#45673](https://github.com/nodejs/node/pull/45673)
188
+ * \[[`99410efd19`](https://github.com/nodejs/node/commit/99410efd19)] - **lib**: added SuiteContext class (Debadree Chatterjee) [#45687](https://github.com/nodejs/node/pull/45687)
189
+ * \[[`a79f37a0a7`](https://github.com/nodejs/node/commit/a79f37a0a7)] - **lib**: add missing type of removeEventListener in question (Deokjin Kim) [#45676](https://github.com/nodejs/node/pull/45676)
190
+ * \[[`e0750467e8`](https://github.com/nodejs/node/commit/e0750467e8)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#45814](https://github.com/nodejs/node/pull/45814)
191
+ * \[[`376f3468b9`](https://github.com/nodejs/node/commit/376f3468b9)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#45732](https://github.com/nodejs/node/pull/45732)
192
+ * \[[`a6e2cf2d6f`](https://github.com/nodejs/node/commit/a6e2cf2d6f)] - **meta**: add .mailmap entry for Stefan Stojanovic (Rich Trott) [#45703](https://github.com/nodejs/node/pull/45703)
193
+ * \[[`eb9a383d2a`](https://github.com/nodejs/node/commit/eb9a383d2a)] - **meta**: update AUTHORS info for nstepien (Nicolas Stepien) [#45692](https://github.com/nodejs/node/pull/45692)
194
+ * \[[`049ef342c6`](https://github.com/nodejs/node/commit/049ef342c6)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#45637](https://github.com/nodejs/node/pull/45637)
195
+ * \[[`b9c2fc7623`](https://github.com/nodejs/node/commit/b9c2fc7623)] - **net**: check `autoSelectFamilyAttemptTimeout` is positive (Deokjin Kim) [#45740](https://github.com/nodejs/node/pull/45740)
196
+ * \[[`b8b13dccd9`](https://github.com/nodejs/node/commit/b8b13dccd9)] - **(SEMVER-MINOR)** **net**: add autoSelectFamily and autoSelectFamilyAttemptTimeout options (Paolo Insogna) [#44731](https://github.com/nodejs/node/pull/44731)
197
+ * \[[`6962ef0df1`](https://github.com/nodejs/node/commit/6962ef0df1)] - **readline**: improve robustness against prototype mutation (Antoine du Hamel) [#45614](https://github.com/nodejs/node/pull/45614)
198
+ * \[[`7892e23e68`](https://github.com/nodejs/node/commit/7892e23e68)] - **repl**: do not define `wasi` on global with no flag (Kohei Ueno) [#45595](https://github.com/nodejs/node/pull/45595)
199
+ * \[[`349b4f8817`](https://github.com/nodejs/node/commit/349b4f8817)] - **src**: add internal isArrayBufferDetached (Yagiz Nizipli) [#45568](https://github.com/nodejs/node/pull/45568)
200
+ * \[[`5d7cd363ab`](https://github.com/nodejs/node/commit/5d7cd363ab)] - **(SEMVER-MINOR)** **src**: add uvwasi version (Jithil P Ponnan) [#45639](https://github.com/nodejs/node/pull/45639)
201
+ * \[[`8a03684018`](https://github.com/nodejs/node/commit/8a03684018)] - **src**: simplify NodeBIO::GetMethod initialization (Anna Henningsen) [#45799](https://github.com/nodejs/node/pull/45799)
202
+ * \[[`b35ebebc0e`](https://github.com/nodejs/node/commit/b35ebebc0e)] - **src**: make structuredClone work for process.env (Ben Noordhuis) [#45698](https://github.com/nodejs/node/pull/45698)
203
+ * \[[`81ab54035f`](https://github.com/nodejs/node/commit/81ab54035f)] - **src**: mark generated `snapshot_data` as `const` (Anna Henningsen) [#45786](https://github.com/nodejs/node/pull/45786)
204
+ * \[[`79edf257bb`](https://github.com/nodejs/node/commit/79edf257bb)] - **src**: cleanup on disambiguating native modules (Michael Dawson) [#45665](https://github.com/nodejs/node/pull/45665)
205
+ * \[[`c9cba2e873`](https://github.com/nodejs/node/commit/c9cba2e873)] - **src**: use `enum class` instead of `enum` in node\_i18n (Deokjin Kim) [#45646](https://github.com/nodejs/node/pull/45646)
206
+ * \[[`818028caba`](https://github.com/nodejs/node/commit/818028caba)] - **src**: rename internal module declaration as internal bindings (Chengzhong Wu) [#45551](https://github.com/nodejs/node/pull/45551)
207
+ * \[[`2fbe2f9f0a`](https://github.com/nodejs/node/commit/2fbe2f9f0a)] - **src,lib**: group properties used as constants from `util` binding (Daeyeon Jeong) [#45539](https://github.com/nodejs/node/pull/45539)
208
+ * \[[`56eee72abb`](https://github.com/nodejs/node/commit/56eee72abb)] - **stream**: use structuredClone instead of v8 (Yagiz Nizipli) [#45611](https://github.com/nodejs/node/pull/45611)
209
+ * \[[`b297dd5393`](https://github.com/nodejs/node/commit/b297dd5393)] - **test**: remove flaky parallel/test-process-wrap test (Ben Noordhuis) [#45806](https://github.com/nodejs/node/pull/45806)
210
+ * \[[`924f6ab3a1`](https://github.com/nodejs/node/commit/924f6ab3a1)] - **test**: order list alphabetically in `test-bootstrap-modules` (Antoine du Hamel) [#45808](https://github.com/nodejs/node/pull/45808)
211
+ * \[[`5c4475dab9`](https://github.com/nodejs/node/commit/5c4475dab9)] - **test**: fix invalid output TAP if there newline in test name (Pulkit Gupta) [#45742](https://github.com/nodejs/node/pull/45742)
212
+ * \[[`4c51c5c97a`](https://github.com/nodejs/node/commit/4c51c5c97a)] - **test**: fix -Wunused-variable on report-fatalerror (Santiago Gimeno) [#45747](https://github.com/nodejs/node/pull/45747)
213
+ * \[[`764725040c`](https://github.com/nodejs/node/commit/764725040c)] - **test**: fix test-watch-mode (Stefan Stojanovic) [#45585](https://github.com/nodejs/node/pull/45585)
214
+ * \[[`cd36250fcb`](https://github.com/nodejs/node/commit/cd36250fcb)] - **test**: fix test-watch-mode-inspect (Stefan Stojanovic) [#45586](https://github.com/nodejs/node/pull/45586)
215
+ * \[[`b55bd6e8c1`](https://github.com/nodejs/node/commit/b55bd6e8c1)] - **test**: fix typos in test/parallel (Deokjin Kim) [#45583](https://github.com/nodejs/node/pull/45583)
216
+ * \[[`358e2fe217`](https://github.com/nodejs/node/commit/358e2fe217)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#45569](https://github.com/nodejs/node/pull/45569)
217
+ * \[[`424419c2b4`](https://github.com/nodejs/node/commit/424419c2b4)] - **test\_runner**: refactor `tap_lexer` to use more primordials (Antoine du Hamel) [#45744](https://github.com/nodejs/node/pull/45744)
218
+ * \[[`ffc0f3d7be`](https://github.com/nodejs/node/commit/ffc0f3d7be)] - **test\_runner**: refactor `tap_parser` to use more primordials (Antoine du Hamel) [#45745](https://github.com/nodejs/node/pull/45745)
219
+ * \[[`4165dcddf0`](https://github.com/nodejs/node/commit/4165dcddf0)] - **(SEMVER-MINOR)** **test\_runner**: add t.after() hook (Colin Ihrig) [#45792](https://github.com/nodejs/node/pull/45792)
220
+ * \[[`d1bd7796ad`](https://github.com/nodejs/node/commit/d1bd7796ad)] - **(SEMVER-MINOR)** **test\_runner**: don't use a symbol for runHook() (Colin Ihrig) [#45792](https://github.com/nodejs/node/pull/45792)
221
+ * \[[`6bc7b7e6f4`](https://github.com/nodejs/node/commit/6bc7b7e6f4)] - **test\_runner**: add resetCalls to MockFunctionContext (MURAKAMI Masahiko) [#45710](https://github.com/nodejs/node/pull/45710)
222
+ * \[[`3e485365ec`](https://github.com/nodejs/node/commit/3e485365ec)] - **test\_runner**: don't parse TAP from stderr (Colin Ihrig) [#45618](https://github.com/nodejs/node/pull/45618)
223
+ * \[[`efc44567c9`](https://github.com/nodejs/node/commit/efc44567c9)] - **test\_runner**: add getter and setter to MockTracker (MURAKAMI Masahiko) [#45506](https://github.com/nodejs/node/pull/45506)
224
+ * \[[`c9cbd1d396`](https://github.com/nodejs/node/commit/c9cbd1d396)] - **test\_runner**: remove stdout and stderr from error (Colin Ihrig) [#45592](https://github.com/nodejs/node/pull/45592)
225
+ * \[[`691f58e76c`](https://github.com/nodejs/node/commit/691f58e76c)] - **tls**: remove trustcor root ca certificates (Ben Noordhuis) [#45776](https://github.com/nodejs/node/pull/45776)
226
+ * \[[`d384b73f76`](https://github.com/nodejs/node/commit/d384b73f76)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#45730](https://github.com/nodejs/node/pull/45730)
227
+ * \[[`324ae3d5dd`](https://github.com/nodejs/node/commit/324ae3d5dd)] - **tools**: add GitHub token permissions to label flaky-test issues (Gabriela Gutierrez) [#45308](https://github.com/nodejs/node/pull/45308)
228
+ * \[[`418ae9be56`](https://github.com/nodejs/node/commit/418ae9be56)] - **tools**: remove dependency vulnerability checker (Facundo Tuesca) [#45675](https://github.com/nodejs/node/pull/45675)
229
+ * \[[`238fc64c38`](https://github.com/nodejs/node/commit/238fc64c38)] - **tools**: update lint-md-dependencies to rollup\@3.4.0 (Node.js GitHub Bot) [#45638](https://github.com/nodejs/node/pull/45638)
230
+ * \[[`1b98f17876`](https://github.com/nodejs/node/commit/1b98f17876)] - **tools**: update doc to highlight.js\@11.7.0 (Node.js GitHub Bot) [#45636](https://github.com/nodejs/node/pull/45636)
231
+ * \[[`470384e7be`](https://github.com/nodejs/node/commit/470384e7be)] - **util**: use private symbols in JS land directly (Joyee Cheung) [#45379](https://github.com/nodejs/node/pull/45379)
232
+ * \[[`cee6f382d8`](https://github.com/nodejs/node/commit/cee6f382d8)] - **watch**: add CLI flag to preserve output (Debadree Chatterjee) [#45717](https://github.com/nodejs/node/pull/45717)
233
+
40
234
  <a id="19.2.0"></a>
41
235
 
42
236
  ## 2022-11-29, Version 19.2.0 (Current), @ruyadorno
package/README.md CHANGED
@@ -184,6 +184,8 @@ For information about the governance of the Node.js project, see
184
184
  **Matteo Collina** <<matteo.collina@gmail.com>> (he/him)
185
185
  * [mhdawson](https://github.com/mhdawson) -
186
186
  **Michael Dawson** <<midawson@redhat.com>> (he/him)
187
+ * [RafaelGSS](https://github.com/RafaelGSS) -
188
+ **Rafael Gonzaga** <<rafael.nunu@hotmail.com>> (he/him)
187
189
  * [RaisinTen](https://github.com/RaisinTen) -
188
190
  **Darshan Sen** <<raisinten@gmail.com>> (he/him)
189
191
  * [richardlau](https://github.com/richardlau) -
package/bin/node CHANGED
Binary file
@@ -5943,18 +5943,18 @@ _GLOBAL__F__ZNK2v88internal6torque4Rule9RunActionEPKNS1_4ItemERKNS1_11LexerResul
5943
5943
  _GLOBAL__I_65535_0_.._deps_v8_src_compiler_turboshaft_utils.cc_DFF67DD7_0xc6347abb8b5fa3ac
5944
5944
  _GLOBAL__I_65535_0_.._deps_v8_src_diagnostics_gdb_jit.cc_DFF67DD7_0x62b2e1bea09fb8c6
5945
5945
  _GLOBAL__I_65535_0_.._deps_v8_src_diagnostics_objects_debug.cc_FE345EE0_0xd902f75d22a9dd20
5946
- _GLOBAL__I_65535_0_.._deps_v8_src_execution_arguments.cc_DFF67DD7_0x57c5361c9a8cedf0
5947
- _GLOBAL__I_65535_0_.._deps_v8_src_execution_simulator_base.cc_7874F2D3_0xddee0ab1839098fc
5948
- _GLOBAL__I_65535_0_.._deps_v8_src_heap_evacuation_verifier.cc_FE345EE0_0x78149071c9ed1b33
5949
- _GLOBAL__I_65535_0_.._deps_v8_src_heap_factory_base.cc_7874F2D3_0xde263d07da9d9075
5946
+ _GLOBAL__I_65535_0_.._deps_v8_src_execution_arguments.cc_DFF67DD7_0xf70aa1862a5c9fde
5947
+ _GLOBAL__I_65535_0_.._deps_v8_src_execution_simulator_base.cc_7874F2D3_0xe2a0b8270ca66040
5948
+ _GLOBAL__I_65535_0_.._deps_v8_src_heap_evacuation_verifier.cc_FE345EE0_0xb9f87512ddd7db9b
5949
+ _GLOBAL__I_65535_0_.._deps_v8_src_heap_factory_base.cc_7874F2D3_0x8e2f2bfbf2f188a7
5950
5950
  _GLOBAL__I_65535_0_.._deps_v8_src_heap_heap_verifier.cc_7874F2D3_0x710b23867eca103f
5951
- _GLOBAL__I_65535_0_.._deps_v8_src_heap_objects_visiting.cc_DFF67DD7_0xa462e75e778fb45d
5952
- _GLOBAL__I_65535_0_.._deps_v8_src_objects_tagged_impl.cc_87E8306D_0x4b16252804b718f1
5953
- _GLOBAL__I_65535_0_.._deps_v8_src_runtime_runtime_trace.cc_FE345EE0_0xbf418a77400b68f3
5954
- _GLOBAL__I_65535_0_.._deps_v8_src_sandbox_external_pointer_table.cc_87E8306D_0x463fb06e2177b294
5955
- _GLOBAL__I_65535_0_.._deps_v8_src_sandbox_sandbox.cc_87E8306D_0x4819e3513e577ba5
5956
- _GLOBAL__I_65535_0_.._deps_v8_src_sandbox_testing.cc_7874F2D3_0x8c735a01a85773eb
5957
- _GLOBAL__I_65535_0_.._src_connection_wrap.cc_FE345EE0_0x9f32ab48629fab78
5951
+ _GLOBAL__I_65535_0_.._deps_v8_src_heap_objects_visiting.cc_DFF67DD7_0x3f6102153f3b4d66
5952
+ _GLOBAL__I_65535_0_.._deps_v8_src_objects_tagged_impl.cc_87E8306D_0xe4421dad64c6d34c
5953
+ _GLOBAL__I_65535_0_.._deps_v8_src_runtime_runtime_trace.cc_FE345EE0_0x3fdb7224da3cdf1e
5954
+ _GLOBAL__I_65535_0_.._deps_v8_src_sandbox_external_pointer_table.cc_87E8306D_0x24dde181f3cb03a6
5955
+ _GLOBAL__I_65535_0_.._deps_v8_src_sandbox_sandbox.cc_87E8306D_0xbca4b60d14735aae
5956
+ _GLOBAL__I_65535_0_.._deps_v8_src_sandbox_testing.cc_7874F2D3_0xadeea8daf0d1ef9e
5957
+ _GLOBAL__I_65535_0_.._src_connection_wrap.cc_FE345EE0_0x9087553a9dca2386
5958
5958
  _GLOBAL__I_65535_0_OPENSSL_ppccap_P
5959
5959
  _GLOBAL__I_65535_0__Z16_register_configv
5960
5960
  _GLOBAL__I_65535_0__Z17_register_symbolsv
@@ -6225,7 +6225,6 @@ _GLOBAL__I_65535_0__ZN2v88internal19CompiledReplacement7CompileEPNS0_7IsolateENS
6225
6225
  _GLOBAL__I_65535_0__ZN2v88internal19ConstantPoolBuilderC2Eii
6226
6226
  _GLOBAL__I_65535_0__ZN2v88internal19ContextDeserializer18DeserializeContextEPNS0_7IsolateEPKNS0_12SnapshotDataEbNS0_6HandleINS0_13JSGlobalProxyEEENS_33DeserializeInternalFieldsCallbackE
6227
6227
  _GLOBAL__I_65535_0__ZN2v88internal19FieldStatsCollector21GetInobjectFieldStatsENS0_3MapE
6228
- _GLOBAL__I_65535_0__ZN2v88internal19GetUncompressedSizeEPKh
6229
6228
  _GLOBAL__I_65535_0__ZN2v88internal19HeapStringAllocator8allocateEj
6230
6229
  _GLOBAL__I_65535_0__ZN2v88internal19IrregexpInterpreter5MatchEPNS0_7IsolateENS0_8JSRegExpENS0_6StringEPiiiNS0_6RegExp10CallOriginE
6231
6230
  _GLOBAL__I_65535_0__ZN2v88internal19IsContext_NonInlineENS0_10HeapObjectE
@@ -6997,9 +6996,9 @@ _GLOBAL__I_65535_0__ZNK2v88internal8compiler21PropertyAccessBuilder5graphEv
6997
6996
  _GLOBAL__I_65535_0__ZNK2v88internal9DebugInfo7IsEmptyEv
6998
6997
  _GLOBAL__I_65535_0__ZNK2v88internal9PreParser13GetIdentifierEv
6999
6998
  _GLOBAL__I_65535_0__ZNK4node10BaseObject15GetTransferModeEv
7000
- _GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_enum_verifiers.cc_FE345EE0_0xbd755512d1754ba5
7001
- _GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_factory.cc_7874F2D3_0x2f6603b183a6b369
7002
- _GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_src_objects_torque_defined_classes_tq_csa.cc_FE345EE0_0x7067089952c654da
6999
+ _GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_enum_verifiers.cc_FE345EE0_0xbb06f09975edb50d
7000
+ _GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_factory.cc_7874F2D3_0xd887d8c13559c86a
7001
+ _GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_src_objects_torque_defined_classes_tq_csa.cc_FE345EE0_0x5ac9ee9c658c27e0
7003
7002
  _GLOBAL__I_65535_0_nodedbg_const_ContextEmbedderIndex__kEnvironment__int
7004
7003
  _GLOBAL__I_65535_0_v8dbg_frametype_EntryFrame
7005
7004
  _HZData_72
@@ -20534,7 +20533,6 @@ _ZN2v88internal19GetLengthProperty_0EPNS0_8compiler18CodeAssemblerStateENS0_5TNo
20534
20533
  _ZN2v88internal19GetObjectFunction_0EPNS0_8compiler18CodeAssemblerStateENS0_5TNodeINS0_7ContextEEE
20535
20534
  _ZN2v88internal19GetPendingRunBase_0EPNS0_8compiler18CodeAssemblerStateENS0_5TNodeINS0_7ContextEEENS4_INS0_10FixedArrayEEENS4_INS0_3SmiEEE
20536
20535
  _ZN2v88internal19GetPromiseResolve_0EPNS0_8compiler18CodeAssemblerStateENS0_5TNodeINS0_7ContextEEENS4_INS0_13NativeContextEEENS4_INS0_10JSReceiverEEE
20537
- _ZN2v88internal19GetUncompressedSizeEPKh
20538
20536
  _ZN2v88internal19HandleForwardCase_0EPNS0_8compiler18CodeAssemblerStateENS0_5TNodeINS0_7ContextEEENS4_INS0_10JSReceiverEEENS4_INS0_6UnionTINS0_3SmiENS0_10HeapNumberEEEEESD_SD_SD_
20539
20537
  _ZN2v88internal19HeapStringAllocator4growEPj
20540
20538
  _ZN2v88internal19HeapStringAllocator8allocateEj
@@ -20788,8 +20786,6 @@ _ZN2v88internal19SmallOrderedHashSet3AddEPNS0_7IsolateENS0_6HandleIS1_EENS4_INS0
20788
20786
  _ZN2v88internal19SmallOrderedHashSet6DeleteEPNS0_7IsolateES1_NS0_6ObjectE
20789
20787
  _ZN2v88internal19SmallOrderedHashSet6HasKeyEPNS0_7IsolateENS0_6HandleINS0_6ObjectEEE
20790
20788
  _ZN2v88internal19SmallOrderedHashSet6RehashEPNS0_7IsolateENS0_6HandleIS1_EEi
20791
- _ZN2v88internal19SnapshotCompression10DecompressENS_4base6VectorIKhEE
20792
- _ZN2v88internal19SnapshotCompression8CompressEPKNS0_12SnapshotDataE
20793
20789
  _ZN2v88internal19SourcePositionTable11SetPositionEiii
20794
20790
  _ZN2v88internal19SpaceWithLinearArea21AddAllocationObserverEPNS0_18AllocationObserverE
20795
20791
  _ZN2v88internal19SpaceWithLinearArea22EnableInlineAllocationEv
@@ -32625,7 +32621,6 @@ _ZN2v88internal5Scope12NewTemporaryEPKNS0_12AstRawStringENS0_17MaybeAssignedFlag
32625
32621
  _ZN2v88internal5Scope13AddUnresolvedEPNS0_13VariableProxyE
32626
32622
  _ZN2v88internal5Scope13AsModuleScopeEv
32627
32623
  _ZN2v88internal5Scope14GetScriptScopeEv
32628
- _ZN2v88internal5Scope14RecordEvalCallEv
32629
32624
  _ZN2v88internal5Scope15DeclareVariableEPNS0_11DeclarationEPKNS0_12AstRawStringEiNS0_12VariableModeENS0_12VariableKindENS0_18InitializationFlagEPbSA_SA_
32630
32625
  _ZN2v88internal5Scope15GetClosureScopeEv
32631
32626
  _ZN2v88internal5Scope15ResolveVariableEPNS0_13VariableProxyE
@@ -48909,7 +48904,7 @@ _ZN4node10FileWriter5WriteINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEE
48909
48904
  _ZN4node10FileWriter5WriteIhEEmPKT_m
48910
48905
  _ZN4node10FileWriter5WriteIjEEmPKT_m
48911
48906
  _ZN4node10FileWriter5WriteImEEmPKT_m
48912
- _ZN4node10FormatBlobERSoPNS_12SnapshotDataE
48907
+ _ZN4node10FormatBlobERSoPKNS_12SnapshotDataE
48913
48908
  _ZN4node10HandleWrap11OnGCCollectEv
48914
48909
  _ZN4node10HandleWrap17MarkAsInitializedEv
48915
48910
  _ZN4node10HandleWrap19MarkAsUninitializedEv
@@ -49857,7 +49852,6 @@ _ZN4node15SimpleWriteWrapINS_7ReqWrapI10uv_write_sEEED1Ev
49857
49852
  _ZN4node15SimpleWriteWrapINS_9AsyncWrapEE12GetAsyncWrapEv
49858
49853
  _ZN4node15SimpleWriteWrapINS_9AsyncWrapEED0Ev
49859
49854
  _ZN4node15SimpleWriteWrapINS_9AsyncWrapEED1Ev
49860
- _ZN4node15SnapshotBuilder20snapshot_data_mutex_E
49861
49855
  _ZN4node15SnapshotBuilder23InitializeIsolateParamsEPKNS_12SnapshotDataEPN2v87Isolate12CreateParamsE
49862
49856
  _ZN4node15SnapshotBuilder25CollectExternalReferencesEv
49863
49857
  _ZN4node15SnapshotBuilder8GenerateEPNS_12SnapshotDataESt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS9_EESB_
@@ -49904,7 +49898,6 @@ _ZN4node16NodeMainInstanceD2Ev
49904
49898
  _ZN4node16RequestInterruptEPNS_11EnvironmentEPFvPvES2_
49905
49899
  _ZN4node17AliasedBufferBaseIdN2v812Float64ArrayEvEC1EPNS1_7IsolateEmmRKNS0_IhNS1_10Uint8ArrayEvEEPKm
49906
49900
  _ZN4node17AliasedBufferBaseIjN2v811Uint32ArrayEvEC1EPNS1_7IsolateEmmRKNS0_IhNS1_10Uint8ArrayEvEEPKm
49907
- _ZN4node17CreateEnvVarProxyEN2v85LocalINS0_7ContextEEEPNS0_7IsolateE
49908
49901
  _ZN4node17CreateEnvironmentEPNS_11IsolateDataEN2v85LocalINS2_7ContextEEERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaISC_EESG_NS_16EnvironmentFlags5FlagsENS_8ThreadIdESt10unique_ptrINS_21InspectorParentHandleESt14default_deleteISL_EE
49909
49902
  _ZN4node17CreateIsolateDataEPN2v87IsolateEP9uv_loop_sPNS_20MultiIsolatePlatformEPNS_20ArrayBufferAllocatorE
49910
49903
  _ZN4node17ERR_DLOPEN_FAILEDIJEEEN2v85LocalINS1_5ValueEEEPNS1_7IsolateEPKcDpOT_
@@ -50144,6 +50137,7 @@ _ZN4node22CommonEnvironmentSetupC1EPNS_20MultiIsolatePlatformEPSt6vectorINSt7__c
50144
50137
  _ZN4node22CommonEnvironmentSetupC2EPNS_20MultiIsolatePlatformEPSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS9_EESt8functionIFPNS_11EnvironmentEPKS0_EE
50145
50138
  _ZN4node22CommonEnvironmentSetupD1Ev
50146
50139
  _ZN4node22CommonEnvironmentSetupD2Ev
50140
+ _ZN4node22CreateEnvProxyTemplateEPN2v87IsolateEPNS_11IsolateDataE
50147
50141
  _ZN4node22CustomBufferJSListener12OnStreamReadElRK8uv_buf_t
50148
50142
  _ZN4node22CustomBufferJSListener13OnStreamAllocEm
50149
50143
  _ZN4node22CustomBufferJSListener15OnStreamDestroyEv
@@ -50652,6 +50646,7 @@ _ZN4node4util13WeakReference23PrepareForSerializationEN2v85LocalINS2_7ContextEEE
50652
50646
  _ZN4node4util13WeakReference3GetERKN2v820FunctionCallbackInfoINS2_5ValueEEE
50653
50647
  _ZN4node4util13WeakReference3NewERKN2v820FunctionCallbackInfoINS2_5ValueEEE
50654
50648
  _ZN4node4util13WeakReference6DecRefERKN2v820FunctionCallbackInfoINS2_5ValueEEE
50649
+ _ZN4node4util13WeakReference6GetRefERKN2v820FunctionCallbackInfoINS2_5ValueEEE
50655
50650
  _ZN4node4util13WeakReference6IncRefERKN2v820FunctionCallbackInfoINS2_5ValueEEE
50656
50651
  _ZN4node4util13WeakReference9SerializeEi
50657
50652
  _ZN4node4util13WeakReferenceC1EPNS_11EnvironmentEN2v85LocalINS4_6ObjectEEES7_
@@ -52014,6 +52009,7 @@ _ZN4node7FPrintFIJmPKcEEEvP4FILES2_DpOT_
52014
52009
  _ZN4node7FPrintFIJmRiEEEvP4FILEPKcDpOT_
52015
52010
  _ZN4node7FPrintFIJmmEEEvP4FILEPKcDpOT_
52016
52011
  _ZN4node7FPrintFIJmmmmEEEvP4FILEPKcDpOT_
52012
+ _ZN4node7KVStore14AssignToObjectEPN2v87IsolateENS1_5LocalINS1_7ContextEEENS4_INS1_6ObjectEEE
52017
52013
  _ZN4node7KVStore16AssignFromObjectEN2v85LocalINS1_7ContextEEENS2_INS1_6ObjectEEE
52018
52014
  _ZN4node7KVStore16CreateMapKVStoreEv
52019
52015
  _ZN4node7ReqWrapI10uv_write_sE12GetAsyncWrapEv
@@ -52196,7 +52192,7 @@ _ZN4node7UDPWrapD1Ev
52196
52192
  _ZN4node7binding16GetLinkedBindingERKN2v820FunctionCallbackInfoINS1_5ValueEEE
52197
52193
  _ZN4node7binding18GetInternalBindingERKN2v820FunctionCallbackInfoINS1_5ValueEEE
52198
52194
  _ZN4node7binding19global_handle_map_tD1Ev
52199
- _ZN4node7binding22RegisterBuiltinModulesEv
52195
+ _ZN4node7binding23RegisterBuiltinBindingsEv
52200
52196
  _ZN4node7binding26RegisterExternalReferencesEPNS_25ExternalReferenceRegistryE
52201
52197
  _ZN4node7binding4DLib16GetSymbolAddressEPKc
52202
52198
  _ZN4node7binding4DLib21SaveInGlobalHandleMapEPNS_11node_moduleE
@@ -63654,18 +63650,11 @@ _ZNK4node11ConnectWrap14MemoryInfoNameB5cxx11Ev
63654
63650
  _ZNK4node11ConnectWrap8SelfSizeEv
63655
63651
  _ZNK4node11Environment10IsRootNodeEv
63656
63652
  _ZNK4node11Environment10MemoryInfoEPNS_13MemoryTrackerE
63657
- _ZNK4node11Environment12napi_wrapperEv
63658
- _ZNK4node11Environment13napi_type_tagEv
63659
63653
  _ZNK4node11Environment14MemoryInfoNameB5cxx11Ev
63660
63654
  _ZNK4node11Environment14PrintSyncTraceEv
63661
63655
  _ZNK4node11Environment17worker_parent_envEv
63662
- _ZNK4node11Environment24decorated_private_symbolEv
63663
63656
  _ZNK4node11Environment26RunSnapshotDeserializeMainEv
63664
- _ZNK4node11Environment27exiting_aliased_Uint32ArrayEv
63665
63657
  _ZNK4node11Environment28RunSnapshotSerializeCallbackEv
63666
- _ZNK4node11Environment28arrow_message_private_symbolEv
63667
- _ZNK4node11Environment33contextify_context_private_symbolEv
63668
- _ZNK4node11Environment36untransferable_object_private_symbolEv
63669
63658
  _ZNK4node11Environment8SelfSizeEv
63670
63659
  _ZNK4node11IsolateData10MemoryInfoEPNS_13MemoryTrackerE
63671
63660
  _ZNK4node11IsolateData14MemoryInfoNameB5cxx11Ev
@@ -67109,7 +67098,6 @@ _ZNKSt10_HashtableINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIK
67109
67098
  _ZNKSt10_HashtableINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_St10unique_ptrIN4node9inspector16InspectorSessionESt14default_deleteISB_EEESaISF_ENSt8__detail10_Select1stESt8equal_toIS5_ESt4hashIS5_ENSH_18_Mod_range_hashingENSH_20_Default_ranged_hashENSH_20_Prime_rehash_policyENSH_17_Hashtable_traitsILb1ELb0ELb1EEEE19_M_find_before_nodeEmRS7_m
67110
67099
  _ZNKSt10_HashtableINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_St10unique_ptrIN4node9inspector8protocol5ValueESt14default_deleteISC_EEESaISG_ENSt8__detail10_Select1stESt8equal_toIS5_ESt4hashIS5_ENSI_18_Mod_range_hashingENSI_20_Default_ranged_hashENSI_20_Prime_rehash_policyENSI_17_Hashtable_traitsILb1ELb0ELb1EEEE19_M_find_before_nodeEmRS7_m
67111
67100
  _ZNKSt10_HashtableINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_St10unique_ptrIN4node9inspector8protocol5ValueESt14default_deleteISC_EEESaISG_ENSt8__detail10_Select1stESt8equal_toIS5_ESt4hashIS5_ENSI_18_Mod_range_hashingENSI_20_Default_ranged_hashENSI_20_Prime_rehash_policyENSI_17_Hashtable_traitsILb1ELb0ELb1EEEE4findERS7_
67112
- _ZNKSt10_HashtableINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_St6vectorIS5_SaIS5_EEESaISB_ENSt8__detail10_Select1stESt8equal_toIS5_ESt4hashIS5_ENSD_18_Mod_range_hashingENSD_20_Default_ranged_hashENSD_20_Prime_rehash_policyENSD_17_Hashtable_traitsILb1ELb0ELb1EEEE19_M_find_before_nodeEmRS7_m
67113
67101
  _ZNKSt10_HashtableINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_St6vectorIS5_SaIS5_EEESaISB_ENSt8__detail10_Select1stESt8equal_toIS5_ESt4hashIS5_ENSD_18_Mod_range_hashingENSD_20_Default_ranged_hashENSD_20_Prime_rehash_policyENSD_17_Hashtable_traitsILb1ELb0ELb1EEEE4findERS7_
67114
67102
  _ZNKSt10_HashtableINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_St8weak_ptrIN4node6worker12SiblingGroupEEESaISD_ENSt8__detail10_Select1stESt8equal_toIS5_ESt4hashIS5_ENSF_18_Mod_range_hashingENSF_20_Default_ranged_hashENSF_20_Prime_rehash_policyENSF_17_Hashtable_traitsILb1ELb0ELb1EEEE19_M_find_before_nodeEmRS7_m
67115
67103
  _ZNKSt10_HashtableINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_iESaIS8_ENSt8__detail10_Select1stESt8equal_toIS5_ESt4hashIS5_ENSA_18_Mod_range_hashingENSA_20_Default_ranged_hashENSA_20_Prime_rehash_policyENSA_17_Hashtable_traitsILb1ELb0ELb1EEEE19_M_find_before_nodeEmRS7_m
@@ -68228,8 +68216,6 @@ _ZNSt6vectorIN2v88internal11interpreter20ConstantArrayBuilder5EntryENS1_13ZoneAl
68228
68216
  _ZNSt6vectorIN2v88internal12DeserializerINS1_12LocalIsolateEE20UnresolvedForwardRefESaIS5_EE12emplace_backIJNS1_6HandleINS1_10HeapObjectEEEiRNS1_23HeapObjectReferenceTypeEEEERS5_DpOT_
68229
68217
  _ZNSt6vectorIN2v88internal12DeserializerINS1_7IsolateEE20UnresolvedForwardRefESaIS5_EE12emplace_backIJNS1_6HandleINS1_10HeapObjectEEEiRNS1_23HeapObjectReferenceTypeEEEERS5_DpOT_
68230
68218
  _ZNSt6vectorIN2v88internal12FrameSummaryESaIS2_EE17_M_realloc_insertIJS2_EEEvN9__gnu_cxx17__normal_iteratorIPS2_S4_EEDpOT_
68231
- _ZNSt6vectorIN2v88internal12SnapshotDataESaIS2_EE17_M_realloc_insertIJS2_EEEvN9__gnu_cxx17__normal_iteratorIPS2_S4_EEDpOT_
68232
- _ZNSt6vectorIN2v88internal12SnapshotDataESaIS2_EE7reserveEm
68233
68219
  _ZNSt6vectorIN2v88internal12trap_handler24ProtectedInstructionDataENS1_13ZoneAllocatorIS3_EEE17_M_realloc_insertIJS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S6_EEDpOT_
68234
68220
  _ZNSt6vectorIN2v88internal13BreakLocationESaIS2_EE17_M_realloc_insertIJS2_EEEvN9__gnu_cxx17__normal_iteratorIPS2_S4_EEDpOT_
68235
68221
  _ZNSt6vectorIN2v88internal13ChunkedStreamIhE5ChunkESaIS4_EE17_M_realloc_insertIJPKhRmmEEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_
@@ -75039,8 +75025,6 @@ _ZZN4node2fs12FSReqPromiseINS_17AliasedBufferBaseIlN2v813BigInt64ArrayEvEEED4EvE
75039
75025
  _ZZN4node2fs18FSContinuationData7PopPathB5cxx11EvE4args
75040
75026
  _ZZN4node2fs9FSReqBase4InitEPKcS3_mNS_8encodingEE4args
75041
75027
  _ZZN4node4heap13JSGraphJSNodeC4EPN2v87IsolateENS2_5LocalINS2_5ValueEEEE4args
75042
- _ZZN4node4util20IndexToPrivateSymbolEPNS_11EnvironmentEjE4args
75043
- _ZZN4node4util20IndexToPrivateSymbolEPNS_11EnvironmentEjE7methods
75044
75028
  _ZZN4node5http226Http2RcBufferPointerTraits7get_vecEP13nghttp2_rcbufE4args
75045
75029
  _ZZN4node5http226Http2RcBufferPointerTraits9is_staticEPK13nghttp2_rcbufE4args
75046
75030
  _ZZN4node6CallocI16uvwasi_preopen_sEEPT_mE4args
@@ -76714,11 +76698,14 @@ nghttp2_bufs_wrap_init2
76714
76698
  nghttp2_check_authority
76715
76699
  nghttp2_check_header_name
76716
76700
  nghttp2_check_header_value
76701
+ nghttp2_check_header_value_rfc9113
76717
76702
  nghttp2_check_method
76718
76703
  nghttp2_check_path
76719
76704
  nghttp2_cpymem
76720
76705
  nghttp2_downcase
76721
76706
  nghttp2_enable_strict_preface
76707
+ nghttp2_extpri_from_uint8
76708
+ nghttp2_extpri_to_uint8
76722
76709
  nghttp2_frame_add_pad
76723
76710
  nghttp2_frame_altsvc_free
76724
76711
  nghttp2_frame_altsvc_init
@@ -76743,6 +76730,7 @@ nghttp2_frame_pack_origin
76743
76730
  nghttp2_frame_pack_ping
76744
76731
  nghttp2_frame_pack_priority
76745
76732
  nghttp2_frame_pack_priority_spec
76733
+ nghttp2_frame_pack_priority_update
76746
76734
  nghttp2_frame_pack_push_promise
76747
76735
  nghttp2_frame_pack_rst_stream
76748
76736
  nghttp2_frame_pack_settings
@@ -76753,6 +76741,8 @@ nghttp2_frame_ping_init
76753
76741
  nghttp2_frame_priority_free
76754
76742
  nghttp2_frame_priority_init
76755
76743
  nghttp2_frame_priority_len
76744
+ nghttp2_frame_priority_update_free
76745
+ nghttp2_frame_priority_update_init
76756
76746
  nghttp2_frame_push_promise_free
76757
76747
  nghttp2_frame_push_promise_init
76758
76748
  nghttp2_frame_rst_stream_free
@@ -76770,6 +76760,7 @@ nghttp2_frame_unpack_origin_payload
76770
76760
  nghttp2_frame_unpack_ping_payload
76771
76761
  nghttp2_frame_unpack_priority_payload
76772
76762
  nghttp2_frame_unpack_priority_spec
76763
+ nghttp2_frame_unpack_priority_update_payload
76773
76764
  nghttp2_frame_unpack_push_promise_payload
76774
76765
  nghttp2_frame_unpack_rst_stream_payload
76775
76766
  nghttp2_frame_unpack_settings_entry
@@ -76828,6 +76819,7 @@ nghttp2_http_on_remote_end_stream
76828
76819
  nghttp2_http_on_request_headers
76829
76820
  nghttp2_http_on_response_headers
76830
76821
  nghttp2_http_on_trailer_headers
76822
+ nghttp2_http_parse_priority
76831
76823
  nghttp2_http_record_request_method
76832
76824
  nghttp2_increase_local_window_size
76833
76825
  nghttp2_is_fatal
@@ -76866,7 +76858,9 @@ nghttp2_option_set_no_auto_window_update
76866
76858
  nghttp2_option_set_no_closed_streams
76867
76859
  nghttp2_option_set_no_http_messaging
76868
76860
  nghttp2_option_set_no_recv_client_magic
76861
+ nghttp2_option_set_no_rfc9113_leading_and_trailing_ws_validation
76869
76862
  nghttp2_option_set_peer_max_concurrent_streams
76863
+ nghttp2_option_set_server_fallback_rfc7540_priorities
76870
76864
  nghttp2_option_set_user_recv_extension_type
76871
76865
  nghttp2_outbound_item_free
76872
76866
  nghttp2_outbound_item_init
@@ -76938,6 +76932,7 @@ nghttp2_session_callbacks_set_select_padding_callback
76938
76932
  nghttp2_session_callbacks_set_send_callback
76939
76933
  nghttp2_session_callbacks_set_send_data_callback
76940
76934
  nghttp2_session_callbacks_set_unpack_extension_callback
76935
+ nghttp2_session_change_extpri_stream_priority
76941
76936
  nghttp2_session_change_stream_priority
76942
76937
  nghttp2_session_check_request_allowed
76943
76938
  nghttp2_session_check_server_session
@@ -76988,6 +76983,7 @@ nghttp2_session_on_headers_received
76988
76983
  nghttp2_session_on_origin_received
76989
76984
  nghttp2_session_on_ping_received
76990
76985
  nghttp2_session_on_priority_received
76986
+ nghttp2_session_on_priority_update_received
76991
76987
  nghttp2_session_on_push_promise_received
76992
76988
  nghttp2_session_on_push_response_headers_received
76993
76989
  nghttp2_session_on_request_headers_received
@@ -77020,6 +77016,8 @@ nghttp2_session_upgrade2
77020
77016
  nghttp2_session_want_read
77021
77017
  nghttp2_session_want_write
77022
77018
  nghttp2_set_debug_vprintf_callback
77019
+ nghttp2_sf_parse_inner_list
77020
+ nghttp2_sf_parse_item
77023
77021
  nghttp2_should_send_window_update
77024
77022
  nghttp2_stream_attach_item
77025
77023
  nghttp2_stream_change_weight
@@ -77062,6 +77060,7 @@ nghttp2_submit_headers
77062
77060
  nghttp2_submit_origin
77063
77061
  nghttp2_submit_ping
77064
77062
  nghttp2_submit_priority
77063
+ nghttp2_submit_priority_update
77065
77064
  nghttp2_submit_push_promise
77066
77065
  nghttp2_submit_request
77067
77066
  nghttp2_submit_response
@@ -23,7 +23,7 @@
23
23
  #define SRC_NODE_VERSION_H_
24
24
 
25
25
  #define NODE_MAJOR_VERSION 19
26
- #define NODE_MINOR_VERSION 2
26
+ #define NODE_MINOR_VERSION 3
27
27
  #define NODE_PATCH_VERSION 0
28
28
 
29
29
  #define NODE_VERSION_IS_LTS 0
@@ -11,7 +11,7 @@
11
11
  #define V8_MAJOR_VERSION 10
12
12
  #define V8_MINOR_VERSION 8
13
13
  #define V8_BUILD_NUMBER 168
14
- #define V8_PATCH_LEVEL 20
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-aix-ppc64",
3
- "version": "v19.2.0",
3
+ "version": "v19.3.0",
4
4
  "description": "node",
5
5
  "bin": {
6
6
  "node": "bin/node"