File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -1282,6 +1282,9 @@ The [`util.log()`][] API is deprecated.
1282
1282
1283
1283
<!-- YAML
1284
1284
changes:
1285
+ - version: REPLACEME
1286
+ pr-url: https://github.com/nodejs/node/pull/50488
1287
+ description: Runtime deprecation.
1285
1288
- version: v6.12.0
1286
1289
pr-url: https://github.com/nodejs/node/pull/10116
1287
1290
description: A deprecation code has been assigned.
@@ -1290,7 +1293,7 @@ changes:
1290
1293
description: Documentation-only deprecation.
1291
1294
-->
1292
1295
1293
- Type: Documentation-only
1296
+ Type: Runtime
1294
1297
1295
1298
The [ ` util._extend() ` ] [ ] API is deprecated.
1296
1299
Original file line number Diff line number Diff line change @@ -375,7 +375,9 @@ function _exceptionWithHostPort(...args) {
375
375
module . exports = {
376
376
_errnoException,
377
377
_exceptionWithHostPort,
378
- _extend,
378
+ _extend : deprecate ( _extend ,
379
+ 'The `util._extend` API is deprecated. Please use Object.assign() instead.' ,
380
+ 'DEP0060' ) ,
379
381
callbackify,
380
382
debug : debuglog ,
381
383
debuglog,
You can’t perform that action at this time.
0 commit comments