Skip to content

Commit 77d8f0c

Browse files
committed
2019-08-06, Version 12.8.0 (Current)
Notable changes: * assert: * Legacy mode deprecation (`DEP0089`) is revoked (Colin Ihrig) #28892 * crypto: * The `outputLength` option is added to `crypto.createHash` (Tobias Nießen) #28805 * The `maxmem` range is increased from 32 to 53 bits (Tobias Nießen) #28799 * n-api: * Added APIs for per-instance state management (Gabriel Schulhof) #28682 * report: * Network interfaces get included in the report (cjihrig) #28911 * src: * `v8.getHeapCodeStatistics()` is now exported (Yuriy Vasiyarov) #27978 PR-URL: #29017
1 parent 11470d5 commit 77d8f0c

File tree

7 files changed

+119
-11
lines changed

7 files changed

+119
-11
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ release.
2828
</tr>
2929
<tr>
3030
<td valign="top">
31-
<b><a href="doc/changelogs/CHANGELOG_V12.md#12.7.0">12.7.0</a></b><br/>
31+
<b><a href="doc/changelogs/CHANGELOG_V12.md#12.8.0">12.8.0</a></b><br/>
32+
<a href="doc/changelogs/CHANGELOG_V12.md#12.7.0">12.7.0</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V12.md#12.6.0">12.6.0</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V12.md#12.5.0">12.5.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V12.md#12.4.0">12.4.0</a><br/>

doc/api/crypto.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1786,7 +1786,7 @@ and description of each available elliptic curve.
17861786
<!-- YAML
17871787
added: v0.1.92
17881788
changes:
1789-
- version: REPLACEME
1789+
- version: v12.8.0
17901790
pr-url: https://github.com/nodejs/node/pull/28805
17911791
description: The `outputLength` option was added for XOF hash functions.
17921792
-->
@@ -2592,7 +2592,7 @@ request.
25922592
<!-- YAML
25932593
added: v10.5.0
25942594
changes:
2595-
- version: REPLACEME
2595+
- version: v12.8.0
25962596
pr-url: https://github.com/nodejs/node/pull/28799
25972597
description: The `maxmem` value can now be any safe integer.
25982598
- version: v10.9.0
@@ -2649,7 +2649,7 @@ crypto.scrypt('secret', 'salt', 64, { N: 1024 }, (err, derivedKey) => {
26492649
<!-- YAML
26502650
added: v10.5.0
26512651
changes:
2652-
- version: REPLACEME
2652+
- version: v12.8.0
26532653
pr-url: https://github.com/nodejs/node/pull/28799
26542654
description: The `maxmem` value can now be any safe integer.
26552655
- version: v10.9.0

doc/api/deprecations.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1780,7 +1780,7 @@ cause a lot of issues. See <https://github.com/nodejs/node/issues/14328>.
17801780
### DEP0089: require('assert')
17811781
<!-- YAML
17821782
changes:
1783-
- version: REPLACEME
1783+
- version: v12.8.0
17841784
pr-url: https://github.com/nodejs/node/pull/28892
17851785
description: Deprecation revoked.
17861786
- version:

doc/api/n-api.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ tied to the life cycle of the Agent.
282282

283283
### napi_set_instance_data
284284
<!-- YAML
285-
added: REPLACEME
285+
added: v12.8.0
286286
-->
287287

288288
```C
@@ -309,7 +309,7 @@ by the previous call, it will not be called.
309309

310310
### napi_get_instance_data
311311
<!-- YAML
312-
added: REPLACEME
312+
added: v12.8.0
313313
-->
314314

315315
```C

doc/api/v8.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ being non-zero indicates a potential memory leak.
168168

169169
## v8.getHeapCodeStatistics()
170170
<!-- YAML
171-
added: REPLACEME
171+
added: v12.8.0
172172
-->
173173

174174
* Returns: {Object}

doc/changelogs/CHANGELOG_V12.md

+107
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 12
26-
#define NODE_MINOR_VERSION 7
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 8
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)