Browse Source

2017-07-20, Version 8.2.1 (Current)

Notable changes

* http: Writes no longer abort if the Socket is missing.
* process, async_hooks: Avoid problems when triggerAsyncId is undefined.
* zlib: Streams no longer attempt to process data when destroyed.

PR-URL: https://github.com/nodejs/node/pull/14399
v6
Jeremiah Senkpiel 8 years ago
parent
commit
6a5bdfb97e
  1. 3
      CHANGELOG.md
  2. 16
      doc/changelogs/CHANGELOG_V8.md

3
CHANGELOG.md

@ -27,7 +27,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V8.md#8.2.0">8.2.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V8.md#8.2.1">8.2.1</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V8.md#8.2.0">8.2.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V8.md#8.1.4">8.1.4</a><br/>
<a href="doc/changelogs/CHANGELOG_V8.md#8.1.3">8.1.3</a><br/>
<a href="doc/changelogs/CHANGELOG_V8.md#8.1.2">8.1.2</a><br/>

16
doc/changelogs/CHANGELOG_V8.md

@ -6,6 +6,7 @@
</tr>
<tr>
<td>
<a href="#8.2.1">8.2.1</a><br/>
<a href="#8.2.0">8.2.0</a><br/>
<a href="#8.1.4">8.1.4</a><br/>
<a href="#8.1.3">8.1.3</a><br/>
@ -27,6 +28,21 @@
* [io.js](CHANGELOG_IOJS.md)
* [Archive](CHANGELOG_ARCHIVE.md)
<a id="8.2.1"></a>
## 2017-07-20, Version 8.2.1 (Current), @fishrock123
### Notable changes
* **http**: Writes no longer abort if the Socket is missing.
* **process, async_hooks**: Avoid problems when `triggerAsyncId` is `undefined`.
* **zlib**: Streams no longer attempt to process data when destroyed.
### Commits
* [[`8d426bbeec`](https://github.com/nodejs/node/commit/8d426bbeec)] - **http**: do not abort if socket is missing (Matteo Collina) [#14387](https://github.com/nodejs/node/pull/14387)
* [[`302c19b006`](https://github.com/nodejs/node/commit/302c19b006)] - **process**: triggerAsyncId can be undefined (Matteo Collina) [#14387](https://github.com/nodejs/node/pull/14387)
* [[`6fce1a314e`](https://github.com/nodejs/node/commit/6fce1a314e)] - **zlib**: check if the stream is destroyed before push (Matteo Collina) [#14330](https://github.com/nodejs/node/pull/14330)
<a id="8.2.0"></a>
## 2017-07-19, Version 8.2.0 (Current), @fishrock123

Loading…
Cancel
Save