Skip to content

Commit 3f3d62a

Browse files
committed
doc: add changelogs for process
PR-URL: nodejs#11489 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Italo A. Casas <me@italoacasas.com>
1 parent fb39597 commit 3f3d62a

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

doc/api/process.md

Lines changed: 24 additions & 0 deletions
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
@@ -1143,6 +1151,10 @@ is no entry script.
11431151
## process.memoryUsage()
11441152
<!-- YAML
11451153
added: v0.1.16
1154+
changes:
1155+
- version: v7.2.0
1156+
pr-url: https://github.com/nodejs/node/pull/9587
1157+
description: Added `external` to the returned object.
11461158
-->
11471159

11481160
* Returns: {Object}
@@ -1178,6 +1190,10 @@ objects managed by V8.
11781190
## process.nextTick(callback[, ...args])
11791191
<!-- YAML
11801192
added: v0.1.26
1193+
changes:
1194+
- version: v1.8.1
1195+
pr-url: https://github.com/nodejs/node/pull/1077
1196+
description: Additional arguments after `callback` are now supported.
11811197
-->
11821198

11831199
* `callback` {Function}
@@ -1297,6 +1313,10 @@ console.log(`This platform is ${process.platform}`);
12971313
## process.release
12981314
<!-- YAML
12991315
added: v3.0.0
1316+
changes:
1317+
- version: v4.2.0
1318+
pr-url: https://github.com/nodejs/node/pull/3212
1319+
description: The `lts` property is now supported.
13001320
-->
13011321

13021322
The `process.release` property returns an Object containing metadata related to
@@ -1659,6 +1679,10 @@ console.log(`Version: ${process.version}`);
16591679
## process.versions
16601680
<!-- YAML
16611681
added: v0.2.0
1682+
changes:
1683+
- version: v4.2.0
1684+
pr-url: https://github.com/nodejs/node/pull/3102
1685+
description: The `icu` property is now supported.
16621686
-->
16631687

16641688
* {Object}

0 commit comments

Comments
 (0)