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
It looks like here and here this code is using new Buffer() to create a Buffer object. However, current versions of node have a newer API for this, and in 10.x one will see a deprecation warning like "[DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.".
Uh oh!
There was an error while loading. Please reload this page.
It looks like here and here this code is using
new Buffer()
to create aBuffer
object. However, current versions of node have a newer API for this, and in 10.x one will see a deprecation warning like "[DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.".This affects downstream project as well, e.g. yarnpkg/yarn#5477
The text was updated successfully, but these errors were encountered: