Skip to content

Commit f065ecb

Browse files
committed
2017-07-19, 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. [[`820b011ed6`](820b011ed6)] [#13466](#13466) * **Cluster** * Users now have more fine-grained control over the inspector port used by individual cluster workers. Previously, cluster workers would simply increment from the master's debug port. [[`dfc46e262a`](dfc46e262a)] [#14140](#14140) * **DNS** * The server used for DNS queries can now use a custom port. [[`ebe7bb29aa`](ebe7bb29aa)] [#13723](#13723) * Support for `dns.resolveAny()` has been added. [[`6e30e2558e`](6e30e2558e)] [#13137](#13137) * **npm** * The `npm` CLI has been updated to version 5.3.0. In particular, it now comes with the `npx` binary, which is also shipped with Node. [[`dc3f6b9ac1`](dc3f6b9ac1)] [#14235](#14235) * `npm` Changelogs: - [v5.0.4](https://github.com/npm/npm/releases/tag/v5.0.4) - [v5.1.0](https://github.com/npm/npm/releases/tag/v5.1.0) - [v5.2.0](https://github.com/npm/npm/releases/tag/v5.2.0) - [v5.3.0](https://github.com/npm/npm/releases/tag/v5.3.0) PR-URL: #13744
1 parent 7df10f5 commit f065ecb

File tree

6 files changed

+306
-13
lines changed

6 files changed

+306
-13
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.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

+4-4
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

+4-4
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ thrown to immediately terminate the process.
497497
498498
#### napi_fatal_error
499499
<!-- YAML
500-
added: REPLACEME
500+
added: v8.2.0
501501
-->
502502
```C
503503
NAPI_EXTERN NAPI_NO_RETURN void napi_fatal_error(const char* location, const char* message);
@@ -2295,7 +2295,7 @@ This API checks if the Object passed in has the named property.
22952295

22962296
#### *napi_delete_property*
22972297
<!-- YAML
2298-
added: REPLACEME
2298+
added: v8.2.0
22992299
-->
23002300
```C
23012301
napi_status napi_delete_property(napi_env env,
@@ -2317,7 +2317,7 @@ This API attempts to delete the `key` own property from `object`.
23172317
23182318
#### *napi_has_own_property*
23192319
<!-- YAML
2320-
added: REPLACEME
2320+
added: v8.2.0
23212321
-->
23222322
```C
23232323
napi_status napi_has_own_property(napi_env env,
@@ -2464,7 +2464,7 @@ requested index.
24642464

24652465
#### *napi_delete_element*
24662466
<!-- YAML
2467-
added: REPLACEME
2467+
added: v8.2.0
24682468
-->
24692469
```C
24702470
napi_status napi_delete_element(napi_env env,

doc/api/util.md

+1-1
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)