2021-09-10, Version 16.9.1 (Current)

Notable changes:

This release fixes a regression introduced by the V8 9.3 update in Node.js 16.9.0.

PR-URL: https://github.com/nodejs/node/issues/40069
This commit is contained in:
Richard Lau 2021-09-10 11:23:47 -04:00
parent 00ca8488aa
commit 1b335d41a4
No known key found for this signature in database
GPG Key ID: C43CEC45C17AB93C
2 changed files with 14 additions and 1 deletions

View File

@ -32,7 +32,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V16.md#16.9.0">16.9.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V16.md#16.9.1">16.9.1</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V16.md#16.9.0">16.9.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V16.md#16.8.0">16.8.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V16.md#16.7.0">16.7.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V16.md#16.6.2">16.6.2</a><br/>

View File

@ -10,6 +10,7 @@
</tr>
<tr>
<td>
<a href="#16.9.1">16.9.1</a><br/>
<a href="#16.9.0">16.9.0</a><br/>
<a href="#16.8.0">16.8.0</a><br/>
<a href="#16.7.0">16.7.0</a><br/>
@ -46,6 +47,17 @@
* [io.js](CHANGELOG_IOJS.md)
* [Archive](CHANGELOG_ARCHIVE.md)
<a id="16.9.1"></a>
## 2021-09-10, Version 16.9.1 (Current), @richardlau
### Notable Changes
This release fixes a [regression](https://github.com/nodejs/node/issues/40030) introduced by the V8 9.3 update in Node.js 16.9.0.
### Commits
* [[`04f1943109`](https://github.com/nodejs/node/commit/04f1943109)] - **deps**: V8: cherry-pick 9a607043cb31 (Jiawen Geng) [#40046](https://github.com/nodejs/node/pull/40046)
<a id="16.9.0"></a>
## 2021-09-07, Version 16.9.0 (Current), @targos