Skip to content

Commit 7e46350

Browse files
committed
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: #14399
1 parent 8d426bb commit 7e46350

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ release.
2727
</tr>
2828
<tr>
2929
<td valign="top">
30-
<b><a href="doc/changelogs/CHANGELOG_V8.md#8.2.0">8.2.0</a></b><br/>
30+
<b><a href="doc/changelogs/CHANGELOG_V8.md#8.2.1">8.2.1</a></b><br/>
31+
<a href="doc/changelogs/CHANGELOG_V8.md#8.2.0">8.2.0</a><br/>
3132
<a href="doc/changelogs/CHANGELOG_V8.md#8.1.4">8.1.4</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V8.md#8.1.3">8.1.3</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V8.md#8.1.2">8.1.2</a><br/>

doc/changelogs/CHANGELOG_V8.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
</tr>
77
<tr>
88
<td>
9+
<a href="#8.2.1">8.2.1</a><br/>
910
<a href="#8.2.0">8.2.0</a><br/>
1011
<a href="#8.1.4">8.1.4</a><br/>
1112
<a href="#8.1.3">8.1.3</a><br/>
@@ -27,6 +28,21 @@
2728
* [io.js](CHANGELOG_IOJS.md)
2829
* [Archive](CHANGELOG_ARCHIVE.md)
2930

31+
<a id="8.2.1"></a>
32+
## 2017-07-20, Version 8.2.1 (Current), @fishrock123
33+
34+
### Notable changes
35+
36+
* **http**: Writes no longer abort if the Socket is missing.
37+
* **process, async_hooks**: Avoid problems when `triggerAsyncId` is `undefined`.
38+
* **zlib**: Streams no longer attempt to process data when destroyed.
39+
40+
### Commits
41+
42+
* [[`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)
43+
* [[`302c19b006`](https://github.com/nodejs/node/commit/302c19b006)] - **process**: triggerAsyncId can be undefined (Matteo Collina) [#14387](https://github.com/nodejs/node/pull/14387)
44+
* [[`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)
45+
3046
<a id="8.2.0"></a>
3147
## 2017-07-19, Version 8.2.0 (Current), @fishrock123
3248

src/node_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#define NODE_MINOR_VERSION 2
2727
#define NODE_PATCH_VERSION 1
2828

29-
#define NODE_VERSION_IS_RELEASE 0
29+
#define NODE_VERSION_IS_RELEASE 1
3030

3131
#ifndef NODE_STRINGIFY
3232
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)