-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
fix: ipv6 addresses parsing #1805
Conversation
Can confirm. This broke in 9.0.2 . |
If you can get the tests to pass I can merge |
ok, I managed to add some regression tests! they don't seem to work on http2 so I disabled those |
@titanism any chance we can get this in? Thanks! |
any idea why they don't work in HTTP/2? would be great to have that covered too |
ok, I figured it out, will send a follow up PR :) |
https://github.com/ladjs/superagent/releases/tag/v10.2.0 released to npm v10.2.0 thanks many 🙏 our OSS efforts are provided via our service https://forwardemail.net 🚀 |
#1803 broke the parsing of ipv6 addresses such as
http://[::]:80
. Before that PR, usingnode:url
, we would get:With the
URL
class, however, thehostname
becomes:This hostname
[::]
is not compatible with thehttp.request
function. I added some normalization functionality here to return the previous behavior.Edit: hm... it is a bit hard to add regression tests here, since all the tests seem to run against a single server that doesn't seem to listen on
[::]