Skip to content

Commit 7a4062a

Browse files
cjihrigtargos
authored andcommitted
doc: mark process.report as experimental
Everything under process.report is experimental. This commit adds the missing stability index entries. PR-URL: #28653 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]> Reviewed-By: Jeremiah Senkpiel <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Tobias Nießen <[email protected]>
1 parent 5b5c819 commit 7a4062a

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

doc/api/process.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1684,6 +1684,8 @@ relied upon to exist.
16841684
added: v11.8.0
16851685
-->
16861686

1687+
> Stability: 1 - Experimental
1688+
16871689
* {Object}
16881690

16891691
`process.report` is an object whose methods are used to generate diagnostic
@@ -1695,6 +1697,8 @@ reports for the current process. Additional documentation is available in the
16951697
added: v11.12.0
16961698
-->
16971699

1700+
> Stability: 1 - Experimental
1701+
16981702
* {string}
16991703

17001704
Directory where the report is written. The default value is the empty string,
@@ -1710,6 +1714,8 @@ console.log(`Report directory is ${process.report.directory}`);
17101714
added: v11.12.0
17111715
-->
17121716

1717+
> Stability: 1 - Experimental
1718+
17131719
* {string}
17141720

17151721
Filename where the report is written. If set to the empty string, the output
@@ -1725,6 +1731,8 @@ console.log(`Report filename is ${process.report.filename}`);
17251731
added: v11.8.0
17261732
-->
17271733

1734+
> Stability: 1 - Experimental
1735+
17281736
* `err` {Error} A custom error used for reporting the JavaScript stack.
17291737
* Returns: {Object}
17301738

@@ -1748,6 +1756,8 @@ Additional documentation is available in the [report documentation][].
17481756
added: v11.12.0
17491757
-->
17501758

1759+
> Stability: 1 - Experimental
1760+
17511761
* {boolean}
17521762

17531763
If `true`, a diagnostic report is generated on fatal errors, such as out of
@@ -1762,6 +1772,8 @@ console.log(`Report on fatal error: ${process.report.reportOnFatalError}`);
17621772
added: v11.12.0
17631773
-->
17641774

1775+
> Stability: 1 - Experimental
1776+
17651777
* {boolean}
17661778

17671779
If `true`, a diagnostic report is generated when the process receives the
@@ -1776,6 +1788,8 @@ console.log(`Report on signal: ${process.report.reportOnSignal}`);
17761788
added: v11.12.0
17771789
-->
17781790

1791+
> Stability: 1 - Experimental
1792+
17791793
* {boolean}
17801794

17811795
If `true`, a diagnostic report is generated on uncaught exception.
@@ -1789,6 +1803,8 @@ console.log(`Report on exception: ${process.report.reportOnUncaughtException}`);
17891803
added: v11.12.0
17901804
-->
17911805

1806+
> Stability: 1 - Experimental
1807+
17921808
* {string}
17931809

17941810
The signal used to trigger the creation of a diagnostic report. Defaults to
@@ -1803,6 +1819,8 @@ console.log(`Report signal: ${process.report.signal}`);
18031819
added: v11.8.0
18041820
-->
18051821

1822+
> Stability: 1 - Experimental
1823+
18061824
* `filename` {string} Name of the file where the report is written. This
18071825
should be a relative path, that will be appended to the directory specified in
18081826
`process.report.directory`, or the current working directory of the Node.js

0 commit comments

Comments
 (0)