Skip to content

Commit 34b1da2

Browse files
committed
2020-09-08, Version 14.10.0 (Current)
Notable changes: - buffer: also alias BigUInt methods (Anna Henningsen) #34960 - perf_hooks: add idleTime and event loop util (Trevor Norris) #34938 PR-URL: #35023
1 parent 09369a0 commit 34b1da2

File tree

6 files changed

+76
-14
lines changed

6 files changed

+76
-14
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
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

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/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()`
@@ -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

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
</tr>
1111
<tr>
1212
<td>
13+
<a href="#14.10.0">14.10.0</a><br/>
1314
<a href="#14.9.0">14.9.0</a><br/>
1415
<a href="#14.8.0">14.8.0</a><br/>
1516
<a href="#14.7.0">14.7.0</a><br/>
@@ -40,6 +41,66 @@
4041
* [io.js](CHANGELOG_IOJS.md)
4142
* [Archive](CHANGELOG_ARCHIVE.md)
4243

44+
<a id="14.10.0"></a>
45+
## 2020-09-08, Version 14.10.0 (Current), @richardlau
46+
47+
### Notable Changes
48+
49+
* [[`932ca26a6e`](https://github.com/nodejs/node/commit/932ca26a6e)] - **(SEMVER-MINOR)** **buffer**: also alias BigUInt methods (Anna Henningsen) [#34960](https://github.com/nodejs/node/pull/34960)
50+
* [[`8aac42caf2`](https://github.com/nodejs/node/commit/8aac42caf2)] - **(SEMVER-MINOR)** **perf_hooks**: add idleTime and event loop util (Trevor Norris) [#34938](https://github.com/nodejs/node/pull/34938)
51+
52+
### Commits
53+
54+
* [[`932ca26a6e`](https://github.com/nodejs/node/commit/932ca26a6e)] - **(SEMVER-MINOR)** **buffer**: also alias BigUInt methods (Anna Henningsen) [#34960](https://github.com/nodejs/node/pull/34960)
55+
* [[`46766a10df`](https://github.com/nodejs/node/commit/46766a10df)] - **build**: use autorebase option for git node land (Denys Otrishko) [#34969](https://github.com/nodejs/node/pull/34969)
56+
* [[`7afb67f491`](https://github.com/nodejs/node/commit/7afb67f491)] - **build**: use latest node-core-utils from npm (Denys Otrishko) [#34969](https://github.com/nodejs/node/pull/34969)
57+
* [[`d06e158253`](https://github.com/nodejs/node/commit/d06e158253)] - **build**: add support for build on arm64 (Evan Lucas) [#34238](https://github.com/nodejs/node/pull/34238)
58+
* [[`755f9e4bc8`](https://github.com/nodejs/node/commit/755f9e4bc8)] - **build,deps**: add gen-openssl target (Evan Lucas) [#34642](https://github.com/nodejs/node/pull/34642)
59+
* [[`90f9348297`](https://github.com/nodejs/node/commit/90f9348297)] - **deps**: update brotli to v1.0.9 (Anna Henningsen) [#34937](https://github.com/nodejs/node/pull/34937)
60+
* [[`f1fcd6646d`](https://github.com/nodejs/node/commit/f1fcd6646d)] - **deps**: add openssl support for arm64 (Evan Lucas) [#34238](https://github.com/nodejs/node/pull/34238)
61+
* [[`09f9de2056`](https://github.com/nodejs/node/commit/09f9de2056)] - **doc**: change effected to affected (Turner Jabbour) [#34989](https://github.com/nodejs/node/pull/34989)
62+
* [[`0b2c5165b0`](https://github.com/nodejs/node/commit/0b2c5165b0)] - **doc**: drop the --production flag for installing windows-build-tools (DeeDeeG) [#34979](https://github.com/nodejs/node/pull/34979)
63+
* [[`3bb279c290`](https://github.com/nodejs/node/commit/3bb279c290)] - **doc**: fix broken link to response.writableFinished in deprecations doc (Rich Trott) [#34983](https://github.com/nodejs/node/pull/34983)
64+
* [[`0ab3fb98d8`](https://github.com/nodejs/node/commit/0ab3fb98d8)] - **doc**: fix broken link to response.finished in deprecations doc (Rich Trott) [#34982](https://github.com/nodejs/node/pull/34982)
65+
* [[`717f3cb2cc`](https://github.com/nodejs/node/commit/717f3cb2cc)] - **doc**: fix broken link to writableEnded in deprecations doc (Rich Trott) [#34984](https://github.com/nodejs/node/pull/34984)
66+
* [[`996d67ad45`](https://github.com/nodejs/node/commit/996d67ad45)] - **doc**: fix typos in buffer doc [#34981](https://github.com/nodejs/node/pull/34981)
67+
* [[`df76c89b78`](https://github.com/nodejs/node/commit/df76c89b78)] - **doc**: recommend URL() over url.parse() in http2 doc (Rich Trott) [#34978](https://github.com/nodejs/node/pull/34978)
68+
* [[`ca0302e4f1`](https://github.com/nodejs/node/commit/ca0302e4f1)] - **doc**: arrange perf\_hooks entries alphabetically (Rich Trott) [#34973](https://github.com/nodejs/node/pull/34973)
69+
* [[`94c6e09367`](https://github.com/nodejs/node/commit/94c6e09367)] - **doc**: replace require() with reference links in http2.md (Rich Trott) [#34956](https://github.com/nodejs/node/pull/34956)
70+
* [[`2407a7a671`](https://github.com/nodejs/node/commit/2407a7a671)] - **doc**: add a note about possible missing lines to readline.asyncIterator (Igor Mikhalev) [#34675](https://github.com/nodejs/node/pull/34675)
71+
* [[`31098a4c0e`](https://github.com/nodejs/node/commit/31098a4c0e)] - **doc**: make minor improvements to query string sentence in http2.md (Rich Trott) [#34929](https://github.com/nodejs/node/pull/34929)
72+
* [[`1589f0e6f4`](https://github.com/nodejs/node/commit/1589f0e6f4)] - **doc**: make general copy-edit changes to policy.md (Rich Trott) [#34943](https://github.com/nodejs/node/pull/34943)
73+
* [[`aee3b8510b`](https://github.com/nodejs/node/commit/aee3b8510b)] - **doc**: simplify "make use of" to "use" (Rich Trott) [#34861](https://github.com/nodejs/node/pull/34861)
74+
* [[`0e09ff8ab1`](https://github.com/nodejs/node/commit/0e09ff8ab1)] - **doc**: make minor fixes to maintaining-openssl.md (Rich Trott) [#34926](https://github.com/nodejs/node/pull/34926)
75+
* [[`b091681d25`](https://github.com/nodejs/node/commit/b091681d25)] - **doc**: fix CHANGELOG.md parsing issue (Juan José Arboleda) [#34923](https://github.com/nodejs/node/pull/34923)
76+
* [[`fbd18be459`](https://github.com/nodejs/node/commit/fbd18be459)] - **doc**: provide more guidance about process.version (Rich Trott) [#34909](https://github.com/nodejs/node/pull/34909)
77+
* [[`4782ec7b3b`](https://github.com/nodejs/node/commit/4782ec7b3b)] - **doc**: use consistent typography for node-addon-api (Rich Trott) [#34910](https://github.com/nodejs/node/pull/34910)
78+
* [[`2fe95094fd`](https://github.com/nodejs/node/commit/2fe95094fd)] - **doc**: improve link-local text in dgram.md (Rich Trott) [#34868](https://github.com/nodejs/node/pull/34868)
79+
* [[`657292e2dd`](https://github.com/nodejs/node/commit/657292e2dd)] - **doc**: fix broken markdown/display in cli.html (Rich Trott) [#34892](https://github.com/nodejs/node/pull/34892)
80+
* [[`4cf93bb3cf`](https://github.com/nodejs/node/commit/4cf93bb3cf)] - **doc**: use "previous"/"preceding" instead of "above" as modifier (Rich Trott) [#34877](https://github.com/nodejs/node/pull/34877)
81+
* [[`29b048b06b`](https://github.com/nodejs/node/commit/29b048b06b)] - **doc**: use links to MS guide in style guide (Rich Trott) [#34871](https://github.com/nodejs/node/pull/34871)
82+
* [[`09369a05a4`](https://github.com/nodejs/node/commit/09369a05a4)] - **doc,tools**: remove malfunctioning Linux manpage linker (Rich Trott) [#34985](https://github.com/nodejs/node/pull/34985)
83+
* [[`fffba3a270`](https://github.com/nodejs/node/commit/fffba3a270)] - **errors**: use `ErrorPrototypeToString` from `primordials` object (ExE Boss) [#34891](https://github.com/nodejs/node/pull/34891)
84+
* [[`db8c66b8c2`](https://github.com/nodejs/node/commit/db8c66b8c2)] - **esm**: shorten ERR\_UNSUPPORTED\_ESM\_URL\_SCHEME message (Rich Trott) [#34836](https://github.com/nodejs/node/pull/34836)
85+
* [[`be71e717c5`](https://github.com/nodejs/node/commit/be71e717c5)] - **meta**: enable wasi for CODEOWNERS (gengjiawen) [#34889](https://github.com/nodejs/node/pull/34889)
86+
* [[`a43b7ff72e`](https://github.com/nodejs/node/commit/a43b7ff72e)] - **meta**: remove non-existent quic from CODEOWNERS (Richard Lau) [#34947](https://github.com/nodejs/node/pull/34947)
87+
* [[`3c32fe09e9`](https://github.com/nodejs/node/commit/3c32fe09e9)] - **n-api**: re-implement async env cleanup hooks (Gabriel Schulhof) [#34819](https://github.com/nodejs/node/pull/34819)
88+
* [[`fcb211f38a`](https://github.com/nodejs/node/commit/fcb211f38a)] - **net**: replace usage of internal stream state with public api (Denys Otrishko) [#34885](https://github.com/nodejs/node/pull/34885)
89+
* [[`8aac42caf2`](https://github.com/nodejs/node/commit/8aac42caf2)] - **(SEMVER-MINOR)** **perf_hooks**: add idleTime and event loop util (Trevor Norris) [#34938](https://github.com/nodejs/node/pull/34938)
90+
* [[`18b04ab4c8`](https://github.com/nodejs/node/commit/18b04ab4c8)] - **policy**: implement scopes field (Bradley Farias) [#34552](https://github.com/nodejs/node/pull/34552)
91+
* [[`f6a5999a9d`](https://github.com/nodejs/node/commit/f6a5999a9d)] - **src,doc**: fix wording to refer to context, not environment (Turner Jabbour) [#34880](https://github.com/nodejs/node/pull/34880)
92+
* [[`bcc1d431f8`](https://github.com/nodejs/node/commit/bcc1d431f8)] - **src,doc**: fix grammar due to missing 'is' (Turner Jabbour) [#34897](https://github.com/nodejs/node/pull/34897)
93+
* [[`044297ff10`](https://github.com/nodejs/node/commit/044297ff10)] - **src,doc**: rephrase for clarity (Turner Jabbour) [#34879](https://github.com/nodejs/node/pull/34879)
94+
* [[`098711efb3`](https://github.com/nodejs/node/commit/098711efb3)] - **stream**: fix Readable stream state properties (Denys Otrishko) [#34886](https://github.com/nodejs/node/pull/34886)
95+
* [[`f537c868b9`](https://github.com/nodejs/node/commit/f537c868b9)] - **stream**: allow using `.push()`/`.unshift()` during `once('data')` (Anna Henningsen) [#34957](https://github.com/nodejs/node/pull/34957)
96+
* [[`12115e1c4c`](https://github.com/nodejs/node/commit/12115e1c4c)] - **test**: remove incorrect debug() in test-policy-integrity (Rich Trott) [#34961](https://github.com/nodejs/node/pull/34961)
97+
* [[`ee6a583b9f`](https://github.com/nodejs/node/commit/ee6a583b9f)] - **test**: fix typo in test/parallel/test-icu-punycode.js (Daijiro Wachi) [#34934](https://github.com/nodejs/node/pull/34934)
98+
* [[`9057a1644d`](https://github.com/nodejs/node/commit/9057a1644d)] - **test**: add readline test for escape sequence (Rich Trott) [#34952](https://github.com/nodejs/node/pull/34952)
99+
* [[`75d16125e1`](https://github.com/nodejs/node/commit/75d16125e1)] - **test**: make test-tls-reuse-host-from-socket pass without internet (Rich Trott) [#34953](https://github.com/nodejs/node/pull/34953)
100+
* [[`971b7ac087`](https://github.com/nodejs/node/commit/971b7ac087)] - **test**: simplify test-vm-memleak (Rich Trott) [#34881](https://github.com/nodejs/node/pull/34881)
101+
* [[`7ad629e4e4`](https://github.com/nodejs/node/commit/7ad629e4e4)] - **tools,doc**: remove "toc" anchor name (Rich Trott) [#34893](https://github.com/nodejs/node/pull/34893)
102+
* [[`94528f510e`](https://github.com/nodejs/node/commit/94528f510e)] - **zlib**: replace usage of internal stream state with public api (Denys Otrishko) [#34884](https://github.com/nodejs/node/pull/34884)
103+
43104
<a id="14.9.0"></a>
44105
## 2020-08-27, Version 14.9.0 (Current), @BethGriggs prepared by @danielleadams
45106

src/node_version.h

Lines changed: 3 additions & 3 deletions
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)