Skip to content

Commit

Permalink
2020-09-08, Version 14.10.0 (Current)
Browse files Browse the repository at this point in the history
Notable changes:

- buffer: also alias BigUInt methods (Anna Henningsen)
  nodejs#34960
- crypto: add randomInt function (Oli Lalonde)
  nodejs#34600
- perf_hooks: add idleTime and event loop util (Trevor Norris)
  nodejs#34938
- stream: simpler and faster Readable async iterator (Robert Nagy)
  nodejs#34035
- stream: save error in state (Robert Nagy)
  nodejs#34103

PR-URL: nodejs#35023

Conflicts:
	src/node_version.h
  • Loading branch information
richardlau authored and joesepi committed Oct 22, 2020
1 parent c90b19e commit 8af5ac6
Show file tree
Hide file tree
Showing 6 changed files with 124 additions and 12 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -30,7 +30,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V14.md#14.9.0">14.9.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V14.md#14.10.0">14.10.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V14.md#14.9.0">14.9.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V14.md#14.8.0">14.8.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V14.md#14.7.0">14.7.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V14.md#14.6.0">14.6.0</a><br/>
Expand Down
8 changes: 4 additions & 4 deletions doc/api/buffer.md
Expand Up @@ -1380,7 +1380,7 @@ added:
- v12.0.0
- v10.20.0
changes:
- version: REPLACEME
- version: v14.10.0
pr-url: https://github.com/nodejs/node/pull/34960
description: This function is also available as `buf.readBigUint64BE()`.
-->
Expand All @@ -1405,7 +1405,7 @@ added:
- v12.0.0
- v10.20.0
changes:
- version: REPLACEME
- version: v14.10.0
pr-url: https://github.com/nodejs/node/pull/34960
description: This function is also available as `buf.readBigUint64LE()`.
-->
Expand Down Expand Up @@ -2313,7 +2313,7 @@ added:
- v12.0.0
- v10.20.0
changes:
- version: REPLACEME
- version: v14.10.0
pr-url: https://github.com/nodejs/node/pull/34960
description: This function is also available as `buf.writeBigUint64BE()`.
-->
Expand All @@ -2340,7 +2340,7 @@ added:
- v12.0.0
- v10.20.0
changes:
- version: REPLACEME
- version: v14.10.0
pr-url: https://github.com/nodejs/node/pull/34960
description: This function is also available as `buf.writeBigUint64LE()`.
-->
Expand Down
2 changes: 1 addition & 1 deletion doc/api/crypto.md
Expand Up @@ -2803,7 +2803,7 @@ request.

### `crypto.randomInt([min, ]max[, callback])`
<!-- YAML
added: REPLACEME
added: v14.10.0
-->

* `min` {integer} Start of random range (inclusive). **Default**: `0`.
Expand Down
8 changes: 4 additions & 4 deletions doc/api/n-api.md
Expand Up @@ -625,7 +625,7 @@ typedef struct {

#### napi_async_cleanup_hook_handle
<!-- YAML
added: REPLACEME
added: v14.10.0
-->

An opaque value returned by [`napi_add_async_cleanup_hook`][]. It must be passed
Expand Down Expand Up @@ -762,7 +762,7 @@ handle and/or callback scope inside the function body is not necessary.
#### napi_async_cleanup_hook
<!-- YAML
added: REPLACEME
added: v14.10.0
-->
Function pointer used with [`napi_add_async_cleanup_hook`][]. It will be called
Expand Down Expand Up @@ -1614,7 +1614,7 @@ with `napi_add_env_cleanup_hook`, otherwise the process will abort.
<!-- YAML
added: v14.8.0
changes:
- version: REPLACEME
- version: v14.10.0
pr-url: https://github.com/nodejs/node/pull/34819
description: Changed signature of the `hook` callback.
-->
Expand Down Expand Up @@ -1653,7 +1653,7 @@ is being torn down anyway.
<!-- YAML
added: v14.8.0
changes:
- version: REPLACEME
- version: v14.10.0
pr-url: https://github.com/nodejs/node/pull/34819
description: Removed `env` parameter.
-->
Expand Down
4 changes: 2 additions & 2 deletions doc/api/perf_hooks.md
Expand Up @@ -55,7 +55,7 @@ Performance Timeline. If `name` is provided, removes only the named mark.

### `performance.eventLoopUtilization([util1][,util2])`
<!-- YAML
added: REPLACEME
added: v14.10.0
-->

* `util1` {Object} The result of a previous call to `eventLoopUtilization()`
Expand Down Expand Up @@ -348,7 +348,7 @@ initialized.

### `performanceNodeTiming.idleTime`
<!-- YAML
added: REPLACEME
added: v14.10.0
-->

* {number}
Expand Down

0 comments on commit 8af5ac6

Please sign in to comment.