2023-09-08, Version 20.6.1 (Current)

Notable changes:

esm:
  * fix loading of CJS modules from ESM (Antoine du Hamel) https://github.com/nodejs/node/pull/49500

PR-URL: https://github.com/nodejs/node/pull/49528
This commit is contained in:
RafaelGSS 2023-09-07 09:31:16 -03:00 committed by Ruy Adorno
parent 718981ef56
commit 0a2ab4c77c
No known key found for this signature in database
GPG Key ID: E7DC4C5493C3DB5F
2 changed files with 11 additions and 1 deletions

View File

@ -35,7 +35,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.6.0">20.6.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.6.1">20.6.1</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V20.md#20.6.0">20.6.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V20.md#20.5.1">20.5.1</a><br/>
<a href="doc/changelogs/CHANGELOG_V20.md#20.5.0">20.5.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V20.md#20.4.0">20.4.0</a><br/>

View File

@ -8,6 +8,7 @@
</tr>
<tr>
<td>
<a href="#20.6.1">20.6.1</a><br/>
<a href="#20.6.0">20.6.0</a><br/>
<a href="#20.5.1">20.5.1</a><br/>
<a href="#20.5.0">20.5.0</a><br/>
@ -43,6 +44,14 @@
* [io.js](CHANGELOG_IOJS.md)
* [Archive](CHANGELOG_ARCHIVE.md)
<a id="20.6.1"></a>
## 2023-09-08, Version 20.6.1 (Current), @RafaelGSS
### Commits
* \[[`8acbe6d8e8`](https://github.com/nodejs/node/commit/8acbe6d8e8)] - **esm**: fix loading of CJS modules from ESM (Antoine du Hamel) [#49500](https://github.com/nodejs/node/pull/49500)
<a id="20.6.0"></a>
## 2023-09-04, Version 20.6.0 (Current), @juanarbol prepared by @UlisesGascon