Skip to content

Commit df30bc8

Browse files
committed
doc: add changelogs for process
PR-URL: #11489 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Sam Roberts <[email protected]> Reviewed-By: Roman Reiss <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Italo A. Casas <[email protected]>
1 parent c1477b9 commit df30bc8

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

doc/api/process.md

+24
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,14 @@ to detect application failures and recover or restart as needed.
203203
### Event: 'unhandledRejection'
204204
<!-- YAML
205205
added: v1.4.1
206+
changes:
207+
- version: v7.0.0
208+
pr-url: https://github.com/nodejs/node/pull/8217
209+
description: Not handling Promise rejections has been deprecated.
210+
- version: v6.6.0
211+
pr-url: https://github.com/nodejs/node/pull/8223
212+
description: Unhandled Promise rejections have been will now emit
213+
a process warning.
206214
-->
207215

208216
The `'unhandledRejection`' event is emitted whenever a `Promise` is rejected and
@@ -1130,6 +1138,10 @@ is no entry script.
11301138
## process.memoryUsage()
11311139
<!-- YAML
11321140
added: v0.1.16
1141+
changes:
1142+
- version: v7.2.0
1143+
pr-url: https://github.com/nodejs/node/pull/9587
1144+
description: Added `external` to the returned object.
11331145
-->
11341146

11351147
* Returns: {Object}
@@ -1165,6 +1177,10 @@ objects managed by V8.
11651177
## process.nextTick(callback[, ...args])
11661178
<!-- YAML
11671179
added: v0.1.26
1180+
changes:
1181+
- version: v1.8.1
1182+
pr-url: https://github.com/nodejs/node/pull/1077
1183+
description: Additional arguments after `callback` are now supported.
11681184
-->
11691185

11701186
* `callback` {Function}
@@ -1284,6 +1300,10 @@ console.log(`This platform is ${process.platform}`);
12841300
## process.release
12851301
<!-- YAML
12861302
added: v3.0.0
1303+
changes:
1304+
- version: v4.2.0
1305+
pr-url: https://github.com/nodejs/node/pull/3212
1306+
description: The `lts` property is now supported.
12871307
-->
12881308

12891309
The `process.release` property returns an Object containing metadata related to
@@ -1646,6 +1666,10 @@ console.log(`Version: ${process.version}`);
16461666
## process.versions
16471667
<!-- YAML
16481668
added: v0.2.0
1669+
changes:
1670+
- version: v4.2.0
1671+
pr-url: https://github.com/nodejs/node/pull/3102
1672+
description: The `icu` property is now supported.
16491673
-->
16501674

16511675
* {Object}

0 commit comments

Comments
 (0)