Skip to content

Commit ea2a309

Browse files
committed
2016-09-14, Version 6.6.0 (Current)
Notable changes: * crypto: Added `crypto.timingSafeEqual()`. (not-an-aardvark) nodejs#8304 * events: Made the "max event listeners" memory leak warning more accessible. (Anna Henningsen) nodejs#8298 * promises: Unhandled rejections now emit a process warning after the first tick. (Benjamin Gruenbaum) nodejs#8223 * repl: Added auto alignment for `.editor` mode. (Prince J Wesley) nodejs#8241 * util: Some functionality has been added to `util.inspect()`: - Returning `this` from a custom inspect function now works. (Anna Henningsen) nodejs#8174 - Added support for Symbol-based custom inspection methods. (Anna Henningsen) nodejs#8174 Refs: nodejs#8428 Refs: nodejs#8457 PR-URL: nodejs#8466
1 parent 3c23db4 commit ea2a309

File tree

3 files changed

+133
-2
lines changed

3 files changed

+133
-2
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ release.
2626
</tr>
2727
<tr>
2828
<td valign="top">
29-
<b><a href="doc/changelogs/CHANGELOG_V6.md#6.5.0">6.5.0</a></b><br/>
29+
<b><a href="doc/changelogs/CHANGELOG_V6.md#6.6.0">6.6.0</a></b><br/>
30+
<a href="doc/changelogs/CHANGELOG_V6.md#6.5.0">6.5.0</a><br/>
3031
<a href="doc/changelogs/CHANGELOG_V6.md#6.4.0">6.4.0</a><br/>
3132
<a href="doc/changelogs/CHANGELOG_V6.md#6.3.1">6.3.1</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V6.md#6.3.0">6.3.0</a><br/>

doc/api/util.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ console.log(arr); // logs the full array
348348

349349
### util.inspect.custom
350350
<!-- YAML
351-
added: REPLACEME
351+
added: v6.6.0
352352
-->
353353

354354
A Symbol that can be used to declare custom inspect functions, see

0 commit comments

Comments
 (0)