Skip to content

Commit a87ac59

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: * update npm to 6.14.3 (Myles Borins) #32368 * 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 28e298f commit a87ac59

File tree

7 files changed

+146
-22
lines changed

7 files changed

+146
-22
lines changed

CHANGELOG.md

+2-1
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_V13.md#13.11.0">13.11.0</a></b><br/>
33+
<b><a href="doc/changelogs/CHANGELOG_V13.md#13.12.0">13.12.0</a></b><br/>
34+
<a href="doc/changelogs/CHANGELOG_V13.md#13.11.0">13.11.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V13.md#13.10.1">13.10.1</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V13.md#13.10.0">13.10.0</a><br/>
3637
<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
@@ -1756,7 +1756,7 @@ relied upon to exist.
17561756
<!-- YAML
17571757
added: v11.8.0
17581758
changes:
1759-
- version: REPLACEME
1759+
- version: v13.12.0
17601760
pr-url: https://github.com/nodejs/node/pull/32242
17611761
description: This API is no longer considered experimental.
17621762
-->
@@ -1769,7 +1769,7 @@ reports for the current process. Additional documentation is available in the
17691769

17701770
### `process.report.compact`
17711771
<!-- YAML
1772-
added: REPLACEME
1772+
added: v13.12.0
17731773
-->
17741774

17751775
* {boolean}
@@ -1786,7 +1786,7 @@ console.log(`Reports are compact? ${process.report.compact}`);
17861786
<!-- YAML
17871787
added: v11.12.0
17881788
changes:
1789-
- version: REPLACEME
1789+
- version: v13.12.0
17901790
pr-url: https://github.com/nodejs/node/pull/32242
17911791
description: This API is no longer considered experimental.
17921792
-->
@@ -1805,7 +1805,7 @@ console.log(`Report directory is ${process.report.directory}`);
18051805
<!-- YAML
18061806
added: v11.12.0
18071807
changes:
1808-
- version: REPLACEME
1808+
- version: v13.12.0
18091809
pr-url: https://github.com/nodejs/node/pull/32242
18101810
description: This API is no longer considered experimental.
18111811
-->
@@ -1824,7 +1824,7 @@ console.log(`Report filename is ${process.report.filename}`);
18241824
<!-- YAML
18251825
added: v11.8.0
18261826
changes:
1827-
- version: REPLACEME
1827+
- version: v13.12.0
18281828
pr-url: https://github.com/nodejs/node/pull/32242
18291829
description: This API is no longer considered experimental.
18301830
-->
@@ -1867,7 +1867,7 @@ console.log(`Report on fatal error: ${process.report.reportOnFatalError}`);
18671867
<!-- YAML
18681868
added: v11.12.0
18691869
changes:
1870-
- version: REPLACEME
1870+
- version: v13.12.0
18711871
pr-url: https://github.com/nodejs/node/pull/32242
18721872
description: This API is no longer considered experimental.
18731873
-->
@@ -1885,7 +1885,7 @@ console.log(`Report on signal: ${process.report.reportOnSignal}`);
18851885
<!-- YAML
18861886
added: v11.12.0
18871887
changes:
1888-
- version: REPLACEME
1888+
- version: v13.12.0
18891889
pr-url: https://github.com/nodejs/node/pull/32242
18901890
description: This API is no longer considered experimental.
18911891
-->
@@ -1902,7 +1902,7 @@ console.log(`Report on exception: ${process.report.reportOnUncaughtException}`);
19021902
<!-- YAML
19031903
added: v11.12.0
19041904
changes:
1905-
- version: REPLACEME
1905+
- version: v13.12.0
19061906
pr-url: https://github.com/nodejs/node/pull/32242
19071907
description: This API is no longer considered experimental.
19081908
-->
@@ -1920,7 +1920,7 @@ console.log(`Report signal: ${process.report.signal}`);
19201920
<!-- YAML
19211921
added: v11.8.0
19221922
changes:
1923-
- version: REPLACEME
1923+
- version: v13.12.0
19241924
pr-url: https://github.com/nodejs/node/pull/32242
19251925
description: This API is no longer considered experimental.
19261926
-->

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)