aboutsummaryrefslogtreecommitdiff
path: root/doc/changelogs/CHANGELOG_V6.md
diff options
context:
space:
mode:
authorEvan Lucas <evanlucas@me.com>2016-10-14 16:35:36 -0500
committerEvan Lucas <evanlucas@me.com>2016-10-14 19:36:43 -0500
commit113c697ded9d6dfd1e24ced5d290fe6c7af4e9fb (patch)
tree3fce52dae0b25b24a82c1c401eca84c96a7a6838 /doc/changelogs/CHANGELOG_V6.md
parentc457b928d08b4714334de93ff7c3a9857c8c26f4 (diff)
downloadandroid-node-v8-113c697ded9d6dfd1e24ced5d290fe6c7af4e9fb.tar.gz
android-node-v8-113c697ded9d6dfd1e24ced5d290fe6c7af4e9fb.tar.bz2
android-node-v8-113c697ded9d6dfd1e24ced5d290fe6c7af4e9fb.zip
2016-10-14, Version 6.8.1 (Current)
* build: Fix building with shared zlib. (Bradley T. Hughes) [#9077](https://github.com/nodejs/node/pull/9077) * stream: fix `Writable` subclass instanceof checks (Anna Henningsen) [#9088](https://github.com/nodejs/node/pull/9088) * timers: fix regression with clearImmediate() (Brian White) [#9086](https://github.com/nodejs/node/pull/9086) PR-URL: https://github.com/nodejs/node/pull/9104
Diffstat (limited to 'doc/changelogs/CHANGELOG_V6.md')
-rw-r--r--doc/changelogs/CHANGELOG_V6.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/changelogs/CHANGELOG_V6.md b/doc/changelogs/CHANGELOG_V6.md
index 35b66dfcc1..40d151223a 100644
--- a/doc/changelogs/CHANGELOG_V6.md
+++ b/doc/changelogs/CHANGELOG_V6.md
@@ -6,6 +6,7 @@
</tr>
<tr>
<td>
+<a href="#6.8.1">6.8.1</a><br/>
<a href="#6.8.0">6.8.0</a><br/>
<a href="#6.7.0">6.7.0</a><br/>
<a href="#6.6.0">6.6.0</a><br/>
@@ -34,6 +35,21 @@
[Node.js Long Term Support plan](https://github.com/nodejs/LTS) starting in
October 2016.
+<a id="6.8.1"></a>
+## 2016-10-14, Version 6.8.1 (Current), @evanlucas
+
+### Notable changes
+
+* **build**: Fix building with shared zlib. (Bradley T. Hughes) [#9077](https://github.com/nodejs/node/pull/9077)
+* **stream**: Fix regression in `stream.Writable` subclass `instanceof` checks. (Anna Henningsen) [#9088](https://github.com/nodejs/node/pull/9088)
+* **timers**: Fix regression where immediates that are cleared in the callback would never be called. (Brian White) [#9086](https://github.com/nodejs/node/pull/9086)
+
+### Commits
+
+* [[`8d2206fe41`](https://github.com/nodejs/node/commit/8d2206fe41)] - **build**: add -DZLIB_CONST when building with --shared-zlib (Bradley T. Hughes) [#9077](https://github.com/nodejs/node/pull/9077)
+* [[`8c4fab0a28`](https://github.com/nodejs/node/commit/8c4fab0a28)] - **stream**: fix `Writable` subclass instanceof checks (Anna Henningsen) [#9088](https://github.com/nodejs/node/pull/9088)
+* [[`7171bd6311`](https://github.com/nodejs/node/commit/7171bd6311)] - **timers**: fix regression with clearImmediate() (Brian White) [#9086](https://github.com/nodejs/node/pull/9086)
+
<a id="6.8.0"></a>
## 2016-10-12, Version 6.8.0 (Current), @Fishrock123