Skip to content

Commit 9dba18e

Browse files
committed
2017-06-??, Version 8.2.0 (Current)
Notable changes: * **Async Hooks** * Multiple improvements to Promise support in `async_hooks` have been made. * **Build** * The compiler version requirement to build Node with GCC has been raised to GCC 4.9.4. [[`23d41f3118`](2abaa86ba8)] [#13466](#13466) * **DNS** * The server used for DNS queries can now use a custom port. [[`2bb6614904`](8506acc1b5)] [#13723](#13723) * **V8** * The V8 engine has been upgraded to version 5.9, which has a significantly changed performance profile. [#13515](#13515) PR-URL: #13744
1 parent 0b96a26 commit 9dba18e

File tree

4 files changed

+137
-7
lines changed

4 files changed

+137
-7
lines changed

CHANGELOG.md

+2-1
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.1.2">8.1.2</a></b><br/>
30+
<b><a href="doc/changelogs/CHANGELOG_V8.md#8.2.0">8.2.0</a></b><br/>
31+
<a href="doc/changelogs/CHANGELOG_V8.md#8.1.2">8.1.2</a><br/>
3132
<a href="doc/changelogs/CHANGELOG_V8.md#8.1.1">8.1.1</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V8.md#8.1.0">8.1.0</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V8.md#8.0.0">8.0.0</a><br/>

doc/api/buffer.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2665,15 +2665,15 @@ console.log(buf);
26652665

26662666
## Buffer Constants
26672667
<!-- YAML
2668-
added: REPLACEME
2668+
added: 8.2.0
26692669
-->
26702670

26712671
Note that `buffer.constants` is a property on the `buffer` module returned by
26722672
`require('buffer')`, not on the `Buffer` global or a `Buffer` instance.
26732673

26742674
### buffer.constants.MAX_LENGTH
26752675
<!-- YAML
2676-
added: REPLACEME
2676+
added: 8.2.0
26772677
-->
26782678

26792679
* {integer} The largest size allowed for a single `Buffer` instance
@@ -2685,7 +2685,7 @@ This value is also available as [`buffer.kMaxLength`][].
26852685

26862686
### buffer.constants.MAX_STRING_LENGTH
26872687
<!-- YAML
2688-
added: REPLACEME
2688+
added: 8.2.0
26892689
-->
26902690

26912691
* {integer} The largest length allowed for a single `string` instance

0 commit comments

Comments
 (0)