Skip to content
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

Merged
merged 6 commits into from
Mar 10, 2025
Merged

Conversation

perrin4869
Copy link
Contributor

@perrin4869 perrin4869 commented May 13, 2024

#1803 broke the parsing of ipv6 addresses such as http://[::]:80. Before that PR, using node:url, we would get:

> const { parse } = require("node:url")
undefined
> parse("http://[::]:80")
Url {
  protocol: 'http:',
  slashes: true,
  auth: null,
  host: '[::]:80',
  port: '80',
  hostname: '::',
  hash: null,
  search: null,
  query: null,
  pathname: '/',
  path: '/',
  href: 'http://[::]:80/'
}

With the URL class, however, the hostname becomes:

> new URL("http://[::]:80")
URL {
  href: 'http://[::]/',
  origin: 'http://[::]',
  protocol: 'http:',
  username: '',
  password: '',
  host: '[::]',
  hostname: '[::]',
  port: '',
  pathname: '/',
  search: '',
  searchParams: URLSearchParams {},
  hash: ''
}

This hostname [::] is not compatible with the http.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 [::]

Verified

This commit was signed with the committer’s verified signature.
renovate-bot Mend Renovate
@gramakri
Copy link

Can confirm. This broke in 9.0.2 .

@titanism
Copy link
Collaborator

If you can get the tests to pass I can merge

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
@perrin4869
Copy link
Contributor Author

ok, I managed to add some regression tests! they don't seem to work on http2 so I disabled those

@perrin4869
Copy link
Contributor Author

@titanism any chance we can get this in? Thanks!

@titanism titanism merged commit 150eb6c into ladjs:master Mar 10, 2025
5 checks passed
@titanism
Copy link
Collaborator

any idea why they don't work in HTTP/2? would be great to have that covered too

@perrin4869
Copy link
Contributor Author

ok, I figured it out, will send a follow up PR :)

@perrin4869 perrin4869 mentioned this pull request Mar 10, 2025
6 tasks
@titanism
Copy link
Collaborator

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 🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants