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)):
@@ -1715,6 +1727,12 @@ The `OutgoingMessage.prototype._headers` and
1715
1727
`OutgoingMessage.prototype._headerNames` properties were never documented as
1716
1728
officially supported properties.
1717
1729
1730
+
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)).
2364
+
An automated migration is available ([source](https://github.com/nodejs/userland-migrations/tree/main/recipes/process-assert-to-node-assert)).
The `dirent.path` property has been removed due to its lack of consistency across
3937
3955
release lines. Please use [`dirent.parentPath`][] instead.
3938
3956
3957
+
An automated migration is available ([source](https://github.com/nodejs/userland-migrations/tree/main/recipes/dirent-path-to-parent-path)):
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
@@ -3807,6 +3807,12 @@ Node.js modules. The community found and used it anyway.
3807
3807
It is deprecated and should not be used in new code. JavaScript comes with very
3808
3808
similar built-in functionality through [`Object.assign()`][].
3809
3809
3810
+
An automated migration is available ([source](https://github.com/nodejs/userland-migrations/tree/main/recipes/util-extend-to-object-assign)):
0 commit comments