node-aix-ppc64 18.5.0 → 18.6.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,6 +8,7 @@
8
8
  </tr>
9
9
  <tr>
10
10
  <td>
11
+ <a href="#18.6.0">18.6.0</a><br/>
11
12
  <a href="#18.5.0">18.5.0</a><br/>
12
13
  <a href="#18.4.0">18.4.0</a><br/>
13
14
  <a href="#18.3.0">18.3.0</a><br/>
@@ -38,29 +39,271 @@
38
39
  * [io.js](CHANGELOG_IOJS.md)
39
40
  * [Archive](CHANGELOG_ARCHIVE.md)
40
41
 
42
+ <a id="18.6.0"></a>
43
+
44
+ ## 2022-07-13, Version 18.6.0 (Current), @targos
45
+
46
+ ### Notable Changes
47
+
48
+ #### Experimental ESM Loader Hooks API
49
+
50
+ Node.js ESM Loader hooks now support multiple custom loaders, and composition is
51
+ achieved via "chaining": `foo-loader` calls `bar-loader` calls `qux-loader`
52
+ (a custom loader _must_ now signal a short circuit when intentionally not
53
+ calling the next). See the [ESM docs](https://nodejs.org/api/esm.html) for details.
54
+
55
+ Real-world use-cases are laid out for end-users with working examples in the
56
+ article [Custom ESM loaders: Who, what, when, where, why, how](https://dev.to/jakobjingleheimer/custom-esm-loaders-who-what-when-where-why-how-4i1o).
57
+
58
+ Contributed by Jacob Smith, Geoffrey Booth, and Bradley Farias - <https://github.com/nodejs/node/pull/42623>
59
+
60
+ ### Commits
61
+
62
+ #### Semver-minor commits
63
+
64
+ * \[[`0bca7b722e`](https://github.com/nodejs/node/commit/0bca7b722e)] - **(SEMVER-MINOR)** **dns**: export error code constants from `dns/promises` (Feng Yu) [#43176](https://github.com/nodejs/node/pull/43176)
65
+ * \[[`da61e2330f`](https://github.com/nodejs/node/commit/da61e2330f)] - **(SEMVER-MINOR)** **esm**: add chaining to loaders (Jacob Smith) [#42623](https://github.com/nodejs/node/pull/42623)
66
+ * \[[`8c97f63401`](https://github.com/nodejs/node/commit/8c97f63401)] - **(SEMVER-MINOR)** **http**: add diagnostics channel for http client (theanarkh) [#43580](https://github.com/nodejs/node/pull/43580)
67
+ * \[[`b27856d3d4`](https://github.com/nodejs/node/commit/b27856d3d4)] - **(SEMVER-MINOR)** **http**: add perf\_hooks detail for http request and client (theanarkh) [#43361](https://github.com/nodejs/node/pull/43361)
68
+ * \[[`9d918d9923`](https://github.com/nodejs/node/commit/9d918d9923)] - **(SEMVER-MINOR)** **module**: add isBuiltIn method (hemanth.hm) [#43396](https://github.com/nodejs/node/pull/43396)
69
+ * \[[`a0e7b9983c`](https://github.com/nodejs/node/commit/a0e7b9983c)] - **(SEMVER-MINOR)** **net**: add drop event for net server (theanarkh) [#43582](https://github.com/nodejs/node/pull/43582)
70
+ * \[[`4bda6e02a3`](https://github.com/nodejs/node/commit/4bda6e02a3)] - **(SEMVER-MINOR)** **test\_runner**: expose `describe` and `it` (Moshe Atlow) [#43420](https://github.com/nodejs/node/pull/43420)
71
+ * \[[`34e83312a4`](https://github.com/nodejs/node/commit/34e83312a4)] - **(SEMVER-MINOR)** **v8**: add v8.startupSnapshot utils (Joyee Cheung) [#43329](https://github.com/nodejs/node/pull/43329)
72
+
73
+ #### Semver-patch commits
74
+
75
+ * \[[`ef174eac87`](https://github.com/nodejs/node/commit/ef174eac87)] - **assert**: callTracker throw a specific error message when possible (Moshe Atlow) [#43640](https://github.com/nodejs/node/pull/43640)
76
+ * \[[`07836637af`](https://github.com/nodejs/node/commit/07836637af)] - **bootstrap**: move global initialization to js (Alena Khineika) [#43625](https://github.com/nodejs/node/pull/43625)
77
+ * \[[`e9ee7e44be`](https://github.com/nodejs/node/commit/e9ee7e44be)] - **build,test**: increase stack size limit on Windows (Tobias Nießen) [#43632](https://github.com/nodejs/node/pull/43632)
78
+ * \[[`3ca9e653a6`](https://github.com/nodejs/node/commit/3ca9e653a6)] - **child\_process**: improve ipc write performance (rubikscraft) [#42931](https://github.com/nodejs/node/pull/42931)
79
+ * \[[`cad6d990ec`](https://github.com/nodejs/node/commit/cad6d990ec)] - **child\_process**: speed up 'advanced' ipc receiving (rubikscraft) [#42931](https://github.com/nodejs/node/pull/42931)
80
+ * \[[`ce3a22a9e3`](https://github.com/nodejs/node/commit/ce3a22a9e3)] - **cluster**: fix closing dgram sockets in cluster workers throws errors (Ouyang Yadong) [#43709](https://github.com/nodejs/node/pull/43709)
81
+ * \[[`5d8ee519db`](https://github.com/nodejs/node/commit/5d8ee519db)] - **cluster**: fix fd leak (theanarkh) [#43650](https://github.com/nodejs/node/pull/43650)
82
+ * \[[`fa5c4643e2`](https://github.com/nodejs/node/commit/fa5c4643e2)] - **cluster, net**: fix listen pipe with readable and writable in cluster (theanarkh) [#43634](https://github.com/nodejs/node/pull/43634)
83
+ * \[[`4df96b501d`](https://github.com/nodejs/node/commit/4df96b501d)] - **crypto**: don't disable TLS 1.3 without suites (Adam Majer) [#43427](https://github.com/nodejs/node/pull/43427)
84
+ * \[[`a43928ae78`](https://github.com/nodejs/node/commit/a43928ae78)] - **crypto**: use ByteSource::Builder in To\*Copy (Tobias Nießen) [#43477](https://github.com/nodejs/node/pull/43477)
85
+ * \[[`bb326f7ece`](https://github.com/nodejs/node/commit/bb326f7ece)] - **crypto**: handle webcrypto generateKey() usages edge case (Filip Skokan) [#43454](https://github.com/nodejs/node/pull/43454)
86
+ * \[[`9bd13bbb3a`](https://github.com/nodejs/node/commit/9bd13bbb3a)] - **crypto**: update Wrapping and unwrapping keys webcrypto example (Filip Skokan) [#43452](https://github.com/nodejs/node/pull/43452)
87
+ * \[[`679f19128e`](https://github.com/nodejs/node/commit/679f19128e)] - **crypto**: fix webcrypto generateKey() with empty usages (Filip Skokan) [#43431](https://github.com/nodejs/node/pull/43431)
88
+ * \[[`64a9dd7b83`](https://github.com/nodejs/node/commit/64a9dd7b83)] - **crypto**: fix webcrypto digest() invalid algorithm (Filip Skokan) [#43431](https://github.com/nodejs/node/pull/43431)
89
+ * \[[`dedb22e965`](https://github.com/nodejs/node/commit/dedb22e965)] - **crypto**: fix webcrypto RSA generateKey() use of publicExponent (Filip Skokan) [#43431](https://github.com/nodejs/node/pull/43431)
90
+ * \[[`018f61cb4f`](https://github.com/nodejs/node/commit/018f61cb4f)] - **crypto**: fix webcrypto AES-KW keys accepting encrypt/decrypt usages (Filip Skokan) [#43431](https://github.com/nodejs/node/pull/43431)
91
+ * \[[`3ee0bb8d03`](https://github.com/nodejs/node/commit/3ee0bb8d03)] - **crypto**: fix webcrypto deriveBits for non-byte lengths (Filip Skokan) [#43431](https://github.com/nodejs/node/pull/43431)
92
+ * \[[`7fc075b23a`](https://github.com/nodejs/node/commit/7fc075b23a)] - **deps**: update undici to 5.7.0 (Node.js GitHub Bot) [#43790](https://github.com/nodejs/node/pull/43790)
93
+ * \[[`d6a9e93426`](https://github.com/nodejs/node/commit/d6a9e93426)] - **deps**: patch V8 to 10.2.154.13 (Michaël Zasso) [#43727](https://github.com/nodejs/node/pull/43727)
94
+ * \[[`428d03cb94`](https://github.com/nodejs/node/commit/428d03cb94)] - **deps**: update corepack to 0.12.0 (Node.js GitHub Bot) [#43748](https://github.com/nodejs/node/pull/43748)
95
+ * \[[`74914698e5`](https://github.com/nodejs/node/commit/74914698e5)] - **deps**: upgrade npm to 8.13.2 (npm team) [#43622](https://github.com/nodejs/node/pull/43622)
96
+ * \[[`0636f86ecc`](https://github.com/nodejs/node/commit/0636f86ecc)] - **deps**: upgrade npm to 8.13.1 (npm team) [#43552](https://github.com/nodejs/node/pull/43552)
97
+ * \[[`2149acda60`](https://github.com/nodejs/node/commit/2149acda60)] - **dns**: make promise API fully constructed from `lib/internal/dns/promises` (Feng Yu) [#43227](https://github.com/nodejs/node/pull/43227)
98
+ * \[[`79ea19e5e2`](https://github.com/nodejs/node/commit/79ea19e5e2)] - **errors**: extract type detection & use in `ERR_INVALID_RETURN_VALUE` (Jacob Smith) [#43558](https://github.com/nodejs/node/pull/43558)
99
+ * \[[`80ced1ae31`](https://github.com/nodejs/node/commit/80ced1ae31)] - **esm**: treat `307` and `308` as redirects in HTTPS imports (Kid) [#43689](https://github.com/nodejs/node/pull/43689)
100
+ * \[[`953fefe77b`](https://github.com/nodejs/node/commit/953fefe77b)] - **esm**: restore `next<HookName>`'s `context` as optional arg (Jacob Smith) [#43553](https://github.com/nodejs/node/pull/43553)
101
+ * \[[`10bcad5c6e`](https://github.com/nodejs/node/commit/10bcad5c6e)] - **esm**: fix chain advances when loader calls next\<HookName> multiple times (Jacob Smith) [#43303](https://github.com/nodejs/node/pull/43303)
102
+ * \[[`50d64edd49`](https://github.com/nodejs/node/commit/50d64edd49)] - **esm**: refactor responseURL handling (Guy Bedford) [#43164](https://github.com/nodejs/node/pull/43164)
103
+ * \[[`254efd9e3b`](https://github.com/nodejs/node/commit/254efd9e3b)] - **esm**: fix http(s) import via custom loader (Jacob Smith) [#43130](https://github.com/nodejs/node/pull/43130)
104
+ * \[[`061ed0e76b`](https://github.com/nodejs/node/commit/061ed0e76b)] - **events**: improve `Event` compatibility (Daeyeon Jeong) [#43461](https://github.com/nodejs/node/pull/43461)
105
+ * \[[`66fb059547`](https://github.com/nodejs/node/commit/66fb059547)] - **events**: improve `EventListener` validation (Daeyeon Jeong) [#43491](https://github.com/nodejs/node/pull/43491)
106
+ * \[[`12a591a676`](https://github.com/nodejs/node/commit/12a591a676)] - **fs**: refactor realpath with Map and Set (LiviaMedeiros) [#43569](https://github.com/nodejs/node/pull/43569)
107
+ * \[[`df501316c1`](https://github.com/nodejs/node/commit/df501316c1)] - **fs**: don't end fs promises on Isolate termination (Santiago Gimeno) [#42910](https://github.com/nodejs/node/pull/42910)
108
+ * \[[`e6d4837fad`](https://github.com/nodejs/node/commit/e6d4837fad)] - **http**: fix failing test (Paolo Insogna) [#43641](https://github.com/nodejs/node/pull/43641)
109
+ * \[[`491c7619c4`](https://github.com/nodejs/node/commit/491c7619c4)] - **http**: defer reentrant execution of Parser::Execute (Paolo Insogna) [#43369](https://github.com/nodejs/node/pull/43369)
110
+ * \[[`d71ba322b0`](https://github.com/nodejs/node/commit/d71ba322b0)] - **http**: fix http agent keep alive (theanarkh) [#43380](https://github.com/nodejs/node/pull/43380)
111
+ * \[[`1f4f811de5`](https://github.com/nodejs/node/commit/1f4f811de5)] - **http2**: log debug only when in debug mode (Basit) [#43626](https://github.com/nodejs/node/pull/43626)
112
+ * \[[`c8cbec4cef`](https://github.com/nodejs/node/commit/c8cbec4cef)] - **lib**: make `validateObject` less affected by prototype tampering (Antoine du Hamel) [#42929](https://github.com/nodejs/node/pull/42929)
113
+ * \[[`dc484b6f6f`](https://github.com/nodejs/node/commit/dc484b6f6f)] - **lib**: implement safe alternatives to `Promise` static methods (Antoine du Hamel) [#43728](https://github.com/nodejs/node/pull/43728)
114
+ * \[[`2233567331`](https://github.com/nodejs/node/commit/2233567331)] - **lib**: use null-prototype objects for property descriptors (Antoine du Hamel) [#43473](https://github.com/nodejs/node/pull/43473)
115
+ * \[[`b9198d977f`](https://github.com/nodejs/node/commit/b9198d977f)] - **lib**: refactor to avoid unsafe regex primordials (Antoine du Hamel) [#43475](https://github.com/nodejs/node/pull/43475)
116
+ * \[[`deaf4bb5cd`](https://github.com/nodejs/node/commit/deaf4bb5cd)] - **lib**: fix TODO in `freeze_intrinsics` (Antoine du Hamel) [#43472](https://github.com/nodejs/node/pull/43472)
117
+ * \[[`61e6d7858a`](https://github.com/nodejs/node/commit/61e6d7858a)] - **lib,src**: add source map support for global eval (Chengzhong Wu) [#43428](https://github.com/nodejs/node/pull/43428)
118
+ * \[[`58646eaad6`](https://github.com/nodejs/node/commit/58646eaad6)] - **loader**: make `require.resolve` throw for unknown builtin modules (木杉) [#43336](https://github.com/nodejs/node/pull/43336)
119
+ * \[[`e914185c44`](https://github.com/nodejs/node/commit/e914185c44)] - **module**: cjs-module-lexer WebAssembly fallback (Guy Bedford) [#43612](https://github.com/nodejs/node/pull/43612)
120
+ * \[[`3ad4d37b3c`](https://github.com/nodejs/node/commit/3ad4d37b3c)] - **module**: also enable subpath imports in REPL (Ray) [#43450](https://github.com/nodejs/node/pull/43450)
121
+ * \[[`bf4ac4c55f`](https://github.com/nodejs/node/commit/bf4ac4c55f)] - **net**: remove redundant connecting assignment (Ouyang Yadong) [#43710](https://github.com/nodejs/node/pull/43710)
122
+ * \[[`ad1d0541c5`](https://github.com/nodejs/node/commit/ad1d0541c5)] - **net**: fix net keepalive and noDelay (theanarkh) [#43561](https://github.com/nodejs/node/pull/43561)
123
+ * \[[`f8bdc53e4f`](https://github.com/nodejs/node/commit/f8bdc53e4f)] - **net**: prevent /32 ipv4 mask from matching all ips (supriyo-biswas) [#43381](https://github.com/nodejs/node/pull/43381)
124
+ * \[[`47a252257b`](https://github.com/nodejs/node/commit/47a252257b)] - **net**: fix net.Server keepalive and noDelay (theanarkh) [#43497](https://github.com/nodejs/node/pull/43497)
125
+ * \[[`d834d216f2`](https://github.com/nodejs/node/commit/d834d216f2)] - **perf\_hooks**: add initiatorType getter (Rafael Gonzaga) [#43593](https://github.com/nodejs/node/pull/43593)
126
+ * \[[`02009b7069`](https://github.com/nodejs/node/commit/02009b7069)] - **perf\_hooks**: fix miscounted gc performance entry starttime (#43066) (Xuguang Mei) [#43066](https://github.com/nodejs/node/pull/43066)
127
+ * \[[`e9574f3009`](https://github.com/nodejs/node/commit/e9574f3009)] - **readline**: fix to not access a property on an undefined value (Kohei Ueno) [#43543](https://github.com/nodejs/node/pull/43543)
128
+ * \[[`fe1f740f61`](https://github.com/nodejs/node/commit/fe1f740f61)] - **src**: merge RunInThisContext() with RunInContext() (Daeyeon Jeong) [#43225](https://github.com/nodejs/node/pull/43225)
129
+ * \[[`0f6d19489a`](https://github.com/nodejs/node/commit/0f6d19489a)] - **src**: fix crash on FSReqPromise destructor (Santiago Gimeno) [#43533](https://github.com/nodejs/node/pull/43533)
130
+ * \[[`4e6a844207`](https://github.com/nodejs/node/commit/4e6a844207)] - **src**: delegate NodeArrayBufferAllocator to v8's allocator (Jeremy Rose) [#43594](https://github.com/nodejs/node/pull/43594)
131
+ * \[[`5ae30bf17a`](https://github.com/nodejs/node/commit/5ae30bf17a)] - **src**: remove a stale comment in `async_hooks` (Daeyeon Jeong) [#43317](https://github.com/nodejs/node/pull/43317)
132
+ * \[[`0b432b957e`](https://github.com/nodejs/node/commit/0b432b957e)] - **src**: fix compiler warning in src/heap\_utils.cc (Darshan Sen) [#43579](https://github.com/nodejs/node/pull/43579)
133
+ * \[[`d3fc791c3d`](https://github.com/nodejs/node/commit/d3fc791c3d)] - **src**: improve and update ByteSource description (Tobias Nießen) [#43478](https://github.com/nodejs/node/pull/43478)
134
+ * \[[`4e0afa4133`](https://github.com/nodejs/node/commit/4e0afa4133)] - **src**: remove CopyBuffer (Tobias Nießen) [#43463](https://github.com/nodejs/node/pull/43463)
135
+ * \[[`0659d5e3b0`](https://github.com/nodejs/node/commit/0659d5e3b0)] - **src**: change FormatSize to actually accept a size\_t (Tobias Nießen) [#43464](https://github.com/nodejs/node/pull/43464)
136
+ * \[[`66ee1f1e3c`](https://github.com/nodejs/node/commit/66ee1f1e3c)] - **src**: register StreamBase while registering LibuvStreamWrap (Darshan Sen) [#43321](https://github.com/nodejs/node/pull/43321)
137
+ * \[[`48ee6b9dc9`](https://github.com/nodejs/node/commit/48ee6b9dc9)] - **src,bootstrap**: remove NodeMainInstance::registry\_ (Darshan Sen) [#43392](https://github.com/nodejs/node/pull/43392)
138
+ * \[[`2e181f68a3`](https://github.com/nodejs/node/commit/2e181f68a3)] - **src,stream**: change return type to `Maybe` (Daeyeon Jeong) [#43575](https://github.com/nodejs/node/pull/43575)
139
+ * \[[`0f07abc80d`](https://github.com/nodejs/node/commit/0f07abc80d)] - **stream**: finish pipeline if dst closes before src (Robert Nagy) [#43701](https://github.com/nodejs/node/pull/43701)
140
+ * \[[`1617a4621e`](https://github.com/nodejs/node/commit/1617a4621e)] - **stream**: pass error on legacy destroy (Giacomo Gregoletto) [#43519](https://github.com/nodejs/node/pull/43519)
141
+ * \[[`40f51d8e83`](https://github.com/nodejs/node/commit/40f51d8e83)] - **test\_runner**: protect internals against prototype tampering (Antoine du Hamel) [#43578](https://github.com/nodejs/node/pull/43578)
142
+ * \[[`ddf7518520`](https://github.com/nodejs/node/commit/ddf7518520)] - **test\_runner**: cancel on termination (Moshe Atlow) [#43549](https://github.com/nodejs/node/pull/43549)
143
+ * \[[`e51d8c6004`](https://github.com/nodejs/node/commit/e51d8c6004)] - **test\_runner**: wait for stderr and stdout to complete (Moshe Atlow) [#43666](https://github.com/nodejs/node/pull/43666)
144
+ * \[[`dda64ddfbd`](https://github.com/nodejs/node/commit/dda64ddfbd)] - **test\_runner**: add Subtest to tap protocol output (Moshe Atlow) [#43417](https://github.com/nodejs/node/pull/43417)
145
+ * \[[`a1f1d3a7b3`](https://github.com/nodejs/node/commit/a1f1d3a7b3)] - **url**: update WHATWG URL parser to align with latest spec (Feng Yu) [#43190](https://github.com/nodejs/node/pull/43190)
146
+ * \[[`5a5c4be5a3`](https://github.com/nodejs/node/commit/5a5c4be5a3)] - **util**: add `AggregateError.prototype.errors` to inspect output (LiviaMedeiros) [#43646](https://github.com/nodejs/node/pull/43646)
147
+ * \[[`bdca4d3ccf`](https://github.com/nodejs/node/commit/bdca4d3ccf)] - **util**: remove unnecessary template string (Ruben Bridgewater) [#41082](https://github.com/nodejs/node/pull/41082)
148
+ * \[[`6b16836448`](https://github.com/nodejs/node/commit/6b16836448)] - **util**: mark cwd grey while inspecting errors (Ruben Bridgewater) [#41082](https://github.com/nodejs/node/pull/41082)
149
+ * \[[`baa22a7b7d`](https://github.com/nodejs/node/commit/baa22a7b7d)] - **util**: avoid inline access to Symbol.iterator (Kohei Ueno) [#43683](https://github.com/nodejs/node/pull/43683)
150
+ * \[[`a1f581a61e`](https://github.com/nodejs/node/commit/a1f581a61e)] - **util**: fix TypeError of symbol in template literals (cola119) [#42790](https://github.com/nodejs/node/pull/42790)
151
+ * \[[`ba9b2f021f`](https://github.com/nodejs/node/commit/ba9b2f021f)] - **wasi**: use WasmMemoryObject handle for perf (#43544) (snek) [#43544](https://github.com/nodejs/node/pull/43544)
152
+
153
+ #### Documentation commits
154
+
155
+ * \[[`e0769554a5`](https://github.com/nodejs/node/commit/e0769554a5)] - **doc**: remove bullet point referring to Node.js 12 (Luigi Pinca) [#43744](https://github.com/nodejs/node/pull/43744)
156
+ * \[[`7ffcd85ace`](https://github.com/nodejs/node/commit/7ffcd85ace)] - **doc**: include last security release date (Rafael Gonzaga) [#43774](https://github.com/nodejs/node/pull/43774)
157
+ * \[[`4569d6ebcb`](https://github.com/nodejs/node/commit/4569d6ebcb)] - **doc**: add details for July 2022 security releases (Beth Griggs) [#43733](https://github.com/nodejs/node/pull/43733)
158
+ * \[[`1bd56339c5`](https://github.com/nodejs/node/commit/1bd56339c5)] - **doc**: remove openssl 1.x reference (Rafael Gonzaga) [#43734](https://github.com/nodejs/node/pull/43734)
159
+ * \[[`bf62ffd848`](https://github.com/nodejs/node/commit/bf62ffd848)] - **doc**: remove node-report from support tiers (RafaelGSS) [#43737](https://github.com/nodejs/node/pull/43737)
160
+ * \[[`ca5af0dbf7`](https://github.com/nodejs/node/commit/ca5af0dbf7)] - **doc**: update changelog-maker to the new flags (RafaelGSS) [#43696](https://github.com/nodejs/node/pull/43696)
161
+ * \[[`088b9266d0`](https://github.com/nodejs/node/commit/088b9266d0)] - **doc**: remove extra 'in's (Colin Ihrig) [#43705](https://github.com/nodejs/node/pull/43705)
162
+ * \[[`7679c77347`](https://github.com/nodejs/node/commit/7679c77347)] - **doc**: add Geoffrey Booth to TSC (Rich Trott) [#43706](https://github.com/nodejs/node/pull/43706)
163
+ * \[[`d46261ceed`](https://github.com/nodejs/node/commit/d46261ceed)] - **doc**: improve readability of `dns.md` (0xSanyam) [#43694](https://github.com/nodejs/node/pull/43694)
164
+ * \[[`ca0fbfd87f`](https://github.com/nodejs/node/commit/ca0fbfd87f)] - **doc**: add note regarding special case of 0 stat.size (Douglas Wilson) [#43690](https://github.com/nodejs/node/pull/43690)
165
+ * \[[`267f66b5cc`](https://github.com/nodejs/node/commit/267f66b5cc)] - **doc**: fix default of duplex.allowHalfOpen (Vincent Weevers) [#43665](https://github.com/nodejs/node/pull/43665)
166
+ * \[[`46ad2061db`](https://github.com/nodejs/node/commit/46ad2061db)] - **doc**: fix typo in errors.md (Kazuma Ohashi) [#43677](https://github.com/nodejs/node/pull/43677)
167
+ * \[[`3a8edb363e`](https://github.com/nodejs/node/commit/3a8edb363e)] - **doc**: improve description of --input-type (cola119) [#43507](https://github.com/nodejs/node/pull/43507)
168
+ * \[[`b4b15b71d7`](https://github.com/nodejs/node/commit/b4b15b71d7)] - **doc**: add daeyeon to triagers (Daeyeon Jeong) [#43637](https://github.com/nodejs/node/pull/43637)
169
+ * \[[`cb77b3e3f7`](https://github.com/nodejs/node/commit/cb77b3e3f7)] - **doc**: remove appmetrics from tierlist (Tony Gorez) [#43608](https://github.com/nodejs/node/pull/43608)
170
+ * \[[`0fe825ac07`](https://github.com/nodejs/node/commit/0fe825ac07)] - **doc**: remove systemtap from tierlist (Tony Gorez) [#43605](https://github.com/nodejs/node/pull/43605)
171
+ * \[[`6fc5a13fe0`](https://github.com/nodejs/node/commit/6fc5a13fe0)] - **doc**: add single executable application initiative (Michael Dawson) [#43611](https://github.com/nodejs/node/pull/43611)
172
+ * \[[`350e6ae04c`](https://github.com/nodejs/node/commit/350e6ae04c)] - **doc**: remove windows xperf from tierlist (Tony Gorez) [#43607](https://github.com/nodejs/node/pull/43607)
173
+ * \[[`a6e98dfd65`](https://github.com/nodejs/node/commit/a6e98dfd65)] - **doc**: remove lttng from tierlist (Tony Gorez) [#43604](https://github.com/nodejs/node/pull/43604)
174
+ * \[[`22512427b3`](https://github.com/nodejs/node/commit/22512427b3)] - **doc**: remove dtrace from tierlist (Tony Gorez) [#43606](https://github.com/nodejs/node/pull/43606)
175
+ * \[[`a3659e3547`](https://github.com/nodejs/node/commit/a3659e3547)] - **doc**: promote 0x to tier 4 (Tony Gorez) [#43609](https://github.com/nodejs/node/pull/43609)
176
+ * \[[`6ede1c2162`](https://github.com/nodejs/node/commit/6ede1c2162)] - **doc**: include CVSS mention (Rafael Gonzaga) [#43602](https://github.com/nodejs/node/pull/43602)
177
+ * \[[`23c5de3579`](https://github.com/nodejs/node/commit/23c5de3579)] - **doc**: fix icu-small example (Michael Dawson) [#43591](https://github.com/nodejs/node/pull/43591)
178
+ * \[[`54a8a0c9c7`](https://github.com/nodejs/node/commit/54a8a0c9c7)] - **doc**: add `backport-open-vN.x` step to backporting guide (LiviaMedeiros) [#43590](https://github.com/nodejs/node/pull/43590)
179
+ * \[[`60b949d8ff`](https://github.com/nodejs/node/commit/60b949d8ff)] - **doc**: move MylesBorins to TSC Emeritus (Myles Borins) [#43524](https://github.com/nodejs/node/pull/43524)
180
+ * \[[`08ed28c31e`](https://github.com/nodejs/node/commit/08ed28c31e)] - **doc**: add Juan as a security steward (Michael Dawson) [#43512](https://github.com/nodejs/node/pull/43512)
181
+ * \[[`2e799bcd35`](https://github.com/nodejs/node/commit/2e799bcd35)] - **doc**: update link to MDN page about dynamic imports (James Scott-Brown) [#43530](https://github.com/nodejs/node/pull/43530)
182
+ * \[[`c8aafe2036`](https://github.com/nodejs/node/commit/c8aafe2036)] - **doc**: fix Visual Studio 2019 download link (Feng Yu) [#43236](https://github.com/nodejs/node/pull/43236)
183
+ * \[[`d0c78d21e0`](https://github.com/nodejs/node/commit/d0c78d21e0)] - **doc**: update link of `ICU data slicer` (Feng Yu) [#43483](https://github.com/nodejs/node/pull/43483)
184
+ * \[[`324728094c`](https://github.com/nodejs/node/commit/324728094c)] - **doc**: update v8 doc link to v8.dev (Feng Yu) [#43482](https://github.com/nodejs/node/pull/43482)
185
+ * \[[`b111331c9c`](https://github.com/nodejs/node/commit/b111331c9c)] - **doc**: add ESM version examples to events api doc (Feng Yu) [#43226](https://github.com/nodejs/node/pull/43226)
186
+ * \[[`038decfbc3`](https://github.com/nodejs/node/commit/038decfbc3)] - **doc**: update default branch name in `test/**` (Luigi Pinca) [#43445](https://github.com/nodejs/node/pull/43445)
187
+ * \[[`a23051af84`](https://github.com/nodejs/node/commit/a23051af84)] - **doc**: add new useful V8 option (JialuZhang-intel) [#42575](https://github.com/nodejs/node/pull/42575)
188
+ * \[[`7f406fd77b`](https://github.com/nodejs/node/commit/7f406fd77b)] - **doc**: remove branch name mention in `src/README.md` (Feng Yu) [#43442](https://github.com/nodejs/node/pull/43442)
189
+ * \[[`06fe60a6f9`](https://github.com/nodejs/node/commit/06fe60a6f9)] - **doc**: update default branch name in `Makefile` (Feng Yu) [#43441](https://github.com/nodejs/node/pull/43441)
190
+ * \[[`9d61da0aef`](https://github.com/nodejs/node/commit/9d61da0aef)] - **doc**: update main branch name in release guide (Richard Lau) [#43437](https://github.com/nodejs/node/pull/43437)
191
+ * \[[`739d3a35ed`](https://github.com/nodejs/node/commit/739d3a35ed)] - **doc**: update main branch name in onboarding.md (Feng Yu) [#43443](https://github.com/nodejs/node/pull/43443)
192
+ * \[[`e0fedcfb18`](https://github.com/nodejs/node/commit/e0fedcfb18)] - **doc**: fixup after rename of primary nodejs branch (Michael Dawson) [#43453](https://github.com/nodejs/node/pull/43453)
193
+ * \[[`429e0f433b`](https://github.com/nodejs/node/commit/429e0f433b)] - **doc**: update main branch name in doc/contributing/\* (Luigi Pinca) [#43438](https://github.com/nodejs/node/pull/43438)
194
+ * \[[`cbaf1207f4`](https://github.com/nodejs/node/commit/cbaf1207f4)] - **doc**: add code examples to node test runner (Wassim Chegham) [#43359](https://github.com/nodejs/node/pull/43359)
195
+ * \[[`462e526237`](https://github.com/nodejs/node/commit/462e526237)] - **doc,test**: clarify timingSafeEqual semantics (Tobias Nießen) [#43228](https://github.com/nodejs/node/pull/43228)
196
+
197
+ #### Other commits
198
+
199
+ * \[[`7ee0be71f9`](https://github.com/nodejs/node/commit/7ee0be71f9)] - **benchmark**: fix output regression (Brian White) [#43635](https://github.com/nodejs/node/pull/43635)
200
+ * \[[`d90a6f9bda`](https://github.com/nodejs/node/commit/d90a6f9bda)] - **benchmark**: fix fork detection (Paolo Insogna) [#43601](https://github.com/nodejs/node/pull/43601)
201
+ * \[[`f9c30abcdc`](https://github.com/nodejs/node/commit/f9c30abcdc)] - **benchmark**: forcefully close processes (Paolo Insogna) [#43557](https://github.com/nodejs/node/pull/43557)
202
+ * \[[`ebf962c053`](https://github.com/nodejs/node/commit/ebf962c053)] - **build**: enable GitPod prebuilds (Rich Trott) [#43698](https://github.com/nodejs/node/pull/43698)
203
+ * \[[`482bd53357`](https://github.com/nodejs/node/commit/482bd53357)] - **build**: clarify missing clang-format tool (Tobias Nießen) [#42762](https://github.com/nodejs/node/pull/42762)
204
+ * \[[`919c5ee5c2`](https://github.com/nodejs/node/commit/919c5ee5c2)] - **build**: update main branch name in GH workflow (Feng Yu) [#43481](https://github.com/nodejs/node/pull/43481)
205
+ * \[[`3b08dfdc5d`](https://github.com/nodejs/node/commit/3b08dfdc5d)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#43750](https://github.com/nodejs/node/pull/43750)
206
+ * \[[`508cbbcbf9`](https://github.com/nodejs/node/commit/508cbbcbf9)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#43660](https://github.com/nodejs/node/pull/43660)
207
+ * \[[`d650c9c6b0`](https://github.com/nodejs/node/commit/d650c9c6b0)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#43573](https://github.com/nodejs/node/pull/43573)
208
+ * \[[`b9204c9be8`](https://github.com/nodejs/node/commit/b9204c9be8)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#43480](https://github.com/nodejs/node/pull/43480)
209
+ * \[[`294f0ef4df`](https://github.com/nodejs/node/commit/294f0ef4df)] - **test**: mark test-net-connect-reset-until-connected flaky on freebsd (Feng Yu) [#43613](https://github.com/nodejs/node/pull/43613)
210
+ * \[[`f2f7d7b207`](https://github.com/nodejs/node/commit/f2f7d7b207)] - **test**: remove unnecessary .toString() calls in HTTP tests (Anna Henningsen) [#43731](https://github.com/nodejs/node/pull/43731)
211
+ * \[[`38e92fd88f`](https://github.com/nodejs/node/commit/38e92fd88f)] - **test**: mark test-gc-http-client-timeout as flaky on arm (Chengzhong Wu) [#43754](https://github.com/nodejs/node/pull/43754)
212
+ * \[[`b164848c55`](https://github.com/nodejs/node/commit/b164848c55)] - **test**: fix typo in file name (Antoine du Hamel) [#43764](https://github.com/nodejs/node/pull/43764)
213
+ * \[[`a0b799f645`](https://github.com/nodejs/node/commit/a0b799f645)] - **test**: add test for profile command of node inspect (Kohei Ueno) [#43058](https://github.com/nodejs/node/pull/43058)
214
+ * \[[`c4d88b3345`](https://github.com/nodejs/node/commit/c4d88b3345)] - **test**: use Object for `tests` variable in fs trace test (Feng Yu) [#43585](https://github.com/nodejs/node/pull/43585)
215
+ * \[[`c9f130e1cf`](https://github.com/nodejs/node/commit/c9f130e1cf)] - **test**: improve code coverage for performance\_entry (Kohei Ueno) [#43434](https://github.com/nodejs/node/pull/43434)
216
+ * \[[`0b4956079a`](https://github.com/nodejs/node/commit/0b4956079a)] - **test**: add test to ensure repl doesn't support --input-type (cola119) [#43507](https://github.com/nodejs/node/pull/43507)
217
+ * \[[`2adf4e7727`](https://github.com/nodejs/node/commit/2adf4e7727)] - **test**: fix flaky test-perf-hooks-histogram (Santiago Gimeno) [#43567](https://github.com/nodejs/node/pull/43567)
218
+ * \[[`043756d540`](https://github.com/nodejs/node/commit/043756d540)] - **test**: fill DOMException names (LiviaMedeiros) [#43615](https://github.com/nodejs/node/pull/43615)
219
+ * \[[`e718a6e913`](https://github.com/nodejs/node/commit/e718a6e913)] - **test**: fix Buffer.from(ArrayBufferView) call (LiviaMedeiros) [#43614](https://github.com/nodejs/node/pull/43614)
220
+ * \[[`ac72f4e812`](https://github.com/nodejs/node/commit/ac72f4e812)] - **test**: mark test-worker-http2-stream-terminate flaky on all platforms (Finn Yu) [#43620](https://github.com/nodejs/node/pull/43620)
221
+ * \[[`dabccef69f`](https://github.com/nodejs/node/commit/dabccef69f)] - **test**: mark flaky tests on smartos (Feng Yu) [#43596](https://github.com/nodejs/node/pull/43596)
222
+ * \[[`705e85e736`](https://github.com/nodejs/node/commit/705e85e736)] - **test**: improve code coverage for SourceMap class (italo jose) [#43285](https://github.com/nodejs/node/pull/43285)
223
+ * \[[`7c6f548382`](https://github.com/nodejs/node/commit/7c6f548382)] - **test**: mark test-http-server-request-timeouts-mixed flaky on macOS (F3n67u) [#43597](https://github.com/nodejs/node/pull/43597)
224
+ * \[[`bd91337988`](https://github.com/nodejs/node/commit/bd91337988)] - **test**: refactor to top-level await (Meek Simbule) [#43500](https://github.com/nodejs/node/pull/43500)
225
+ * \[[`9940dc38c1`](https://github.com/nodejs/node/commit/9940dc38c1)] - **test**: skip test-v8-serialize-leak on IBM i (Richard Lau) [#43511](https://github.com/nodejs/node/pull/43511)
226
+ * \[[`17b92f0679`](https://github.com/nodejs/node/commit/17b92f0679)] - **test**: use unique file names in fs trace test (Ben Noordhuis) [#43504](https://github.com/nodejs/node/pull/43504)
227
+ * \[[`7ca58b8ee7`](https://github.com/nodejs/node/commit/7ca58b8ee7)] - **test**: allow EOVERFLOW errors in fs position tests (Richard Lau) [#43510](https://github.com/nodejs/node/pull/43510)
228
+ * \[[`eece34cddb`](https://github.com/nodejs/node/commit/eece34cddb)] - **test**: add WPT tests for dom/events (Daiki Nishikawa) [#43151](https://github.com/nodejs/node/pull/43151)
229
+ * \[[`70d297c271`](https://github.com/nodejs/node/commit/70d297c271)] - **test**: replace gc(true) with gc({ type: 'minor' }) (Tobias Nießen) [#43493](https://github.com/nodejs/node/pull/43493)
230
+ * \[[`1022c0d0d4`](https://github.com/nodejs/node/commit/1022c0d0d4)] - **test**: fix flaky test-https-server-close- tests (Santiago Gimeno) [#43216](https://github.com/nodejs/node/pull/43216)
231
+ * \[[`a9ab41cb38`](https://github.com/nodejs/node/commit/a9ab41cb38)] - **test**: refactor to top-level await (Meek Simbule) [#43366](https://github.com/nodejs/node/pull/43366)
232
+ * \[[`b1a7798821`](https://github.com/nodejs/node/commit/b1a7798821)] - **test**: skip test-net-connect-reset-until-connected on SmartOS (Filip Skokan) [#43449](https://github.com/nodejs/node/pull/43449)
233
+ * \[[`3b0703fd0d`](https://github.com/nodejs/node/commit/3b0703fd0d)] - **test**: rename `test-eventtarget-whatwg-*.js` (Daeyeon Jeong) [#43467](https://github.com/nodejs/node/pull/43467)
234
+ * \[[`5c0a24d5be`](https://github.com/nodejs/node/commit/5c0a24d5be)] - **test**: mark test-worker-http2-stream-terminate flaky on Windows (Darshan Sen) [#43425](https://github.com/nodejs/node/pull/43425)
235
+ * \[[`48ae00c0b1`](https://github.com/nodejs/node/commit/48ae00c0b1)] - **test**: improve coverage for load hooks (Antoine du Hamel) [#43374](https://github.com/nodejs/node/pull/43374)
236
+ * \[[`2b55b606f7`](https://github.com/nodejs/node/commit/2b55b606f7)] - _**Revert**_ "**test**: mark test\_buffer/test\_finalizer flaky" (Matteo Collina) [#43418](https://github.com/nodejs/node/pull/43418)
237
+ * \[[`3948accbf4`](https://github.com/nodejs/node/commit/3948accbf4)] - **test**: make node-api/test\_buffer/test\_finalizer not flaky (Matteo Collina) [#43418](https://github.com/nodejs/node/pull/43418)
238
+ * \[[`c954bcd20b`](https://github.com/nodejs/node/commit/c954bcd20b)] - **tools**: remove rpm build scripts (Ben Noordhuis) [#43647](https://github.com/nodejs/node/pull/43647)
239
+ * \[[`8a06b7b9d0`](https://github.com/nodejs/node/commit/8a06b7b9d0)] - **tools**: update lint-md-dependencies to rollup\@2.76.0 (Node.js GitHub Bot) [#43749](https://github.com/nodejs/node/pull/43749)
240
+ * \[[`aafdf1239e`](https://github.com/nodejs/node/commit/aafdf1239e)] - **tools**: refactor `tools/license2rtf` to ESM (Feng Yu) [#43232](https://github.com/nodejs/node/pull/43232)
241
+ * \[[`99ffabf2dd`](https://github.com/nodejs/node/commit/99ffabf2dd)] - **tools**: update eslint to 8.19.0 (Node.js GitHub Bot) [#43662](https://github.com/nodejs/node/pull/43662)
242
+ * \[[`c6396c179f`](https://github.com/nodejs/node/commit/c6396c179f)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#43572](https://github.com/nodejs/node/pull/43572)
243
+ * \[[`8d14d6e215`](https://github.com/nodejs/node/commit/8d14d6e215)] - **tools**: fix CJS/ESM toggle on small screens (Antoine du Hamel) [#43506](https://github.com/nodejs/node/pull/43506)
244
+ * \[[`59d4da699e`](https://github.com/nodejs/node/commit/59d4da699e)] - **tools**: update eslint to 8.18.0 (Node.js GitHub Bot) [#43479](https://github.com/nodejs/node/pull/43479)
245
+ * \[[`752380a959`](https://github.com/nodejs/node/commit/752380a959)] - **tools**: update main branch name (Feng Yu) [#43440](https://github.com/nodejs/node/pull/43440)
246
+ * \[[`06c367ef8b`](https://github.com/nodejs/node/commit/06c367ef8b)] - **tools**: update lint-md-dependencies to rollup\@2.75.6 (Node.js GitHub Bot) [#43386](https://github.com/nodejs/node/pull/43386)
247
+
41
248
  <a id="18.5.0"></a>
42
249
 
43
250
  ## 2022-07-07, Version 18.5.0 (Current), @RafaelGSS
44
251
 
45
252
  This is a security release.
46
253
 
47
- ### Notable Changes
254
+ ### Notable changes
48
255
 
49
- * \[[`3f0c3e142d`](https://github.com/nodejs/node/commit/3f0c3e142d)] - **(SEMVER-MAJOR)** **src,deps,build,test**: add OpenSSL config appname (Daniel Bevenius) [#43124](https://github.com/nodejs/node/pull/43124)
50
- * \[[`9578158ff8`](https://github.com/nodejs/node/commit/9578158ff8)] - **(SEMVER-MAJOR)** **src,doc,test**: add --openssl-shared-config option (Daniel Bevenius) [#43124](https://github.com/nodejs/node/pull/43124)
51
- * Node.js now reads `nodejs_conf` section in the `openssl` config
52
- * \[[`dc7af13486`](https://github.com/nodejs/node/commit/dc7af13486)] - **deps**: update archs files for quictls/openssl-3.0.5+quic (RafaelGSS) [#43693](https://github.com/nodejs/node/pull/43693)
53
- * \[[`fa72c534eb`](https://github.com/nodejs/node/commit/fa72c534eb)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.5+quic (RafaelGSS) [#43693](https://github.com/nodejs/node/pull/43693)
256
+ The following CVEs are fixed in this release:
257
+
258
+ * **[CVE-2022-2097](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2097)**: OpenSSL - AES OCB fails to encrypt some bytes (Medium)
259
+ * **[CVE-2022-32212](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32212)**: DNS rebinding in --inspect via invalid IP addresses (High)
260
+ * **[CVE-2022-32213](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32213)**: HTTP Request Smuggling - Flawed Parsing of Transfer-Encoding (Medium)
261
+ * **[CVE-2022-32214](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32214)**: HTTP Request Smuggling - Improper Delimiting of Header Fields (Medium)
262
+ * **[CVE-2022-32215](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32215)**: HTTP Request Smuggling - Incorrect Parsing of Multi-line Transfer-Encoding (Medium)
263
+ * **[CVE-2022-32222](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32222)**: Attempt to read openssl.cnf from /home/iojs/build/ upon startup (Medium)
264
+ * **[CVE-2022-32223](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32223)**: DLL Hijacking on Windows (High)
265
+
266
+ More detailed information on each of the vulnerabilities can be found in [July 7th 2022 Security Releases](https://nodejs.org/en/blog/vulnerability/july-2022-security-releases/) blog post.
267
+
268
+ #### llhttp updated to 6.0.7
269
+
270
+ `llhttp` is updated to 6.0.7 which includes fixes for the following vulnerabilities.
271
+
272
+ * **HTTP Request Smuggling - Flawed Parsing of Transfer-Encoding (Medium)([CVE-2022-32213](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32214) )**: The `llhttp` parser in the `http` module does not correctly parse and validate Transfer-Encoding headers. This can lead to HTTP Request Smuggling (HRS).
273
+ * **HTTP Request Smuggling - Improper Delimiting of Header Fields (Medium)([CVE-2022-32214](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32214))**: The `llhttp` parser in the `http` module does not strictly use the CRLF sequence to delimit HTTP requests. This can lead to HTTP Request Smuggling.
274
+ * **Note**: This can be considered a breaking change due to disabling LF header delimiting. To enable LF header delimiting you can specify the `--insecure-http-parser` command-line flag, but note that this will additionally enable other insecure behaviours.
275
+ * **HTTP Request Smuggling - Incorrect Parsing of Multi-line Transfer-Encoding (Medium)([CVE-2022-32215](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32215))**: The `llhttp` parser in the `http` module does not correctly handle multi-line Transfer-Encoding headers. This can lead to HTTP Request Smuggling (HRS).
276
+
277
+ Some of these fixes required breaking changes, so you may be impacted by this update.
278
+
279
+ #### Default OpenSSL Configuration
280
+
281
+ To resolve **[CVE-2022-32223](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32223)**: DLL Hijacking on Windows (High), changes were made to how Node.js loads OpenSSL configuration by default.
282
+
283
+ **[CVE-2022-32223](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-32223)** could be exploited if the victim has the following dependencies on Windows machine:
284
+
285
+ * OpenSSL has been installed and `C:\Program Files\Common Files\SSL\openssl.cnf` exists.
286
+
287
+ Whenever the above conditions are present, `node.exe` will search for `providers.dll` in the current user directory. After that, `node.exe` will try to search for `providers.dll` by the DLL Search Order in Windows. An attacker can place the malicious file `providers.dll` under a variety of paths to exploit this vulnerability.
288
+
289
+ Node.js can use an OpenSSL configuration file by specifying the environment variable `OPENSSL_CONF`, or using the command-line option `--openssl-conf`, and if none of those are specified will default to reading the default OpenSSL configuration file `openssl.cnf`.
290
+
291
+ From this release, Node.js will only read a section that is, by default, named `nodejs_conf`. If you were previously relying on the configuration specified in the shared section of the `openssl.cnf` file, you may be affected by this change. You can fall back to the previous behavior to read the default section by:
292
+
293
+ * Specifying the `--openssl-shared-config` command-line flag; or
294
+ * Creating a new `nodejs_conf` section in that file and copying the contents of the default section into the new `nodejs_conf` section.
295
+
296
+ Note that when specifying `--openssl-shared-config` or defining `nodejs_conf` in your `openssl.cnf`, you should be cautious and review your configuration as it could lead to you being vulnerable to similar DLL exploit attacks.
54
297
 
55
298
  ### Commits
56
299
 
57
300
  * \[[`dc7af13486`](https://github.com/nodejs/node/commit/dc7af13486)] - **deps**: update archs files for quictls/openssl-3.0.5+quic (RafaelGSS) [#43693](https://github.com/nodejs/node/pull/43693)
58
301
  * \[[`fa72c534eb`](https://github.com/nodejs/node/commit/fa72c534eb)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.5+quic (RafaelGSS) [#43693](https://github.com/nodejs/node/pull/43693)
59
302
  * \[[`a5fc2deb43`](https://github.com/nodejs/node/commit/a5fc2deb43)] - **deps**: update default openssl.cnf directory (Michael Dawson) [nodejs-private/node-private#335](https://github.com/nodejs-private/node-private/pull/335)
60
- * \[[`f2407748e3`](https://github.com/nodejs/node/commit/f2407748e3)] - **http**: stricter Transfer-Encoding and header separator parsing (Paolo Insogna) [nodejs-private/node-private#315](https://github.com/nodejs-private/node-private/pull/315)
303
+ * \[[`f2407748e3`](https://github.com/nodejs/node/commit/f2407748e3)] - **(SEMVER-MAJOR)** **http**: stricter Transfer-Encoding and header separator parsing (Paolo Insogna) [nodejs-private/node-private#315](https://github.com/nodejs-private/node-private/pull/315)
61
304
  * \[[`e4af5eba95`](https://github.com/nodejs/node/commit/e4af5eba95)] - **src**: fix IPv4 validation in inspector\_socket (Tobias Nießen) [nodejs-private/node-private#320](https://github.com/nodejs-private/node-private/pull/320)
62
305
  * \[[`3f0c3e142d`](https://github.com/nodejs/node/commit/3f0c3e142d)] - **(SEMVER-MAJOR)** **src,deps,build,test**: add OpenSSL config appname (Daniel Bevenius) [#43124](https://github.com/nodejs/node/pull/43124)
63
- * \[[`9578158ff8`](https://github.com/nodejs/node/commit/9578158ff8)] - **(SEMVER-MAJOR)** **src,doc,test**: add --openssl-shared-config option (Daniel Bevenius) [#43124](https://github.com/nodejs/node/pull/43124)
306
+ * \[[`9578158ff8`](https://github.com/nodejs/node/commit/9578158ff8)] - **(SEMVER-MINOR)** **src,doc,test**: add --openssl-shared-config option (Daniel Bevenius) [#43124](https://github.com/nodejs/node/pull/43124)
64
307
 
65
308
  <a id="18.4.0"></a>
66
309
 
package/README.md CHANGED
@@ -170,6 +170,8 @@ For information about the governance of the Node.js project, see
170
170
  **Danielle Adams** <<adamzdanielle@gmail.com>> (she/her)
171
171
  * [fhinkel](https://github.com/fhinkel) -
172
172
  **Franziska Hinkelmann** <<franziska.hinkelmann@gmail.com>> (she/her)
173
+ * [GeoffreyBooth](https://github.com/geoffreybooth) -
174
+ **Geoffrey Booth** <<webadmin@geoffreybooth.com>> (he/him)
173
175
  * [gireeshpunathil](https://github.com/gireeshpunathil) -
174
176
  **Gireesh Punathil** <<gpunathi@in.ibm.com>> (he/him)
175
177
  * [jasnell](https://github.com/jasnell) -
@@ -180,8 +182,6 @@ For information about the governance of the Node.js project, see
180
182
  **Matteo Collina** <<matteo.collina@gmail.com>> (he/him)
181
183
  * [mhdawson](https://github.com/mhdawson) -
182
184
  **Michael Dawson** <<midawson@redhat.com>> (he/him)
183
- * [MylesBorins](https://github.com/MylesBorins) -
184
- **Myles Borins** <<myles.borins@gmail.com>> (he/him)
185
185
  * [RaisinTen](https://github.com/RaisinTen) -
186
186
  **Darshan Sen** <<raisinten@gmail.com>> (he/him)
187
187
  * [richardlau](https://github.com/richardlau) -
@@ -229,6 +229,8 @@ For information about the governance of the Node.js project, see
229
229
  **Mary Marchini** <<oss@mmarchini.me>> (she/her)
230
230
  * [mscdex](https://github.com/mscdex) -
231
231
  **Brian White** <<mscdex@mscdex.net>>
232
+ * [MylesBorins](https://github.com/MylesBorins) -
233
+ **Myles Borins** <<myles.borins@gmail.com>> (he/him)
232
234
  * [nebrius](https://github.com/nebrius) -
233
235
  **Bryan Hughes** <<bryan@nebri.us>>
234
236
  * [ofrobots](https://github.com/ofrobots) -
@@ -646,6 +648,8 @@ maintaining the Node.js project.
646
648
 
647
649
  * [Ayase-252](https://github.com/Ayase-252) -
648
650
  **Qingyu Deng** <<i@ayase-lab.com>>
651
+ * [daeyeon](https://github.com/daeyeon) -
652
+ **Daeyeon Jeong** <<daeyeon.dev@gmail.com>> (he/him)
649
653
  * [F3n67u](https://github.com/F3n67u) -
650
654
  **Feng Yu** <<F3n67u@outlook.com>> (he/him)
651
655
  * [himadriganguly](https://github.com/himadriganguly) -
package/bin/node CHANGED
Binary file
@@ -212,7 +212,6 @@
212
212
  'lib/internal/modules/esm/fetch_module.js',
213
213
  'lib/internal/modules/esm/formats.js',
214
214
  'lib/internal/modules/esm/get_format.js',
215
- 'lib/internal/modules/esm/get_source.js',
216
215
  'lib/internal/modules/esm/handle_process_exit.js',
217
216
  'lib/internal/modules/esm/initialize_import_meta.js',
218
217
  'lib/internal/modules/esm/load.js',
@@ -291,6 +290,7 @@
291
290
  'lib/internal/util/types.js',
292
291
  'lib/internal/util/parse_args/parse_args.js',
293
292
  'lib/internal/util/parse_args/utils.js',
293
+ 'lib/internal/v8/startup_snapshot.js',
294
294
  'lib/internal/vm/module.js',
295
295
  'lib/internal/webstreams/adapters.js',
296
296
  'lib/internal/webstreams/compression.js',
@@ -5938,18 +5938,18 @@ _GLOBAL__F__ZN2v88internal6torque4TypeC2ERKS2_
5938
5938
  _GLOBAL__F__ZN2v88internal6torque5Block13SetInputTypesERKNS1_5StackIPKNS1_4TypeEEE
5939
5939
  _GLOBAL__F__ZNK2v88internal6torque3cpp8Function22PrintDeclarationHeaderERSoi
5940
5940
  _GLOBAL__F__ZNK2v88internal6torque4Rule9RunActionEPKNS1_4ItemERKNS1_11LexerResultE
5941
- _GLOBAL__I_65535_0_.._deps_v8_src_diagnostics_gdb_jit.cc_DFF67DD7_0x53d084861160450d
5942
- _GLOBAL__I_65535_0_.._deps_v8_src_diagnostics_objects_debug.cc_FE345EE0_0x9e66514db703eae9
5943
- _GLOBAL__I_65535_0_.._deps_v8_src_execution_arguments.cc_DFF67DD7_0x861ba7d5a6a5587a
5944
- _GLOBAL__I_65535_0_.._deps_v8_src_execution_simulator_base.cc_7874F2D3_0x8f4ffefe2aa160cb
5945
- _GLOBAL__I_65535_0_.._deps_v8_src_heap_factory_base.cc_7874F2D3_0x6127f535585cd8d9
5946
- _GLOBAL__I_65535_0_.._deps_v8_src_heap_objects_visiting.cc_DFF67DD7_0x7b7bcdb29c2ff1cd
5941
+ _GLOBAL__I_65535_0_.._deps_v8_src_diagnostics_gdb_jit.cc_DFF67DD7_0x967b5ba5bf37cb50
5942
+ _GLOBAL__I_65535_0_.._deps_v8_src_diagnostics_objects_debug.cc_FE345EE0_0x9ecd99179cb0f160
5943
+ _GLOBAL__I_65535_0_.._deps_v8_src_execution_arguments.cc_DFF67DD7_0x9540cd1b3c52abc1
5944
+ _GLOBAL__I_65535_0_.._deps_v8_src_execution_simulator_base.cc_7874F2D3_0x90c4c6c47d778737
5945
+ _GLOBAL__I_65535_0_.._deps_v8_src_heap_factory_base.cc_7874F2D3_0xbc1fdaf70006a981
5946
+ _GLOBAL__I_65535_0_.._deps_v8_src_heap_objects_visiting.cc_DFF67DD7_0x8b579ddd01078ffc
5947
5947
  _GLOBAL__I_65535_0_.._deps_v8_src_objects_tagged_impl.cc_3723FE55_0x1c2bbc5b5fe0eb66
5948
- _GLOBAL__I_65535_0_.._deps_v8_src_runtime_runtime_trace.cc_FE345EE0_0xc3f8bf82b0d90867
5949
- _GLOBAL__I_65535_0_.._deps_v8_src_sandbox_external_pointer_table.cc_87E8306D_0xf7c8488c745f3308
5948
+ _GLOBAL__I_65535_0_.._deps_v8_src_runtime_runtime_trace.cc_FE345EE0_0x31790889bfed0fee
5949
+ _GLOBAL__I_65535_0_.._deps_v8_src_sandbox_external_pointer_table.cc_87E8306D_0x3715170da1c7d477
5950
5950
  _GLOBAL__I_65535_0_.._deps_v8_src_sandbox_sandbox.cc_3723FE55_0x9e7922885c6c5f9e
5951
5951
  _GLOBAL__I_65535_0_.._deps_v8_src_strings_string_case.cc_DFF67DD7_0x29976dedf87fc2f5
5952
- _GLOBAL__I_65535_0_.._src_connection_wrap.cc_FE345EE0_0x8cb80c8d2164c7e6
5952
+ _GLOBAL__I_65535_0_.._src_connection_wrap.cc_FE345EE0_0xe0ed8937d595a8a1
5953
5953
  _GLOBAL__I_65535_0_OPENSSL_ppccap_P
5954
5954
  _GLOBAL__I_65535_0__Z16_register_configv
5955
5955
  _GLOBAL__I_65535_0__Z17_register_symbolsv
@@ -6981,9 +6981,9 @@ _GLOBAL__I_65535_0__ZNK2v88internal9BitVector5CountEv
6981
6981
  _GLOBAL__I_65535_0__ZNK2v88internal9DebugInfo7IsEmptyEv
6982
6982
  _GLOBAL__I_65535_0__ZNK2v88internal9PreParser13GetIdentifierEv
6983
6983
  _GLOBAL__I_65535_0__ZNK4node10BaseObject15GetTransferModeEv
6984
- _GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_enum_verifiers.cc_FE345EE0_0x22ce56d0818188d9
6985
- _GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_factory.cc_7874F2D3_0x865beeee0c2342ca
6986
- _GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_src_objects_torque_defined_classes_tq_csa.cc_FE345EE0_0x34baae7dd0430687
6984
+ _GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_enum_verifiers.cc_FE345EE0_0xfa515385e1db4e2
6985
+ _GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_factory.cc_7874F2D3_0x937b02ab01e66016
6986
+ _GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_src_objects_torque_defined_classes_tq_csa.cc_FE345EE0_0x6360804a64a7169a
6987
6987
  _GLOBAL__I_65535_0_nodedbg_const_ContextEmbedderIndex__kEnvironment__int
6988
6988
  _GLOBAL__I_65535_0_v8dbg_frametype_EntryFrame
6989
6989
  _HZData_71
@@ -10297,6 +10297,7 @@ _ZN2v88internal10JSReceiver18TestIntegrityLevelENS0_6HandleIS1_EENS0_18PropertyA
10297
10297
  _ZN2v88internal10JSReceiver19HasInPrototypeChainEPNS0_7IsolateENS0_6HandleIS1_EENS4_INS0_6ObjectEEE
10298
10298
  _ZN2v88internal10JSReceiver19HasProxyInPrototypeEPNS0_7IsolateE
10299
10299
  _ZN2v88internal10JSReceiver19OrdinaryToPrimitiveEPNS0_7IsolateENS0_6HandleIS1_EENS0_23OrdinaryToPrimitiveHintE
10300
+ _ZN2v88internal10JSReceiver21CheckPrivateNameStoreEPNS0_14LookupIteratorEb
10300
10301
  _ZN2v88internal10JSReceiver21GetPropertyAttributesEPNS0_14LookupIteratorE
10301
10302
  _ZN2v88internal10JSReceiver22GetContextForMicrotaskENS0_6HandleIS1_EE
10302
10303
  _ZN2v88internal10JSReceiver23DeletePropertyOrElementENS0_6HandleIS1_EENS2_INS0_4NameEEENS0_12LanguageModeE
@@ -19626,6 +19627,7 @@ _ZN2v88internal21CpuProfilesCollection24AddPathToCurrentProfilesENS_4base9TimeTi
19626
19627
  _ZN2v88internal21CpuProfilesCollection24StartProfilingForTestingEj
19627
19628
  _ZN2v88internal21CpuProfilesCollection44UpdateNativeContextAddressForCurrentProfilesEmm
19628
19629
  _ZN2v88internal21CpuProfilesCollection6LookupEPKc
19630
+ _ZN2v88internal21CpuProfilesCollection8last_id_E
19629
19631
  _ZN2v88internal21CpuProfilesCollectionC1EPNS0_7IsolateE
19630
19632
  _ZN2v88internal21CpuProfilesCollectionC2EPNS0_7IsolateE
19631
19633
  _ZN2v88internal21CpuTraceMarkExtension25GetNativeFunctionTemplateEPNS_7IsolateENS_5LocalINS_6StringEEE
@@ -33158,7 +33160,7 @@ _ZN2v88internal7Runtime17SetObjectPropertyEPNS0_7IsolateENS0_6HandleINS0_6Object
33158
33160
  _ZN2v88internal7Runtime20DeleteObjectPropertyEPNS0_7IsolateENS0_6HandleINS0_10JSReceiverEEENS4_INS0_6ObjectEEENS0_12LanguageModeE
33159
33161
  _ZN2v88internal7Runtime20RuntimeFunctionTableEPNS0_7IsolateE
33160
33162
  _ZN2v88internal7Runtime21GetInternalPropertiesEPNS0_7IsolateENS0_6HandleINS0_6ObjectEEE
33161
- _ZN2v88internal7Runtime23DefineObjectOwnPropertyEPNS0_7IsolateENS0_6HandleINS0_6ObjectEEES6_S6_NS0_11StoreOriginENS_5MaybeINS0_11ShouldThrowEEE
33163
+ _ZN2v88internal7Runtime23DefineObjectOwnPropertyEPNS0_7IsolateENS0_6HandleINS0_6ObjectEEES6_S6_NS0_11StoreOriginE
33162
33164
  _ZN2v88internal7Runtime23IsAllowListedForFuzzingENS1_10FunctionIdE
33163
33165
  _ZN2v88internal7Scanner10InitializeEv
33164
33166
  _ZN2v88internal7Scanner10ScanEscapeILb0EEEbv
@@ -45903,7 +45905,6 @@ _ZN4node10contextify16ContextifyScript10InstanceOfEPNS_11EnvironmentERKN2v85Loca
45903
45905
  _ZN4node10contextify16ContextifyScript11EvalMachineEPNS_11EnvironmentElbbbSt10shared_ptrIN2v814MicrotaskQueueEERKNS5_20FunctionCallbackInfoINS5_5ValueEEE
45904
45906
  _ZN4node10contextify16ContextifyScript12RunInContextERKN2v820FunctionCallbackInfoINS2_5ValueEEE
45905
45907
  _ZN4node10contextify16ContextifyScript16CreateCachedDataERKN2v820FunctionCallbackInfoINS2_5ValueEEE
45906
- _ZN4node10contextify16ContextifyScript16RunInThisContextERKN2v820FunctionCallbackInfoINS2_5ValueEEE
45907
45908
  _ZN4node10contextify16ContextifyScript26RegisterExternalReferencesEPNS_25ExternalReferenceRegistryE
45908
45909
  _ZN4node10contextify16ContextifyScript3NewERKN2v820FunctionCallbackInfoINS2_5ValueEEE
45909
45910
  _ZN4node10contextify16ContextifyScript4InitEPNS_11EnvironmentEN2v85LocalINS4_6ObjectEEE
@@ -45945,6 +45946,12 @@ _ZN4node10contextify18MicrotaskQueueWrapC2EPNS_11EnvironmentEN2v85LocalINS4_6Obj
45945
45946
  _ZN4node10contextify18MicrotaskQueueWrapD0Ev
45946
45947
  _ZN4node10contextify18MicrotaskQueueWrapD1Ev
45947
45948
  _ZN4node10contextify26RegisterExternalReferencesEPNS_25ExternalReferenceRegistryE
45949
+ _ZN4node10mksnapshot10InitializeEN2v85LocalINS1_6ObjectEEENS2_INS1_5ValueEEENS2_INS1_7ContextEEEPv
45950
+ _ZN4node10mksnapshot20CompileSerializeMainERKN2v820FunctionCallbackInfoINS1_5ValueEEE
45951
+ _ZN4node10mksnapshot20SetSerializeCallbackERKN2v820FunctionCallbackInfoINS1_5ValueEEE
45952
+ _ZN4node10mksnapshot22SetDeserializeCallbackERKN2v820FunctionCallbackInfoINS1_5ValueEEE
45953
+ _ZN4node10mksnapshot26RegisterExternalReferencesEPNS_25ExternalReferenceRegistryE
45954
+ _ZN4node10mksnapshot26SetDeserializeMainFunctionERKN2v820FunctionCallbackInfoINS1_5ValueEEE
45948
45955
  _ZN4node10task_queue26RegisterExternalReferencesEPNS_25ExternalReferenceRegistryE
45949
45956
  _ZN4node11AddressToJSEPNS_11EnvironmentEPK8sockaddrN2v85LocalINS5_6ObjectEEE
45950
45957
  _ZN4node11BufferValueC1EPN2v87IsolateENS1_5LocalINS1_5ValueEEE
@@ -46125,7 +46132,7 @@ _ZN4node11SPrintFImplImJRiEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE
46125
46132
  _ZN4node11SPrintFImplImJmEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcOT_DpOT0_
46126
46133
  _ZN4node11SPrintFImplImJmmEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcOT_DpOT0_
46127
46134
  _ZN4node11SPrintFImplImJmmmEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcOT_DpOT0_
46128
- _ZN4node11SplitStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEc
46135
+ _ZN4node11SplitStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEcb
46129
46136
  _ZN4node11StatWatcher10InitializeEPNS_11EnvironmentEN2v85LocalINS3_6ObjectEEE
46130
46137
  _ZN4node11StatWatcher26RegisterExternalReferencesEPNS_25ExternalReferenceRegistryE
46131
46138
  _ZN4node11StatWatcher3NewERKN2v820FunctionCallbackInfoINS1_5ValueEEE
@@ -47246,6 +47253,8 @@ _ZN4node2fs5CloseERKN2v820FunctionCallbackInfoINS1_5ValueEEE
47246
47253
  _ZN4node2fs6AccessERKN2v820FunctionCallbackInfoINS1_5ValueEEE
47247
47254
  _ZN4node2fs8BasenameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_
47248
47255
  _ZN4node2fs8SyncCallIPFiP9uv_loop_sP7uv_fs_sPKcPFvS5_EEJPcEEEiPNS_11EnvironmentEN2v85LocalINSF_5ValueEEEPNS0_13FSReqWrapSyncES7_T_DpT0_
47256
+ _ZN4node2fs8SyncCallIPFiP9uv_loop_sP7uv_fs_sPKcS7_iPFvS5_EEJPcSC_iEEEiPNS_11EnvironmentEN2v85LocalINSF_5ValueEEEPNS0_13FSReqWrapSyncES7_T_DpT0_
47257
+ _ZN4node2fs8SyncCallIPFiP9uv_loop_sP7uv_fs_sPKcddPFvS5_EEJPcddEEEiPNS_11EnvironmentEN2v85LocalINSF_5ValueEEEPNS0_13FSReqWrapSyncES7_T_DpT0_
47249
47258
  _ZN4node2fs8SyncCallIPFiP9uv_loop_sP7uv_fs_sPKciPFvS5_EEJPciEEEiPNS_11EnvironmentEN2v85LocalINSF_5ValueEEEPNS0_13FSReqWrapSyncES7_T_DpT0_
47250
47259
  _ZN4node2fs8SyncCallIPFiP9uv_loop_sP7uv_fs_sPKcjjPFvS5_EEJPcjjEEEiPNS_11EnvironmentEN2v85LocalINSF_5ValueEEEPNS0_13FSReqWrapSyncES7_T_DpT0_
47251
47260
  _ZN4node2fs8SyncCallIPFiP9uv_loop_sP7uv_fs_siPFvS5_EEJiEEEiPNS_11EnvironmentEN2v85LocalINSC_5ValueEEEPNS0_13FSReqWrapSyncEPKcT_DpT0_
@@ -47273,6 +47282,7 @@ _ZN4node30THROW_ERR_CRYPTO_INVALID_CURVEEPN2v87IsolateE
47273
47282
  _ZN4node31AllowWasmCodeGenerationCallbackEN2v85LocalINS0_7ContextEEENS1_INS0_6StringEEE
47274
47283
  _ZN4node31ERR_MISSING_PLATFORM_FOR_WORKERIJEEEN2v85LocalINS1_5ValueEEEPNS1_7IsolateEPKcDpOT_
47275
47284
  _ZN4node31ERR_TLS_INVALID_PROTOCOL_METHODIJEEEN2v85LocalINS1_5ValueEEEPNS1_7IsolateEPKcDpOT_
47285
+ _ZN4node31ModifyCodeGenerationFromStringsEN2v85LocalINS0_7ContextEEENS1_INS0_5ValueEEEb
47276
47286
  _ZN4node31RegisterTimerExternalReferencesEPNS_25ExternalReferenceRegistryE
47277
47287
  _ZN4node31RegisterTypesExternalReferencesEPNS_25ExternalReferenceRegistryE
47278
47288
  _ZN4node31THROW_ERR_CRYPTO_INVALID_DIGESTEPN2v87IsolateE
@@ -58778,7 +58788,6 @@ _ZNK2v88internal8compiler19FixedDoubleArrayRef6objectEv
58778
58788
  _ZNK2v88internal8compiler19InstructionSelector14GetEffectLevelEPNS1_4NodeE
58779
58789
  _ZNK2v88internal8compiler19InstructionSelector14GetEffectLevelEPNS1_4NodeEPNS1_17FlagsContinuationE
58780
58790
  _ZNK2v88internal8compiler19InstructionSelector19CanUseRootsRegisterEv
58781
- _ZNK2v88internal8compiler19InstructionSelector20CanCoverTransitivelyEPNS1_4NodeES4_S4_
58782
58791
  _ZNK2v88internal8compiler19InstructionSelector27IsOnlyUserOfNodeInSameBlockEPNS1_4NodeES4_
58783
58792
  _ZNK2v88internal8compiler19InstructionSelector29GetVirtualRegistersForTestingEv
58784
58793
  _ZNK2v88internal8compiler19InstructionSelector33CanAddressRelativeToRootsRegisterERKNS0_17ExternalReferenceE
@@ -60138,7 +60147,9 @@ _ZNK4node11Environment14MemoryInfoNameB5cxx11Ev
60138
60147
  _ZNK4node11Environment14PrintSyncTraceEv
60139
60148
  _ZNK4node11Environment17worker_parent_envEv
60140
60149
  _ZNK4node11Environment24decorated_private_symbolEv
60150
+ _ZNK4node11Environment26RunSnapshotDeserializeMainEv
60141
60151
  _ZNK4node11Environment26alpn_buffer_private_symbolEv
60152
+ _ZNK4node11Environment28RunSnapshotSerializeCallbackEv
60142
60153
  _ZNK4node11Environment28arrow_message_private_symbolEv
60143
60154
  _ZNK4node11Environment32contextify_global_private_symbolEv
60144
60155
  _ZNK4node11Environment33contextify_context_private_symbolEv
@@ -70187,34 +70198,34 @@ _ZZN2v88internal12RegisterNameENS0_8RegisterEE5Names
70187
70198
  _ZZN2v88internal13ProfilerStats8InstanceEvE5stats
70188
70199
  _ZZN2v88internal15MemoryAllocator8Unmapper18UnmapFreeMemoryJob3RunEPNS_11JobDelegateEE27trace_event_unique_atomic75
70189
70200
  _ZZN2v88internal15MemoryAllocator8Unmapper18UnmapFreeMemoryJob3RunEPNS_11JobDelegateEE27trace_event_unique_atomic80
70190
- _ZZN2v88internal15PageMarkingItem7ProcessEPNS0_26YoungGenerationMarkingTaskEE29trace_event_unique_atomic5592
70201
+ _ZZN2v88internal15PageMarkingItem7ProcessEPNS0_26YoungGenerationMarkingTaskEE29trace_event_unique_atomic5589
70191
70202
  _ZZN2v88internal17ConcurrentMarking7JobTask3RunEPNS_11JobDelegateEE28trace_event_unique_atomic424
70192
- _ZZN2v88internal17LiveObjectVisitor17VisitBlackObjectsINS0_23EvacuateOldSpaceVisitorENS0_26MajorNonAtomicMarkingStateEEEbPNS0_11MemoryChunkEPT0_PT_NS1_13IterationModeEPNS0_10HeapObjectEE29trace_event_unique_atomic4028
70193
- _ZZN2v88internal17LiveObjectVisitor22VisitGreyObjectsNoFailINS0_23EvacuateNewSpaceVisitorENS0_26MinorNonAtomicMarkingStateEEEvPNS0_11MemoryChunkEPT0_PT_NS1_13IterationModeEE29trace_event_unique_atomic4083
70194
- _ZZN2v88internal17LiveObjectVisitor22VisitGreyObjectsNoFailINS0_27EvacuateNewSpacePageVisitorILNS0_18PageEvacuationModeE0EEENS0_26MinorNonAtomicMarkingStateEEEvPNS0_11MemoryChunkEPT0_PT_NS1_13IterationModeEE29trace_event_unique_atomic4083
70195
- _ZZN2v88internal17LiveObjectVisitor22VisitGreyObjectsNoFailINS0_27EvacuateNewSpacePageVisitorILNS0_18PageEvacuationModeE1EEENS0_26MinorNonAtomicMarkingStateEEEvPNS0_11MemoryChunkEPT0_PT_NS1_13IterationModeEE29trace_event_unique_atomic4083
70196
- _ZZN2v88internal17LiveObjectVisitor23VisitBlackObjectsNoFailINS0_23EvacuateNewSpaceVisitorENS0_26MajorNonAtomicMarkingStateEEEvPNS0_11MemoryChunkEPT0_PT_NS1_13IterationModeEE29trace_event_unique_atomic4054
70197
- _ZZN2v88internal17LiveObjectVisitor23VisitBlackObjectsNoFailINS0_25EvacuateRecordOnlyVisitorENS0_26MajorNonAtomicMarkingStateEEEvPNS0_11MemoryChunkEPT0_PT_NS1_13IterationModeEE29trace_event_unique_atomic4054
70198
- _ZZN2v88internal17LiveObjectVisitor23VisitBlackObjectsNoFailINS0_27EvacuateNewSpacePageVisitorILNS0_18PageEvacuationModeE0EEENS0_26MajorNonAtomicMarkingStateEEEvPNS0_11MemoryChunkEPT0_PT_NS1_13IterationModeEE29trace_event_unique_atomic4054
70199
- _ZZN2v88internal17LiveObjectVisitor23VisitBlackObjectsNoFailINS0_27EvacuateNewSpacePageVisitorILNS0_18PageEvacuationModeE1EEENS0_26MajorNonAtomicMarkingStateEEEvPNS0_11MemoryChunkEPT0_PT_NS1_13IterationModeEE29trace_event_unique_atomic4054
70200
- _ZZN2v88internal17PageEvacuationJob3RunEPNS_11JobDelegateEE29trace_event_unique_atomic3812
70201
- _ZZN2v88internal17PageEvacuationJob3RunEPNS_11JobDelegateEE29trace_event_unique_atomic3816
70203
+ _ZZN2v88internal17LiveObjectVisitor17VisitBlackObjectsINS0_23EvacuateOldSpaceVisitorENS0_26MajorNonAtomicMarkingStateEEEbPNS0_11MemoryChunkEPT0_PT_NS1_13IterationModeEPNS0_10HeapObjectEE29trace_event_unique_atomic4025
70204
+ _ZZN2v88internal17LiveObjectVisitor22VisitGreyObjectsNoFailINS0_23EvacuateNewSpaceVisitorENS0_26MinorNonAtomicMarkingStateEEEvPNS0_11MemoryChunkEPT0_PT_NS1_13IterationModeEE29trace_event_unique_atomic4080
70205
+ _ZZN2v88internal17LiveObjectVisitor22VisitGreyObjectsNoFailINS0_27EvacuateNewSpacePageVisitorILNS0_18PageEvacuationModeE0EEENS0_26MinorNonAtomicMarkingStateEEEvPNS0_11MemoryChunkEPT0_PT_NS1_13IterationModeEE29trace_event_unique_atomic4080
70206
+ _ZZN2v88internal17LiveObjectVisitor22VisitGreyObjectsNoFailINS0_27EvacuateNewSpacePageVisitorILNS0_18PageEvacuationModeE1EEENS0_26MinorNonAtomicMarkingStateEEEvPNS0_11MemoryChunkEPT0_PT_NS1_13IterationModeEE29trace_event_unique_atomic4080
70207
+ _ZZN2v88internal17LiveObjectVisitor23VisitBlackObjectsNoFailINS0_23EvacuateNewSpaceVisitorENS0_26MajorNonAtomicMarkingStateEEEvPNS0_11MemoryChunkEPT0_PT_NS1_13IterationModeEE29trace_event_unique_atomic4051
70208
+ _ZZN2v88internal17LiveObjectVisitor23VisitBlackObjectsNoFailINS0_25EvacuateRecordOnlyVisitorENS0_26MajorNonAtomicMarkingStateEEEvPNS0_11MemoryChunkEPT0_PT_NS1_13IterationModeEE29trace_event_unique_atomic4051
70209
+ _ZZN2v88internal17LiveObjectVisitor23VisitBlackObjectsNoFailINS0_27EvacuateNewSpacePageVisitorILNS0_18PageEvacuationModeE0EEENS0_26MajorNonAtomicMarkingStateEEEvPNS0_11MemoryChunkEPT0_PT_NS1_13IterationModeEE29trace_event_unique_atomic4051
70210
+ _ZZN2v88internal17LiveObjectVisitor23VisitBlackObjectsNoFailINS0_27EvacuateNewSpacePageVisitorILNS0_18PageEvacuationModeE1EEENS0_26MajorNonAtomicMarkingStateEEEvPNS0_11MemoryChunkEPT0_PT_NS1_13IterationModeEE29trace_event_unique_atomic4051
70211
+ _ZZN2v88internal17PageEvacuationJob3RunEPNS_11JobDelegateEE29trace_event_unique_atomic3809
70212
+ _ZZN2v88internal17PageEvacuationJob3RunEPNS_11JobDelegateEE29trace_event_unique_atomic3813
70202
70213
  _ZZN2v88internal18PerfectKeywordHash4HashEPKciE11asso_values
70214
+ _ZZN2v88internal19PointersUpdatingJob3RunEPNS_11JobDelegateEE29trace_event_unique_atomic4206
70203
70215
  _ZZN2v88internal19PointersUpdatingJob3RunEPNS_11JobDelegateEE29trace_event_unique_atomic4209
70204
- _ZZN2v88internal19PointersUpdatingJob3RunEPNS_11JobDelegateEE29trace_event_unique_atomic4212
70205
- _ZZN2v88internal19ToSpaceUpdatingItemINS0_26MinorNonAtomicMarkingStateEE15ProcessVisitAllEvE29trace_event_unique_atomic4277
70206
- _ZZN2v88internal19ToSpaceUpdatingItemINS0_26MinorNonAtomicMarkingStateEE16ProcessVisitLiveEvE29trace_event_unique_atomic4290
70216
+ _ZZN2v88internal19ToSpaceUpdatingItemINS0_26MinorNonAtomicMarkingStateEE15ProcessVisitAllEvE29trace_event_unique_atomic4274
70217
+ _ZZN2v88internal19ToSpaceUpdatingItemINS0_26MinorNonAtomicMarkingStateEE16ProcessVisitLiveEvE29trace_event_unique_atomic4287
70207
70218
  _ZZN2v88internal20RegExpMacroAssembler22ImplementationToStringENS1_22IrregexpImplementationEE6kNames
70208
70219
  _ZZN2v88internal21ExternalCallbackScopeC4EPNS0_7IsolateEmE27trace_event_unique_atomic65
70209
70220
  _ZZN2v88internal21ExternalCallbackScopeD4EvE27trace_event_unique_atomic71
70210
70221
  _ZZN2v88internal22InternalStringToDoubleIPKhS3_EEdT_T0_idE15kInfinityString
70211
70222
  _ZZN2v88internal22InternalStringToDoubleIPKtS3_EEdT_T0_idE15kInfinityString
70212
- _ZZN2v88internal25RememberedSetUpdatingItemINS0_26MajorNonAtomicMarkingStateELNS0_16GarbageCollectorE1EE7ProcessEvE29trace_event_unique_atomic4321
70213
- _ZZN2v88internal25RememberedSetUpdatingItemINS0_26MinorNonAtomicMarkingStateELNS0_16GarbageCollectorE2EE7ProcessEvE29trace_event_unique_atomic4321
70223
+ _ZZN2v88internal25RememberedSetUpdatingItemINS0_26MajorNonAtomicMarkingStateELNS0_16GarbageCollectorE1EE7ProcessEvE29trace_event_unique_atomic4318
70224
+ _ZZN2v88internal25RememberedSetUpdatingItemINS0_26MinorNonAtomicMarkingStateELNS0_16GarbageCollectorE2EE7ProcessEvE29trace_event_unique_atomic4318
70214
70225
  _ZZN2v88internal25TranslationOpcodeToStringENS0_17TranslationOpcodeEE5names
70215
- _ZZN2v88internal25YoungGenerationMarkingJob3RunEPNS_11JobDelegateEE29trace_event_unique_atomic5663
70216
- _ZZN2v88internal25YoungGenerationMarkingJob3RunEPNS_11JobDelegateEE29trace_event_unique_atomic5668
70217
- _ZZN2v88internal26EphemeronTableUpdatingItem7ProcessEvE29trace_event_unique_atomic4546
70226
+ _ZZN2v88internal25YoungGenerationMarkingJob3RunEPNS_11JobDelegateEE29trace_event_unique_atomic5660
70227
+ _ZZN2v88internal25YoungGenerationMarkingJob3RunEPNS_11JobDelegateEE29trace_event_unique_atomic5665
70228
+ _ZZN2v88internal26EphemeronTableUpdatingItem7ProcessEvE29trace_event_unique_atomic4543
70218
70229
  _ZZN2v88internal26TracingAccountingAllocator39UpdateMemoryTrafficAndReportMemoryUsageEmE29trace_event_unique_atomic3064
70219
70230
  _ZZN2v88internal27OptimizingCompileDispatcher11CompileTask11RunInternalEvE27trace_event_unique_atomic55
70220
70231
  _ZZN2v88internal28CFunctionBuilderWithFunctionINS_16CTypeInfoBuilderIvJEEEJNS2_INS_5LocalINS_5ValueEEEJEEEEE5BuildEvE8instance
@@ -71389,7 +71400,6 @@ _ZZNK4node14options_parser13OptionsParserINS_12DebugOptionsEE5ParseEPSt6vectorIN
71389
71400
  _ZZNK4node14options_parser13OptionsParserINS_17PerIsolateOptionsEE5ParseEPSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaISA_EESD_SD_PS2_NS_20OptionEnvvarSettingsESD_E4args
71390
71401
  _ZZNK4node14options_parser13OptionsParserINS_17PerProcessOptionsEE5ParseEPSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaISA_EESD_SD_PS2_NS_20OptionEnvvarSettingsESD_E4args
71391
71402
  _ZZNK4node20SyncProcessStdioPipe7uv_pipeEvE4args
71392
- _ZZNK4node6crypto25ArrayBufferOrViewContentsIcE20ToNullTerminatedCopyEvE4args
71393
71403
  _ZZNK4node7TCPWrap14MemoryInfoNameB5cxx11EvE4args
71394
71404
  _ZZNK4node8HostPort4portEvE4args
71395
71405
  _ZZNK4node9Histogram10PercentileEdE4args
@@ -23,7 +23,7 @@
23
23
  #define SRC_NODE_VERSION_H_
24
24
 
25
25
  #define NODE_MAJOR_VERSION 18
26
- #define NODE_MINOR_VERSION 5
26
+ #define NODE_MINOR_VERSION 6
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 2
13
13
  #define V8_BUILD_NUMBER 154
14
- #define V8_PATCH_LEVEL 4
14
+ #define V8_PATCH_LEVEL 13
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": "v18.5.0",
3
+ "version": "v18.6.0",
4
4
  "description": "node",
5
5
  "bin": {
6
6
  "node": "bin/node"