-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DeprecationWarning: The punycode
module is deprecated
#620
Comments
Full deprecation trace (using node's
|
This is due to node-fetch requiring an out-of-date version (5.0.0, current is 14.0.0) of whatwg-url (https://www.npmjs.com/package/whatwg-url/v/5.0.0?activeTab=code) which includes an out-of-date version of tr-46 which incorrectly imported the puny-code package for versions 3.0.0 and older. This project either needs to upgrade to a 3.x.x version of node-fetch, or node-fetch needs to upgrade their 2.x.x's whatwg-url version to one that supports a newer version of tr-46. Update |
Closing this in favor of: #679 |
With Node 22, the following error message is output anytime
aio
is run:Fix recommended by Node here: https://nodejs.org/api/punycode.html#punycode. We'll likely need to figure out where
punycode
is being used and replace it with the userland version.The text was updated successfully, but these errors were encountered: