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
Node.js version: 20.15.1
OS version: Gentoo Linux rolling
Description: superagent started attempting to canonicalize URL paths in 9.0.2
.. in paths gets interpreted by superagent, e.g. /api/v2/../error gets sent as /api/error.
..
/api/v2/../error
/api/error
Paths should be sent as-is, or at least this should have waited for a major release
require("superagent").get("http://localhost:3000/api/v2/../error").then(console.log, console.error)
The text was updated successfully, but these errors were encountered:
Bisecting shows 7e20ced as breaking this
Sorry, something went wrong.
PR welcome
No branches or pull requests
Describe the bug
Node.js version: 20.15.1
OS version: Gentoo Linux rolling
Description: superagent started attempting to canonicalize URL paths in 9.0.2
Actual behavior
..
in paths gets interpreted by superagent, e.g./api/v2/../error
gets sent as/api/error
.Expected behavior
Paths should be sent as-is, or at least this should have waited for a major release
Code to reproduce
Checklist
The text was updated successfully, but these errors were encountered: