Skip to content

Commit 113c04c

Browse files
committed
2020-03-26 Version 13.12.0 (Current)
macOS package notarization and a change in builder configuration: The macOS binaries for this release, and future 13.x releases, are now being compiled on macOS 10.15 (Catalina) with Xcode 11 to support package notarization, a requirement for installing on .pkg files on macOS 10.15 and later. Previous builds of Node.js 13.x were compiled on macOS 10.11 (El Capitan) with Xcode 10. As binaries are still being compiled to support a minimum of macOS 10.10 (Yosemite) we do not anticipate this having a negative impact on Node.js 13.x users with older versions of macOS. Notable changes: * build: * macOS package notarization (Rod Vagg) #31459 * deps: * upgrade npm to 6.14.4 (Ruy Adorno) #32495 * update to uvwasi 0.0.6 (Colin Ihrig) #32309 * upgrade to libuv 1.35.0 (Colin Ihrig) #32204 * lib: * add --disable-proto option to cli (Gus Caplan) #32279 * node_report: * move diagnostic reports to stable (Colin Ihrig) #32242 * worker: * allow URL in Worker constructor (Antoine du HAMEL) #31664 * util: * use a global symbol for `util.promisify.custom` (ExE Boss) #31672 PR-URL: #32376
1 parent 0d0f151 commit 113c04c

File tree

6 files changed

+152
-19
lines changed

6 files changed

+152
-19
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ release.
2929
</tr>
3030
<tr>
3131
<td valign="top">
32-
<b><a href="doc/changelogs/CHANGELOG_V13.md#13.11.0">13.11.0</a></b><br/>
32+
<b><a href="doc/changelogs/CHANGELOG_V13.md#13.12.0">13.12.0</a></b><br/>
33+
<a href="doc/changelogs/CHANGELOG_V13.md#13.11.0">13.11.0</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V13.md#13.10.1">13.10.1</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V13.md#13.10.0">13.10.0</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V13.md#13.9.0">13.9.0</a><br/>

doc/api/cli.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ Specify the file name of the CPU profile generated by `--cpu-prof`.
129129

130130
### `--disable-proto=mode`
131131
<!--YAML
132-
added: REPLACEME
132+
added: v13.12.0
133133
-->
134134

135135
Disable the `Object.prototype.__proto__` property. If `mode` is `delete`, the
@@ -603,7 +603,7 @@ warning will be written to stderr instead.
603603

604604
### `--report-compact`
605605
<!-- YAML
606-
added: REPLACEME
606+
added: v13.12.0
607607
-->
608608

609609
Write reports in a compact format, single-line JSON, more easily consumable
@@ -614,7 +614,7 @@ human consumption.
614614
<!-- YAML
615615
added: v11.8.0
616616
changes:
617-
- version: REPLACEME
617+
- version: v13.12.0
618618
pr-url: https://github.com./nodejs/node/pull/32242
619619
description: This option is no longer considered experimental.
620620
- version: v12.0.0
@@ -629,7 +629,7 @@ Location at which the report will be generated.
629629
<!-- YAML
630630
added: v11.8.0
631631
changes:
632-
- version: REPLACEME
632+
- version: v13.12.0
633633
pr-url: https://github.com./nodejs/node/pull/32242
634634
description: This option is no longer considered experimental.
635635
- version: v12.0.0
@@ -662,7 +662,7 @@ error.
662662
<!-- YAML
663663
added: v11.8.0
664664
changes:
665-
- version: REPLACEME
665+
- version: v13.12.0
666666
pr-url: https://github.com./nodejs/node/pull/32242
667667
description: This option is no longer considered experimental.
668668
- version: v12.0.0
@@ -679,7 +679,7 @@ specified through `--report-signal`.
679679
<!-- YAML
680680
added: v11.8.0
681681
changes:
682-
- version: REPLACEME
682+
- version: v13.12.0
683683
pr-url: https://github.com./nodejs/node/pull/32242
684684
description: This option is no longer considered experimental.
685685
- version: v12.0.0
@@ -695,7 +695,7 @@ Default signal is `SIGUSR2`.
695695
<!-- YAML
696696
added: v11.8.0
697697
changes:
698-
- version: REPLACEME
698+
- version: v13.12.0
699699
pr-url: https://github.com./nodejs/node/pull/32242
700700
description: This option is no longer considered experimental.
701701
- version: v12.0.0

