Skip to content

Commit

Permalink
2018-07-18, Version 10.7.0 (Current)
Browse files Browse the repository at this point in the history
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)
* inspector:
  * Expose the original console API in `require('inspector').console`.
    (#21659)
* 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
  • Loading branch information
targos committed Jul 18, 2018
1 parent 614c4c1 commit bb87e41
Show file tree
Hide file tree
Showing 6 changed files with 156 additions and 10 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -31,7 +31,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V10.md#10.6.0">10.6.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V10.md#10.7.0">10.7.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V10.md#10.6.0">10.6.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V10.md#10.5.0">10.5.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V10.md#10.4.1">10.4.1</a><br/>
<a href="doc/changelogs/CHANGELOG_V10.md#10.4.0">10.4.0</a><br/>
Expand Down
2 changes: 1 addition & 1 deletion doc/api/cli.md
Expand Up @@ -280,7 +280,7 @@ Throw errors for deprecations.

### `--title=title`
<!-- YAML
added: REPLACEME
added: v10.7.0
-->

Set `process.title` on startup.
Expand Down
2 changes: 1 addition & 1 deletion doc/api/console.md
Expand Up @@ -415,7 +415,7 @@ console.timeEnd('100-elements');

### console.timeLog([label][, ...data])
<!-- YAML
added: REPLACEME
added: v10.7.0
-->
* `label` {string} **Default:** `'default'`
* `...data` {any}
Expand Down
12 changes: 6 additions & 6 deletions doc/api/n-api.md
Expand Up @@ -1695,7 +1695,7 @@ The JavaScript `Number` type is described in

#### napi_create_bigint_int64
<!-- YAML
added: REPLACEME
added: v10.7.0
-->

> Stability: 1 - Experimental
Expand All @@ -1716,7 +1716,7 @@ This API converts the C `int64_t` type to the JavaScript `BigInt` type.
#### napi_create_bigint_uint64
<!-- YAML
added: REPLACEME
added: v10.7.0
-->
> Stability: 1 - Experimental
Expand All @@ -1737,7 +1737,7 @@ This API converts the C `uint64_t` type to the JavaScript `BigInt` type.

#### napi_create_bigint_words
<!-- YAML
added: REPLACEME
added: v10.7.0
-->

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

#### napi_get_value_bigint_int64
<!-- YAML
added: REPLACEME
added: v10.7.0
-->

> Stability: 1 - Experimental
Expand Down Expand Up @@ -2079,7 +2079,7 @@ This API returns the C `int64_t` primitive equivalent of the given JavaScript
#### napi_get_value_bigint_uint64
<!-- YAML
added: REPLACEME
added: v10.7.0
-->
> Stability: 1 - Experimental
Expand Down Expand Up @@ -2107,7 +2107,7 @@ This API returns the C `uint64_t` primitive equivalent of the given JavaScript

#### napi_get_value_bigint_words
<!-- YAML
added: REPLACEME
added: v10.7.0
-->

> Stability: 1 - Experimental
Expand Down
2 changes: 1 addition & 1 deletion doc/api/process.md
Expand Up @@ -1196,7 +1196,7 @@ setTimeout(() => {

## process.hrtime.bigint()
<!-- YAML
added: REPLACEME
added: v10.7.0
-->

* Returns: {bigint}
Expand Down

0 comments on commit bb87e41

Please sign in to comment.