Skip to content

Commit 5543b9c

Browse files
committed
2018-07-18, Version 10.7.0 (Current)
Notable changes: * console: * The `console.timeLog()` method has been implemented. (#21312) * deps: * Upgrade to libuv 1.22.0. (#21731) * Upgrade to ICU 62.1 (Unicode 11, CLDR 33.1). (#21728) * http: * Added support for passing both `timeout` and `agent` options to `http.request`. (#21204) * napi: * Added experimental support for functions dealing with bigint numbers. (#21226) * process: * The `process.hrtime.bigint()` method has been implemented. (#21256) * Added the `--title` command line argument to set the process title on startup. (#21477) * trace_events: * Added process_name metadata. (#21477) * Added new collaborators * codebytere - Shelley Vohr PR-URL: #21851
1 parent eef975e commit 5543b9c

File tree

7 files changed

+151
-13
lines changed

7 files changed

+151
-13
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ release.
3131
</tr>
3232
<tr>
3333
<td valign="top">
34-
<b><a href="doc/changelogs/CHANGELOG_V10.md#10.6.0">10.6.0</a></b><br/>
34+
<b><a href="doc/changelogs/CHANGELOG_V10.md#10.7.0">10.7.0</a></b><br/>
35+
<a href="doc/changelogs/CHANGELOG_V10.md#10.6.0">10.6.0</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V10.md#10.5.0">10.5.0</a><br/>
3637
<a href="doc/changelogs/CHANGELOG_V10.md#10.4.1">10.4.1</a><br/>
3738
<a href="doc/changelogs/CHANGELOG_V10.md#10.4.0">10.4.0</a><br/>

doc/api/cli.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ Throw errors for deprecations.
280280

281281
### `--title=title`
282282
<!-- YAML
283-
added: REPLACEME
283+
added: v10.7.0
284284
-->
285285

286286
Set `process.title` on startup.

doc/api/console.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ console.timeEnd('100-elements');
415415

416416
### console.timeLog([label][, ...data])
417417
<!-- YAML
418-
added: REPLACEME
418+
added: v10.7.0
419419
-->
420420
* `label` {string} **Default:** `'default'`
421421
* `...data` {any}

doc/api/n-api.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1695,7 +1695,7 @@ The JavaScript `Number` type is described in
16951695

16961696
#### napi_create_bigint_int64
16971697
<!-- YAML
1698-
added: REPLACEME
1698+
added: v10.7.0
16991699
-->
17001700

17011701
> Stability: 1 - Experimental
@@ -1716,7 +1716,7 @@ This API converts the C `int64_t` type to the JavaScript `BigInt` type.
17161716

17171717
#### napi_create_bigint_uint64
17181718
<!-- YAML
1719-
added: REPLACEME
1719+
added: v10.7.0
17201720
-->
17211721

17221722
> Stability: 1 - Experimental
@@ -1737,7 +1737,7 @@ This API converts the C `uint64_t` type to the JavaScript `BigInt` type.
17371737

17381738
#### napi_create_bigint_words
17391739
<!-- YAML
1740-
added: REPLACEME
1740+
added: v10.7.0
17411741
-->
17421742

17431743
> Stability: 1 - Experimental
@@ -2051,7 +2051,7 @@ This API returns the C double primitive equivalent of the given JavaScript
20512051

20522052
#### napi_get_value_bigint_int64
20532053
<!-- YAML
2054-
added: REPLACEME
2054+
added: v10.7.0
20552055
-->
20562056

20572057
> Stability: 1 - Experimental
@@ -2079,7 +2079,7 @@ This API returns the C `int64_t` primitive equivalent of the given JavaScript
20792079

20802080
#### napi_get_value_bigint_uint64
20812081
<!-- YAML
2082-
added: REPLACEME
2082+
added: v10.7.0
20832083
-->
20842084

20852085
> Stability: 1 - Experimental
@@ -2107,7 +2107,7 @@ This API returns the C `uint64_t` primitive equivalent of the given JavaScript
21072107

21082108
#### napi_get_value_bigint_words
21092109
<!-- YAML
2110-
added: REPLACEME
2110+
added: v10.7.0
21112111
-->
21122112

21132113
> Stability: 1 - Experimental

doc/api/process.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1196,7 +1196,7 @@ setTimeout(() => {
11961196

11971197
## process.hrtime.bigint()
11981198
<!-- YAML
1199-
added: REPLACEME
1199+
added: v10.7.0
12001200
-->
12011201

12021202
* Returns: {bigint}

doc/changelogs/CHANGELOG_V10.md

+137
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 6
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 7
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)