We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
punycode
When running caprover-deploy for example, under Node 22, you get this deprecation notice:
caprover-deploy
(node:72716) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.
Dependency tree (npm ls punycode)
[email protected] +-- [email protected] | `-- [email protected] | `-- [email protected] | `-- [email protected] +-- [email protected] | `-- [email protected] | `-- [email protected] | `-- [email protected] | `-- [email protected] | `-- [email protected] | `-- [email protected] | `-- [email protected] deduped `-- [email protected] `-- [email protected] `-- [email protected]
Explanation in this section here: https://www.npmjs.com/package/punycode#installation
The prod dependency tough-cookie should be updated to v5.0.0 (however it is a sub-dep, of the dep request-promise which will never receive an update)
tough-cookie
v5.0.0
request-promise
request-promise should be upgraded to another library like node-fetch, since it has been deprecated 4 years ago.
node-fetch
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When running
caprover-deploy
for example, under Node 22, you get this deprecation notice:Dependency tree (npm ls punycode)
Investigation
Explanation in this section here: https://www.npmjs.com/package/punycode#installation
Fix
The prod dependency
tough-cookie
should be updated tov5.0.0
(however it is a sub-dep, of the deprequest-promise
which will never receive an update)request-promise
should be upgraded to another library likenode-fetch
, since it has been deprecated 4 years ago.The text was updated successfully, but these errors were encountered: