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)
  #34960
- crypto: add randomInt function (Oli Lalonde)
  #34600
- perf_hooks: add idleTime and event loop util (Trevor Norris)
  #34938
- stream: simpler and faster Readable async iterator (Robert Nagy)
  #34035
- stream: save error in state (Robert Nagy)
  #34103

PR-URL: #35023
  • Loading branch information
richardlau committed Sep 7, 2020
1 parent 4bb4007 commit ce5f587
Show file tree
Hide file tree
Showing 7 changed files with 127 additions and 15 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
Expand Up @@ -2795,7 +2795,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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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 @@ -344,7 +344,7 @@ initialized.

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

* {number}
Expand Down
111 changes: 111 additions & 0 deletions doc/changelogs/CHANGELOG_V14.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/node_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@
#define SRC_NODE_VERSION_H_

#define NODE_MAJOR_VERSION 14
#define NODE_MINOR_VERSION 9
#define NODE_PATCH_VERSION 1
#define NODE_MINOR_VERSION 10
#define NODE_PATCH_VERSION 0

#define NODE_VERSION_IS_LTS 0
#define NODE_VERSION_LTS_CODENAME ""

#define NODE_VERSION_IS_RELEASE 0
#define NODE_VERSION_IS_RELEASE 1

#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
Expand Down

0 comments on commit ce5f587

Please sign in to comment.