Skip to content

Commit a0bf6bb

Browse files
committed
2017-07-??, 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) * Support for `dns.resolveAny()` has been added. [[`30bc9dc20f`](30bc9dc20f)] [#13137](#13137) * **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 f457b05 commit a0bf6bb

File tree

6 files changed

+229
-12
lines changed

6 files changed

+229
-12
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.1.4">8.1.4</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.4">8.1.4</a><br/>
3132
<a href="doc/changelogs/CHANGELOG_V8.md#8.1.3">8.1.3</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V8.md#8.1.2">8.1.2</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V8.md#8.1.1">8.1.1</a><br/>

doc/api/buffer.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -910,7 +910,7 @@ A `TypeError` will be thrown if `str` is not a string.
910910

911911
### Class Method: Buffer.from(object[, offsetOrEncoding[, length]])
912912
<!-- YAML
913-
added: REPLACEME
913+
added: v8.2.0
914914
-->
915915

916916
* `object` {Object} An object supporting `Symbol.toPrimitive` or `valueOf()`
@@ -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

doc/api/n-api.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2278,7 +2278,7 @@ This API checks if the Object passed in has the named property.
22782278

22792279
#### *napi_delete_property*
22802280
<!-- YAML
2281-
added: REPLACEME
2281+
added: v8.2.0
22822282
-->
22832283
```C
22842284
napi_status napi_delete_property(napi_env env,
@@ -2300,7 +2300,7 @@ This API attempts to delete the `key` own property from `object`.
23002300
23012301
#### *napi_has_own_property*
23022302
<!-- YAML
2303-
added: REPLACEME
2303+
added: v8.2.0
23042304
-->
23052305
```C
23062306
napi_status napi_has_own_property(napi_env env,
@@ -2447,7 +2447,7 @@ requested index.
24472447

24482448
#### *napi_delete_element*
24492449
<!-- YAML
2450-
added: REPLACEME
2450+
added: v8.2.0
24512451
-->
24522452
```C
24532453
napi_status napi_delete_element(napi_env env,

doc/api/util.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const util = require('util');
1212

1313
## util.callbackify(original)
1414
<!-- YAML
15-
added: REPLACEME
15+
added: v8.2.0
1616
-->
1717

1818
* `original` {Function} An `async` function

0 commit comments

Comments
 (0)