You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/api/deprecations.md
+26-2Lines changed: 26 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -744,6 +744,12 @@ Type: End-of-Life
744
744
The `SlowBuffer` class has been removed. Please use
745
745
[`Buffer.allocUnsafeSlow(size)`][] instead.
746
746
747
+
An automated migration is available ([source](https://github.com/nodejs/userland-migrations/tree/main/recipes/slow-buffer-to-buffer-alloc-unsafe-slow)).
@@ -1568,6 +1574,12 @@ The [`util._extend()`][] API is deprecated because it's an unmaintained
1568
1574
legacy API that was exposed to user land by accident.
1569
1575
Please use `target = Object.assign(target, source)` instead.
1570
1576
1577
+
An automated migration is available ([source](https://github.com/nodejs/userland-migrations/tree/main/recipes/util-extend-to-object-assign)):
@@ -1712,6 +1724,12 @@ The `OutgoingMessage.prototype._headers` and
1712
1724
`OutgoingMessage.prototype._headerNames` properties were never documented as
1713
1725
officially supported properties.
1714
1726
1727
+
An automated migration is available ([source](https://github.com/nodejs/userland-migrations/tree/main/recipes/http-outgoingmessage-headers)):
An automated migration is available ([source](https://github.com/nodejs/userland-migrations/tree/main/recipes/createCredentials-to-createSecureContext)).
2361
+
An automated migration is available ([source](https://github.com/nodejs/userland-migrations/tree/main/recipes/process-assert-to-node-assert)).
Copy file name to clipboardExpand all lines: doc/api/util.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3803,6 +3803,12 @@ Node.js modules. The community found and used it anyway.
3803
3803
It is deprecated and should not be used in new code. JavaScript comes with very
3804
3804
similar built-in functionality through [`Object.assign()`][].
3805
3805
3806
+
An automated migration is available ([source](https://github.com/nodejs/userland-migrations/tree/main/recipes/util-extend-to-object-assign)):
0 commit comments