Skip to content

Commit 65eefa0

Browse files
committed
2017-07-19, Version 8.2.0 (Current)
Big thanks to @addaleax who prepared the vast majority of this release. 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 f67aa56 commit 65eefa0

File tree

6 files changed

+305
-11
lines changed

6 files changed

+305
-11
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/cluster.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -694,7 +694,7 @@ values are `"rr"` and `"none"`.
694694
<!-- YAML
695695
added: v0.7.1
696696
changes:
697-
- version: REPLACEME
697+
- version: 8.2.0
698698
pr-url: https://github.com/nodejs/node/pull/14140
699699
description: The `inspectPort` option is supported now.
700700
- version: v6.4.0

doc/api/n-api.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,7 @@ thrown to immediately terminate the process.
540540
541541
#### napi_fatal_error
542542
<!-- YAML
543-
added: REPLACEME
543+
added: v8.2.0
544544
-->
545545
```C
546546
NAPI_EXTERN NAPI_NO_RETURN void napi_fatal_error(const char* location, const char* message);
@@ -2338,7 +2338,7 @@ This API checks if the Object passed in has the named property.
23382338

23392339
#### *napi_delete_property*
23402340
<!-- YAML
2341-
added: REPLACEME
2341+
added: v8.2.0
23422342
-->
23432343
```C
23442344
napi_status napi_delete_property(napi_env env,
@@ -2360,7 +2360,7 @@ This API attempts to delete the `key` own property from `object`.
23602360
23612361
#### *napi_has_own_property*
23622362
<!-- YAML
2363-
added: REPLACEME
2363+
added: v8.2.0
23642364
-->
23652365
```C
23662366
napi_status napi_has_own_property(napi_env env,
@@ -2507,7 +2507,7 @@ requested index.
25072507

25082508
#### *napi_delete_element*
25092509
<!-- YAML
2510-
added: REPLACEME
2510+
added: v8.2.0
25112511
-->
25122512
```C
25132513
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)