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
Every time I start c8, I get the following warning: (node:12776) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.
This is because foreground-child uses cross-spawn, which uses new Buffer().
cross-spawn has recently finally resolved this issue, but it'll probably take quite some time until the change trickles downstream.
Maybe an alternative module without deprecate feature usage can be used instead?
The text was updated successfully, but these errors were encountered:
Every time I start c8, I get the following warning:
(node:12776) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.
This is because
foreground-child
usescross-spawn
, which usesnew Buffer()
.cross-spawn
has recently finally resolved this issue, but it'll probably take quite some time until the change trickles downstream.Maybe an alternative module without deprecate feature usage can be used instead?
The text was updated successfully, but these errors were encountered: