Skip to content

Commit 411ecf2

Browse files
committed
2018-05-15, Version 10.2.0 (Current), @???
Notable Changes: * **addons**: - Fixed a memory leak for users of `AsyncResource` and N-API. (Michael Dawson) [#20668](#20668) * **assert**: - The `error` parameter of `assert.throws()` can be an object containing regular expressions now. (Ruben Bridgewater) [#20485](#20485) * **crypto**: - The `authTagLength` option has been made more flexible. (Tobias Nießen) [#20235](#20235), [#20039](#20039) * **http**: - Handling of `close` and `aborted` events has been made more consistent. (Robert Nagy) [#20075](#20075), [#20611](#20611) * Embedder support: - Functions for creating V8 `Isolate` and `Context` objects with Node.js-specific behaviour have been added to the API. (helloshuangzi) [#20639](#20639) - Node.js `Environment`s clean up resources before exiting now. (Anna Henningsen) [#19377](#19377) - Support for multi-threaded embedding has been improved. (Anna Henningsen) [#20542](#20542), [#20539](#20539), [#20541](#20541) * **esm**: - Builtin modules (e.g. `fs`) now provide named exports in ES6 modules. (Gus Caplan) [#20403](#20403) * **timers**: - `timeout.refresh()` has been added to the public API. (Jeremiah Senkpiel) [#20298](#20298) PR-URL: #20724
1 parent 9ecc746 commit 411ecf2

File tree

8 files changed

+139
-14
lines changed

8 files changed

+139
-14
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ release.
3333
</tr>
3434
<tr>
3535
<td valign="top">
36-
<b><a href="doc/changelogs/CHANGELOG_V10.md#10.1.0">10.1.0</a></b><br/>
36+
<b><a href="doc/changelogs/CHANGELOG_V10.md#10.2.0">10.2.0</a></b><br/>
37+
<a href="doc/changelogs/CHANGELOG_V10.md#10.1.0">10.1.0</a><br/>
3738
<a href="doc/changelogs/CHANGELOG_V10.md#10.0.0">10.0.0</a><br/>
3839
</td>
3940
<td valign="top">

doc/api/assert.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1056,7 +1056,7 @@ instead of the `AssertionError`.
10561056
<!-- YAML
10571057
added: v0.1.21
10581058
changes:
1059-
- version: REPLACEME
1059+
- version: v10.2.0
10601060
pr-url: https://github.com/nodejs/node/pull/20485
10611061
description: The `error` parameter can be an object containing regular
10621062
expressions now.

doc/api/cli.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ behavior for the main module, also use `--preserve-symlinks-main`.
223223

224224
### `--preserve-symlinks-main`
225225
<!-- YAML
226-
added: REPLACEME
226+
added: v10.2.0
227227
-->
228228

229229
Instructs the module loader to preserve symbolic links when resolving and

doc/api/crypto.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1317,7 +1317,7 @@ This property is deprecated. Please use `crypto.setFips()` and
13171317
added: v0.1.94
13181318
deprecated: v10.0.0
13191319
changes:
1320-
- version: REPLACEME
1320+
- version: v10.2.0
13211321
pr-url: https://github.com/nodejs/node/pull/20235
13221322
description: The `authTagLength` option can now be used to produce shorter
13231323
authentication tags in GCM mode and defaults to 16 bytes.
@@ -1369,7 +1369,7 @@ Adversaries][] for details.
13691369
<!-- YAML
13701370
added: v0.1.94
13711371
changes:
1372-
- version: REPLACEME
1372+
- version: v10.2.0
13731373
pr-url: https://github.com/nodejs/node/pull/20235
13741374
description: The `authTagLength` option can now be used to produce shorter
13751375
authentication tags in GCM mode and defaults to 16 bytes.
@@ -1467,7 +1467,7 @@ to create the `Decipher` object.
14671467
<!-- YAML
14681468
added: v0.1.94
14691469
changes:
1470-
- version: REPLACEME
1470+
- version: v10.2.0
14711471
pr-url: https://github.com/nodejs/node/pull/20039
14721472
description: The `authTagLength` option can now be used to restrict accepted
14731473
GCM authentication tag lengths.

doc/api/n-api.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -898,7 +898,7 @@ should be freed up.
898898

899899
#### napi_add_env_cleanup_hook
900900
<!-- YAML
901-
added: REPLACEME
901+
added: v10.2.0
902902
-->
903903
```C
904904
NODE_EXTERN napi_status napi_add_env_cleanup_hook(napi_env env,
@@ -923,7 +923,7 @@ is being torn down anyway.
923923

924924
#### napi_remove_env_cleanup_hook
925925
<!-- YAML
926-
added: REPLACEME
926+
added: v10.2.0
927927
-->
928928
```C
929929
NAPI_EXTERN napi_status napi_remove_env_cleanup_hook(napi_env env,

doc/api/timers.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ to call `timeout.ref()` unless `timeout.unref()` had been called previously.
7676

7777
### timeout.refresh()
7878
<!-- YAML
79-
added: REPLACEME
79+
added: v10.2.0
8080
-->
8181

8282
* Returns: {Timeout} a reference to `timeout`

doc/changelogs/CHANGELOG_V10.md

+126-2
Large diffs are not rendered by default.

src/node_version.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 10
26-
#define NODE_MINOR_VERSION 1
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 2
27+
#define NODE_PATCH_VERSION 0
2828

2929
#define NODE_VERSION_IS_LTS 0
3030
#define NODE_VERSION_LTS_CODENAME ""
3131

32-
#define NODE_VERSION_IS_RELEASE 0
32+
#define NODE_VERSION_IS_RELEASE 1
3333

3434
#ifndef NODE_STRINGIFY
3535
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)