@@ -1755,10 +1755,12 @@ relied upon to exist.
17551755## ` process.report `
17561756<!-- YAML
17571757added: v11.8.0
1758+ changes:
1759+ - version: REPLACEME
1760+ pr-url: https://github.com/nodejs/node/pull/32242
1761+ description: This API is no longer considered experimental.
17581762-->
17591763
1760- > Stability: 1 - Experimental
1761-
17621764* {Object}
17631765
17641766` process.report ` is an object whose methods are used to generate diagnostic
@@ -1768,10 +1770,12 @@ reports for the current process. Additional documentation is available in the
17681770### ` process.report.directory `
17691771<!-- YAML
17701772added: v11.12.0
1773+ changes:
1774+ - version: REPLACEME
1775+ pr-url: https://github.com/nodejs/node/pull/32242
1776+ description: This API is no longer considered experimental.
17711777-->
17721778
1773- > Stability: 1 - Experimental
1774-
17751779* {string}
17761780
17771781Directory where the report is written. The default value is the empty string,
@@ -1785,10 +1789,12 @@ console.log(`Report directory is ${process.report.directory}`);
17851789### ` process.report.filename `
17861790<!-- YAML
17871791added: v11.12.0
1792+ changes:
1793+ - version: REPLACEME
1794+ pr-url: https://github.com/nodejs/node/pull/32242
1795+ description: This API is no longer considered experimental.
17881796-->
17891797
1790- > Stability: 1 - Experimental
1791-
17921798* {string}
17931799
17941800Filename where the report is written. If set to the empty string, the output
@@ -1802,10 +1808,12 @@ console.log(`Report filename is ${process.report.filename}`);
18021808### ` process.report.getReport([err]) `
18031809<!-- YAML
18041810added: v11.8.0
1811+ changes:
1812+ - version: REPLACEME
1813+ pr-url: https://github.com/nodejs/node/pull/32242
1814+ description: This API is no longer considered experimental.
18051815-->
18061816
1807- > Stability: 1 - Experimental
1808-
18091817* ` err ` {Error} A custom error used for reporting the JavaScript stack.
18101818* Returns: {Object}
18111819
@@ -1843,10 +1851,12 @@ console.log(`Report on fatal error: ${process.report.reportOnFatalError}`);
18431851### ` process.report.reportOnSignal `
18441852<!-- YAML
18451853added: v11.12.0
1854+ changes:
1855+ - version: REPLACEME
1856+ pr-url: https://github.com/nodejs/node/pull/32242
1857+ description: This API is no longer considered experimental.
18461858-->
18471859
1848- > Stability: 1 - Experimental
1849-
18501860* {boolean}
18511861
18521862If ` true ` , a diagnostic report is generated when the process receives the
@@ -1859,10 +1869,12 @@ console.log(`Report on signal: ${process.report.reportOnSignal}`);
18591869### ` process.report.reportOnUncaughtException `
18601870<!-- YAML
18611871added: v11.12.0
1872+ changes:
1873+ - version: REPLACEME
1874+ pr-url: https://github.com/nodejs/node/pull/32242
1875+ description: This API is no longer considered experimental.
18621876-->
18631877
1864- > Stability: 1 - Experimental
1865-
18661878* {boolean}
18671879
18681880If ` true ` , a diagnostic report is generated on uncaught exception.
@@ -1874,10 +1886,12 @@ console.log(`Report on exception: ${process.report.reportOnUncaughtException}`);
18741886### ` process.report.signal `
18751887<!-- YAML
18761888added: v11.12.0
1889+ changes:
1890+ - version: REPLACEME
1891+ pr-url: https://github.com/nodejs/node/pull/32242
1892+ description: This API is no longer considered experimental.
18771893-->
18781894
1879- > Stability: 1 - Experimental
1880-
18811895* {string}
18821896
18831897The signal used to trigger the creation of a diagnostic report. Defaults to
@@ -1890,10 +1904,12 @@ console.log(`Report signal: ${process.report.signal}`);
18901904### ` process.report.writeReport([filename][, err]) `
18911905<!-- YAML
18921906added: v11.8.0
1907+ changes:
1908+ - version: REPLACEME
1909+ pr-url: https://github.com/nodejs/node/pull/32242
1910+ description: This API is no longer considered experimental.
18931911-->
18941912
1895- > Stability: 1 - Experimental
1896-
18971913* ` filename ` {string} Name of the file where the report is written. This
18981914 should be a relative path, that will be appended to the directory specified in
18991915 ` process.report.directory ` , or the current working directory of the Node.js
0 commit comments