@@ -203,6 +203,14 @@ to detect application failures and recover or restart as needed.
203
203
### Event: 'unhandledRejection'
204
204
<!-- YAML
205
205
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.
206
214
-->
207
215
208
216
The ` 'unhandledRejection ` ' event is emitted whenever a ` Promise ` is rejected and
@@ -1130,6 +1138,10 @@ is no entry script.
1130
1138
## process.memoryUsage()
1131
1139
<!-- YAML
1132
1140
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.
1133
1145
-->
1134
1146
1135
1147
* Returns: {Object}
@@ -1165,6 +1177,10 @@ objects managed by V8.
1165
1177
## process.nextTick(callback[ , ...args] )
1166
1178
<!-- YAML
1167
1179
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.
1168
1184
-->
1169
1185
1170
1186
* ` callback ` {Function}
@@ -1284,6 +1300,10 @@ console.log(`This platform is ${process.platform}`);
1284
1300
## process.release
1285
1301
<!-- YAML
1286
1302
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.
1287
1307
-->
1288
1308
1289
1309
The ` process.release ` property returns an Object containing metadata related to
@@ -1646,6 +1666,10 @@ console.log(`Version: ${process.version}`);
1646
1666
## process.versions
1647
1667
<!-- YAML
1648
1668
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.
1649
1673
-->
1650
1674
1651
1675
* {Object}
0 commit comments