doc/api/process.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -1784,7 +1784,7 @@ relied upon to exist.
17841784
<!-- YAML
17851785
added: v11.8.0
17861786
changes:
1787-
- version: REPLACEME
1787+
- version: v13.12.0
17881788
pr-url: https://github.com./nodejs/node/pull/32242
17891789
description: This API is no longer considered experimental.
17901790
-->
@@ -1797,7 +1797,7 @@ reports for the current process. Additional documentation is available in the
17971797

17981798
### `process.report.compact`
17991799
<!-- YAML
1800-
added: REPLACEME
1800+
added: v13.12.0
18011801
-->
18021802

18031803
* {boolean}
@@ -1814,7 +1814,7 @@ console.log(`Reports are compact? ${process.report.compact}`);
18141814
<!-- YAML
18151815
added: v11.12.0
18161816
changes:
1817-
- version: REPLACEME
1817+
- version: v13.12.0
18181818
pr-url: https://github.com./nodejs/node/pull/32242
18191819
description: This API is no longer considered experimental.
18201820
-->
@@ -1833,7 +1833,7 @@ console.log(`Report directory is ${process.report.directory}`);
18331833
<!-- YAML
18341834
added: v11.12.0
18351835
changes:
1836-
- version: REPLACEME
1836+
- version: v13.12.0
18371837
pr-url: https://github.com./nodejs/node/pull/32242
18381838
description: This API is no longer considered experimental.
18391839
-->
@@ -1852,7 +1852,7 @@ console.log(`Report filename is ${process.report.filename}`);
18521852
<!-- YAML
18531853
added: v11.8.0
18541854
changes:
1855-
- version: REPLACEME
1855+
- version: v13.12.0
18561856
pr-url: https://github.com./nodejs/node/pull/32242
18571857
description: This API is no longer considered experimental.
18581858
-->
@@ -1895,7 +1895,7 @@ console.log(`Report on fatal error: ${process.report.reportOnFatalError}`);
18951895
<!-- YAML
18961896
added: v11.12.0
18971897
changes:
1898-
- version: REPLACEME
1898+
- version: v13.12.0
18991899
pr-url: https://github.com./nodejs/node/pull/32242
19001900
description: This API is no longer considered experimental.
19011901
-->
@@ -1913,7 +1913,7 @@ console.log(`Report on signal: ${process.report.reportOnSignal}`);
19131913
<!-- YAML
19141914
added: v11.12.0
19151915
changes:
1916-
- version: REPLACEME
1916+
- version: v13.12.0
19171917
pr-url: https://github.com./nodejs/node/pull/32242
19181918
description: This API is no longer considered experimental.
19191919
-->
@@ -1930,7 +1930,7 @@ console.log(`Report on exception: ${process.report.reportOnUncaughtException}`);
19301930
<!-- YAML
19311931
added: v11.12.0
19321932
changes:
1933-
- version: REPLACEME
1933+
- version: v13.12.0
19341934
pr-url: https://github.com./nodejs/node/pull/32242
19351935
description: This API is no longer considered experimental.
19361936
-->
@@ -1948,7 +1948,7 @@ console.log(`Report signal: ${process.report.signal}`);
19481948
<!-- YAML
19491949
added: v11.8.0
19501950
changes:
1951-
- version: REPLACEME
1951+
- version: v13.12.0
19521952
pr-url: https://github.com./nodejs/node/pull/32242
19531953
description: This API is no longer considered experimental.
19541954
-->

doc/api/util.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -996,7 +996,7 @@ throw an error.
996996
<!-- YAML
997997
added: v8.0.0
998998
changes:
999-
- version: REPLACEME
999+
- version: v13.12.0
10001000
pr-url: https://github.com./nodejs/node/pull/31672
10011001
description: This is now defined as a shared symbol.
10021002
-->

doc/api/worker_threads.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ if (isMainThread) {
513513
<!-- YAML
514514
added: v10.5.0
515515
changes:
516-
- version: REPLACEME
516+
- version: v13.12.0
517517
pr-url: https://github.com./nodejs/node/pull/31664
518518
description: The `filename` parameter can be a WHATWG `URL` object using
519519
`file:` protocol.

0 commit comments

Comments
 (0)