From 6a5bdfb97e5316f39ffdfc38ac0fd5837b10e570 Mon Sep 17 00:00:00 2001 From: Jeremiah Senkpiel Date: Thu, 20 Jul 2017 13:52:31 -0400 Subject: [PATCH] 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 --- CHANGELOG.md | 3 ++- doc/changelogs/CHANGELOG_V8.md | 16 ++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b841a1eab74d8..e5046bc158b9b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,7 +27,8 @@ release. -8.2.0
+8.2.1
+8.2.0
8.1.4
8.1.3
8.1.2
diff --git a/doc/changelogs/CHANGELOG_V8.md b/doc/changelogs/CHANGELOG_V8.md index ea56ccc2e16b40..3c5768c802f537 100644 --- a/doc/changelogs/CHANGELOG_V8.md +++ b/doc/changelogs/CHANGELOG_V8.md @@ -6,6 +6,7 @@ +8.2.1
8.2.0
8.1.4
8.1.3
@@ -27,6 +28,21 @@ * [io.js](CHANGELOG_IOJS.md) * [Archive](CHANGELOG_ARCHIVE.md) + +## 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) + ## 2017-07-19, Version 8.2.0 (Current), @fishrock123