-
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
feature: Support port overrides in connect() #1564
feature: Support port overrides in connect() #1564
Conversation
Allow for .connect({'*': {host: 'hostname', port: 12345}}) overrides to change the destination port of a request.
@@ -1,7 +1,7 @@ | |||
{ | |||
"name": "superagent", | |||
"description": "elegant & feature rich browser / node HTTP with a fluent API", | |||
"version": "5.2.2", | |||
"version": "5.2.3", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please do not version bump package.json. If you remove this commit I will merge it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @niftylettuce !
Ill do this myself nvm |
v5.3.0 published to npm and GitHub releases page with changelog |
Allow for .connect({'*': {host: 'hostname', port: 12345}}) overrides to
change the destination port of a request.