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
This library has a dependency on node-fetch version 2.x, which has a dependency on an old version of whatwg-url. whatwg-url is using the (in node22) deprecated punycode module, so now when using this library in a node22 environment, the DeprecationWarning: The punycode module is deprecated. Please use a userland alternative instead. error pops up over and over.
It works when overriding the whatwg-url version in the package.json
This library has a dependency on
node-fetch
version 2.x, which has a dependency on an old version ofwhatwg-url
.whatwg-url
is using the (in node22) deprecatedpunycode
module, so now when using this library in a node22 environment, theDeprecationWarning: The punycode module is deprecated. Please use a userland alternative instead.
error pops up over and over.It works when overriding the
whatwg-url
version in the package.jsonbut a proper solution seems to be to update node-fetch in this library to version 3.x that uses a newer version of
whatwg-url
The text was updated successfully, but these errors were encountered: