Socket
Socket
Sign inDemoInstall

superagent

Package Overview
Dependencies
6
Maintainers
1
Versions
169
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.8.1 to 0.8.2

5

History.md
0.8.2 / 2012-08-28
==================
* fix pathname relative redirects. Closes #112
0.8.1 / 2012-08-21

@@ -3,0 +8,0 @@ ==================

10

lib/node/index.js

@@ -406,3 +406,10 @@

var url = res.headers.location;
if (!~url.indexOf('://')) url = this.protocol + url;
if (!~url.indexOf('://')) {
if (0 != url.indexOf('//')) {
url = '//' + this.host + url;
}
url = this.protocol + url;
}
delete this.req;

@@ -480,2 +487,3 @@ this.method = 'HEAD' == this.method

this.protocol = url.protocol;
this.host = url.host;

@@ -482,0 +490,0 @@ // expose events

2

package.json
{
"name": "superagent"
, "version": "0.8.1"
, "version": "0.8.2"
, "description": "elegant & feature rich browser / node HTTP with a fluent API"

@@ -5,0 +5,0 @@ , "keywords": ["http", "ajax", "request", "agent"]

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc