Skip to content

Commit df18654

Browse files
committed
2022-04-29, Version 14.19.2 'Fermium' (LTS)
Notable changes V8: V8 had a stack overflow issue affecting the `vm` module, cherry-picking `941b023 from V8 solves this issue. Learn more at: #41826 Contributed by @devsnek Using `getHeapSnapshot()` was causing a Node.js crash due a V8 issue, this is fixed by backporting v8/v8@367b0c1 from V8. Learn more at: #42637 Contributed by Gabriel Schulhof (@legendecas) PR-url: TBD
1 parent 3d6255f commit df18654

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

doc/changelogs/CHANGELOG_V14.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
</tr>
1212
<tr>
1313
<td valign="top">
14+
<a href="#14.19.2">14.19.2</a><br/>
1415
<a href="#14.19.1">14.19.1</a><br/>
1516
<a href="#14.19.0">14.19.0</a><br/>
1617
<a href="#14.18.3">14.18.3</a><br/>
@@ -71,6 +72,36 @@
7172
* [io.js](CHANGELOG_IOJS.md)
7273
* [Archive](CHANGELOG_ARCHIVE.md)
7374

75+
<a id="14.19.2"></a>
76+
## 2022-04-29, Version 14.19.2 'Fermium' (LTS), @juanarbol
77+
78+
### Notable changes
79+
80+
V8:
81+
V8 had a stack overflow issue affecting the `vm` module, cherry-picking [`cc9a8a37445e`](https://github.com/nodejs/node/pull/41826/commits/941b02375a3dbcc4a5eb054c1c206edb80f99b61)
82+
from V8 solves this issue.
83+
84+
Learn more at: https://github.com/nodejs/node/pull/41826
85+
86+
Contributed by @devsnek
87+
88+
Using `getHeapSnapshot()` was causing a Node.js crash due a V8 issue, this is fixed by backporting [`367b0c1e7a32`](https://github.com/v8/v8/commit/367b0c1e7a323deafeab56736b01bc7e14fc1998)
89+
from V8.
90+
91+
Learn more at: https://github.com/nodejs/node/pull/42637
92+
93+
Contributed by Gabriel Schulhof (@legendecas)
94+
95+
### Commits
96+
97+
* \[[`40b0f8fe36`](https://github.com/nodejs/node/commit/40b0f8fe36)] - **build**: use ccache in make-v8.sh on ppc64le and s390x (Richard Lau) [#42204](https://github.com/nodejs/node/pull/42204)
98+
* \[[`3d6255fc2e`](https://github.com/nodejs/node/commit/3d6255fc2e)] - **deps**: V8: cherry-pick cc9a8a37445e (Gus Caplan) [#41826](https://github.com/nodejs/node/pull/41826)
99+
* \[[`b89d4ef0a2`](https://github.com/nodejs/node/commit/b89d4ef0a2)] - **deps**: V8: cherry-pick 367b0c1e7a32 (legendecas) [#42637](https://github.com/nodejs/node/pull/42637)
100+
* \[[`97083bc5c9`](https://github.com/nodejs/node/commit/97083bc5c9)] - **doc**: specify flag needed for JSON and Wasm modules (Rich Trott) [#42736](https://github.com/nodejs/node/pull/42736)
101+
* \[[`03e957265d`](https://github.com/nodejs/node/commit/03e957265d)] - **doc**: use openpgp.org for keyserver examples (Nick Schonning) [#39227](https://github.com/nodejs/node/pull/39227)
102+
* \[[`d4171e0eac`](https://github.com/nodejs/node/commit/d4171e0eac)] - **stream**: resume stream on drain (Robert Nagy) [#41848](https://github.com/nodejs/node/pull/41848)
103+
* \[[`608333e105`](https://github.com/nodejs/node/commit/608333e105)] - **worker**: do not send message if port is closing (Rich Trott) [#42357](https://github.com/nodejs/node/pull/42357)
104+
74105
<a id="14.19.1"></a>
75106

76107
## 2022-03-17, Version 14.19.1 'Fermium' (LTS), @richardlau

src/node_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#define NODE_VERSION_IS_LTS 1
3030
#define NODE_VERSION_LTS_CODENAME "Fermium"
3131

32-
#define NODE_VERSION_IS_RELEASE 0
32+
#define NODE_VERSION_IS_RELEASE 1
3333

3434
#ifndef NODE_STRINGIFY
3535
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)