Skip to content

Commit 0cb4cbb

Browse files
author
Danielle Adams
committed
2020-08-25, Version 14.9.0 (Current)
Notable changes: - build: set --v8-enable-object-print by default (Mary Marchini) [#34705](#34705) - deps: - upgrade to libuv 1.39.0 (cjihrig) [#34915](#34915) - upgrade npm to 6.14.8 (Ruy Adorno) [#34834](#34834) - V8: cherry-pick e06ace6b5cdb (Anna Henningsen) [#34673](#34673) - n-api: handle weak no-finalizer refs correctly (Gabriel Schulhof) [#34839](#34839) - tools: add debug entitlements for macOS 10.15+ (Gabriele Greco) [#34378](#34378) PR-URL: #34852
1 parent cf34854 commit 0cb4cbb

9 files changed

+144
-25
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.8.0">14.8.0</a></b><br/>
34+
<b><a href="doc/changelogs/CHANGELOG_V14.md#14.9.0">14.9.0</a></b><br/>
35+
<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/>
3738
<a href="doc/changelogs/CHANGELOG_V14.md#14.5.0">14.5.0</a><br/>

doc/api/buffer.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -1709,7 +1709,7 @@ console.log(buf.readIntLE(0, 6).toString(16));
17091709
<!-- YAML
17101710
added: v0.5.0
17111711
changes:
1712-
- version: REPLACEME
1712+
- version: v14.9.0
17131713
pr-url: https://github.com/nodejs/node/pull/34729
17141714
description: This function is also available as `buf.readUint8()`.
17151715
- version: v10.0.0
@@ -1739,7 +1739,7 @@ console.log(buf.readUInt8(2));
17391739
<!-- YAML
17401740
added: v0.5.5
17411741
changes:
1742-
- version: REPLACEME
1742+
- version: v14.9.0
17431743
pr-url: https://github.com/nodejs/node/pull/34729
17441744
description: This function is also available as `buf.readUint16BE()`.
17451745
- version: v10.0.0
@@ -1768,7 +1768,7 @@ console.log(buf.readUInt16BE(1).toString(16));
17681768
<!-- YAML
17691769
added: v0.5.5
17701770
changes:
1771-
- version: REPLACEME
1771+
- version: v14.9.0
17721772
pr-url: https://github.com/nodejs/node/pull/34729
17731773
description: This function is also available as `buf.readUint16LE()`.
17741774
- version: v10.0.0
@@ -1799,7 +1799,7 @@ console.log(buf.readUInt16LE(2).toString(16));
17991799
<!-- YAML
18001800
added: v0.5.5
18011801
changes:
1802-
- version: REPLACEME
1802+
- version: v14.9.0
18031803
pr-url: https://github.com/nodejs/node/pull/34729
18041804
description: This function is also available as `buf.readUint32BE()`.
18051805
- version: v10.0.0
@@ -1826,7 +1826,7 @@ console.log(buf.readUInt32BE(0).toString(16));
18261826
<!-- YAML
18271827
added: v0.5.5
18281828
changes:
1829-
- version: REPLACEME
1829+
- version: v14.9.0
18301830
pr-url: https://github.com/nodejs/node/pull/34729
18311831
description: This function is also available as `buf.readUint32LE()`.
18321832
- version: v10.0.0
@@ -1855,7 +1855,7 @@ console.log(buf.readUInt32LE(1).toString(16));
18551855
<!-- YAML
18561856
added: v0.11.15
18571857
changes:
1858-
- version: REPLACEME
1858+
- version: v14.9.0
18591859
pr-url: https://github.com/nodejs/node/pull/34729
18601860
description: This function is also available as `buf.readUintBE()`.
18611861
- version: v10.0.0
@@ -1887,7 +1887,7 @@ console.log(buf.readUIntBE(1, 6).toString(16));
18871887
<!-- YAML
18881888
added: v0.11.15
18891889
changes:
1890-
- version: REPLACEME
1890+
- version: v14.9.0
18911891
pr-url: https://github.com/nodejs/node/pull/34729
18921892
description: This function is also available as `buf.readUintLE()`.
18931893
- version: v10.0.0
@@ -2672,7 +2672,7 @@ console.log(buf);
26722672
<!-- YAML
26732673
added: v0.5.0
26742674
changes:
2675-
- version: REPLACEME
2675+
- version: v14.9.0
26762676
pr-url: https://github.com/nodejs/node/pull/34729
26772677
description: This function is also available as `buf.writeUint8()`.
26782678
- version: v10.0.0
@@ -2706,7 +2706,7 @@ console.log(buf);
27062706
<!-- YAML
27072707
added: v0.5.5
27082708
changes:
2709-
- version: REPLACEME
2709+
- version: v14.9.0
27102710
pr-url: https://github.com/nodejs/node/pull/34729
27112711
description: This function is also available as `buf.writeUint16BE()`.
27122712
- version: v10.0.0
@@ -2738,7 +2738,7 @@ console.log(buf);
27382738
<!-- YAML
27392739
added: v0.5.5
27402740
changes:
2741-
- version: REPLACEME
2741+
- version: v14.9.0
27422742
pr-url: https://github.com/nodejs/node/pull/34729
27432743
description: This function is also available as `buf.writeUint16LE()`.
27442744
- version: v10.0.0
@@ -2770,7 +2770,7 @@ console.log(buf);
27702770
<!-- YAML
27712771
added: v0.5.5
27722772
changes:
2773-
- version: REPLACEME
2773+
- version: v14.9.0
27742774
pr-url: https://github.com/nodejs/node/pull/34729
27752775
description: This function is also available as `buf.writeUint32BE()`.
27762776
- version: v10.0.0
@@ -2801,7 +2801,7 @@ console.log(buf);
28012801
<!-- YAML
28022802
added: v0.5.5
28032803
changes:
2804-
- version: REPLACEME
2804+
- version: v14.9.0
28052805
pr-url: https://github.com/nodejs/node/pull/34729
28062806
description: This function is also available as `buf.writeUint32LE()`.
28072807
- version: v10.0.0
@@ -2832,7 +2832,7 @@ console.log(buf);
28322832
<!-- YAML
28332833
added: v0.5.5
28342834
changes:
2835-
- version: REPLACEME
2835+
- version: v14.9.0
28362836
pr-url: https://github.com/nodejs/node/pull/34729
28372837
description: This function is also available as `buf.writeUintBE()`.
28382838
- version: v10.0.0
@@ -2865,7 +2865,7 @@ console.log(buf);
28652865
<!-- YAML
28662866
added: v0.5.5
28672867
changes:
2868-
- version: REPLACEME
2868+
- version: v14.9.0
28692869
pr-url: https://github.com/nodejs/node/pull/34729
28702870
description: This function is also available as `buf.writeUintLE()`.
28712871
- version: v10.0.0

doc/api/cli.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ $ source node_bash_completion
7878

7979
### `-u`, `--conditions=condition`
8080
<!-- YAML
81-
added: REPLACEME
81+
added: v14.9.0
8282
-->
8383

8484
> Stability: 1 - Experimental

doc/api/deprecations.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2757,7 +2757,7 @@ Type: Documentation-only
27572757
### DEP0XXX: `new crypto.Certificate()`
27582758
<!-- YAML
27592759
changes:
2760-
- version: REPLACEME
2760+
- version: v14.9.0
27612761
pr-url: https://github.com/nodejs/node/pull/34697
27622762
description: Documentation-only deprecation.
27632763
-->

doc/api/timers.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ of the Node.js application.
127127

128128
### `timeout[Symbol.toPrimitive]()`
129129
<!-- YAML
130-
added: REPLACEME
130+
added: v14.9.0
131131
-->
132132

133133
* Returns: {integer} number that can be used to reference this `timeout`

doc/api/util.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ let debuglog = util.debuglog('internals', (debug) => {
138138

139139
### `debuglog().enabled`
140140
<!-- YAML
141-
added: REPLACEME
141+
added: v14.9.0
142142
-->
143143

144144
* {boolean}
@@ -166,7 +166,7 @@ hello from foo [123]
166166

167167
## `util.debug(section)`
168168
<!-- YAML
169-
added: REPLACEME
169+
added: v14.9.0
170170
-->
171171

172172
Alias for `util.debuglog`. Usage allows for readability of that doesn't imply

doc/api/worker_threads.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -621,11 +621,11 @@ if (isMainThread) {
621621
<!-- YAML
622622
added: v10.5.0
623623
changes:
624-
- version: REPLACEME
624+
- version: v14.9.0
625625
pr-url: https://github.com/nodejs/node/pull/34584
626626
description: The `filename` parameter can be a WHATWG `URL` object using
627627
`data:` protocol.
628-
- version: REPLACEME
628+
- version: v14.9.0
629629
pr-url: https://github.com/nodejs/node/pull/34394
630630
description: The `trackUnmanagedFds` option was set to `true` by default.
631631
- version:

0 commit comments

Comments
 (0)