Skip to content

Commit b5a47ca

Browse files
committed
2020-09-08, Version 14.10.0 (Current)
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 Conflicts: src/node_version.h
1 parent ccdd1bd commit b5a47ca

File tree

6 files changed

+124
-12
lines changed

6 files changed

+124
-12
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ release.
3030
</tr>
3131
<tr>
3232
<td valign="top">
33-
<b><a href="doc/changelogs/CHANGELOG_V14.md#14.9.0">14.9.0</a></b><br/>
33+
<b><a href="doc/changelogs/CHANGELOG_V14.md#14.10.0">14.10.0</a></b><br/>
34+
<a href="doc/changelogs/CHANGELOG_V14.md#14.9.0">14.9.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V14.md#14.8.0">14.8.0</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V14.md#14.7.0">14.7.0</a><br/>
3637
<a href="doc/changelogs/CHANGELOG_V14.md#14.6.0">14.6.0</a><br/>

doc/api/buffer.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1380,7 +1380,7 @@ added:
13801380
- v12.0.0
13811381
- v10.20.0
13821382
changes:
1383-
- version: REPLACEME
1383+
- version: v14.10.0
13841384
pr-url: https://github.com/nodejs/node/pull/34960
13851385
description: This function is also available as `buf.readBigUint64BE()`.
13861386
-->
@@ -1405,7 +1405,7 @@ added:
14051405
- v12.0.0
14061406
- v10.20.0
14071407
changes:
1408-
- version: REPLACEME
1408+
- version: v14.10.0
14091409
pr-url: https://github.com/nodejs/node/pull/34960
14101410
description: This function is also available as `buf.readBigUint64LE()`.
14111411
-->
@@ -2313,7 +2313,7 @@ added:
23132313
- v12.0.0
23142314
- v10.20.0
23152315
changes:
2316-
- version: REPLACEME
2316+
- version: v14.10.0
23172317
pr-url: https://github.com/nodejs/node/pull/34960
23182318
description: This function is also available as `buf.writeBigUint64BE()`.
23192319
-->
@@ -2340,7 +2340,7 @@ added:
23402340
- v12.0.0
23412341
- v10.20.0
23422342
changes:
2343-
- version: REPLACEME
2343+
- version: v14.10.0
23442344
pr-url: https://github.com/nodejs/node/pull/34960
23452345
description: This function is also available as `buf.writeBigUint64LE()`.
23462346
-->

doc/api/crypto.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2803,7 +2803,7 @@ request.
28032803

28042804
### `crypto.randomInt([min, ]max[, callback])`
28052805
<!-- YAML
2806-
added: REPLACEME
2806+
added: v14.10.0
28072807
-->
28082808

28092809
* `min` {integer} Start of random range (inclusive). **Default**: `0`.

doc/api/n-api.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -625,7 +625,7 @@ typedef struct {
625625

626626
#### napi_async_cleanup_hook_handle
627627
<!-- YAML
628-
added: REPLACEME
628+
added: v14.10.0
629629
-->
630630

631631
An opaque value returned by [`napi_add_async_cleanup_hook`][]. It must be passed
@@ -762,7 +762,7 @@ handle and/or callback scope inside the function body is not necessary.
762762

763763
#### napi_async_cleanup_hook
764764
<!-- YAML
765-
added: REPLACEME
765+
added: v14.10.0
766766
-->
767767

768768
Function pointer used with [`napi_add_async_cleanup_hook`][]. It will be called
@@ -1614,7 +1614,7 @@ with `napi_add_env_cleanup_hook`, otherwise the process will abort.
16141614
<!-- YAML
16151615
added: v14.8.0
16161616
changes:
1617-
- version: REPLACEME
1617+
- version: v14.10.0
16181618
pr-url: https://github.com/nodejs/node/pull/34819
16191619
description: Changed signature of the `hook` callback.
16201620
-->
@@ -1653,7 +1653,7 @@ is being torn down anyway.
16531653
<!-- YAML
16541654
added: v14.8.0
16551655
changes:
1656-
- version: REPLACEME
1656+
- version: v14.10.0
16571657
pr-url: https://github.com/nodejs/node/pull/34819
16581658
description: Removed `env` parameter.
16591659
-->

doc/api/perf_hooks.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Performance Timeline. If `name` is provided, removes only the named mark.
5555

5656
### `performance.eventLoopUtilization([util1][,util2])`
5757
<!-- YAML
58-
added: REPLACEME
58+
added: v14.10.0
5959
-->
6060

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

349349
### `performanceNodeTiming.idleTime`
350350
<!-- YAML
351-
added: REPLACEME
351+
added: v14.10.0
352352
-->
353353

354354
* {number}

0 commit comments

Comments
 (0)