Skip to content

Commit

Permalink
2022-04-29, Version 14.19.2 'Fermium' (LTS)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
juanarbol committed Apr 28, 2022
1 parent 3d6255f commit df18654
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
31 changes: 31 additions & 0 deletions doc/changelogs/CHANGELOG_V14.md
Expand Up @@ -11,6 +11,7 @@
</tr>
<tr>
<td valign="top">
<a href="#14.19.2">14.19.2</a><br/>
<a href="#14.19.1">14.19.1</a><br/>
<a href="#14.19.0">14.19.0</a><br/>
<a href="#14.18.3">14.18.3</a><br/>
Expand Down Expand Up @@ -71,6 +72,36 @@
* [io.js](CHANGELOG_IOJS.md)
* [Archive](CHANGELOG_ARCHIVE.md)

<a id="14.19.2"></a>
## 2022-04-29, Version 14.19.2 'Fermium' (LTS), @juanarbol

### Notable changes

V8:
V8 had a stack overflow issue affecting the `vm` module, cherry-picking [`cc9a8a37445e`](https://github.com/nodejs/node/pull/41826/commits/941b02375a3dbcc4a5eb054c1c206edb80f99b61)
from V8 solves this issue.

Learn more at: https://github.com/nodejs/node/pull/41826

Contributed by @devsnek

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)
from V8.

Learn more at: https://github.com/nodejs/node/pull/42637

Contributed by Gabriel Schulhof (@legendecas)

### Commits

* \[[`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)
* \[[`3d6255fc2e`](https://github.com/nodejs/node/commit/3d6255fc2e)] - **deps**: V8: cherry-pick cc9a8a37445e (Gus Caplan) [#41826](https://github.com/nodejs/node/pull/41826)
* \[[`b89d4ef0a2`](https://github.com/nodejs/node/commit/b89d4ef0a2)] - **deps**: V8: cherry-pick 367b0c1e7a32 (legendecas) [#42637](https://github.com/nodejs/node/pull/42637)
* \[[`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)
* \[[`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)
* \[[`d4171e0eac`](https://github.com/nodejs/node/commit/d4171e0eac)] - **stream**: resume stream on drain (Robert Nagy) [#41848](https://github.com/nodejs/node/pull/41848)
* \[[`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)

<a id="14.19.1"></a>

## 2022-03-17, Version 14.19.1 'Fermium' (LTS), @richardlau
Expand Down
2 changes: 1 addition & 1 deletion src/node_version.h
Expand Up @@ -29,7 +29,7 @@
#define NODE_VERSION_IS_LTS 1
#define NODE_VERSION_LTS_CODENAME "Fermium"

#define NODE_VERSION_IS_RELEASE 0
#define NODE_VERSION_IS_RELEASE 1

#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
Expand Down

0 comments on commit df18654

Please sign in to comment.