Skip to content

Commit ce5f587

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
1 parent 4bb4007 commit ce5f587

File tree

7 files changed

+127
-15
lines changed

7 files changed

+127
-15
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_V14.md#14.9.0">14.9.0</a></b><br/>
34+
<b><a href="doc/changelogs/CHANGELOG_V14.md#14.10.0">14.10.0</a></b><br/>
35+
<a href="doc/changelogs/CHANGELOG_V14.md#14.9.0">14.9.0</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V14.md#14.8.0">14.8.0</a><br/>
3637
<a href="doc/changelogs/CHANGELOG_V14.md#14.7.0">14.7.0</a><br/>
3738
<a href="doc/changelogs/CHANGELOG_V14.md#14.6.0">14.6.0</a><br/>

doc/api/buffer.md

+4-4
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -2795,7 +2795,7 @@ request.
27952795

27962796
### `crypto.randomInt([min, ]max[, callback])`
27972797
<!-- YAML
2798-
added: REPLACEME
2798+
added: v14.10.0
27992799
-->
28002800

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

doc/api/n-api.md

+4-4
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

+2-2
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()`
@@ -344,7 +344,7 @@ initialized.
344344

345345
### `performanceNodeTiming.idleTime`
346346
<!-- YAML
347-
added: REPLACEME
347+
added: v14.10.0
348348
-->
349349

350350
* {number}

doc/changelogs/CHANGELOG_V14.md

+111
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 14
26-
#define NODE_MINOR_VERSION 9
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 10
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)