From 04982a2ef99b2d46cbf1058d9f4a220675063fe0 Mon Sep 17 00:00:00 2001 From: Wyatt Cready Date: Sat, 8 Apr 2017 11:30:02 -0400 Subject: [PATCH 1/2] Update follow-redirects dependency Using the follow-redirects 1.0.0 causes this reported write after end issue: https://github.com/olalonde/follow-redirects/issues/50. It looks like the problem with follow-redirects was fixed in 1.1.0 https://github.com/olalonde/follow-redirects/commit/9eec6f0fb8d1c51dbd9be732ce1e2c794a01b652 but if axios is going to update the dependency it might as well update to the latest version now. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 060ca8123c..159cd58dd3 100644 --- a/package.json +++ b/package.json @@ -72,6 +72,6 @@ }, "typings": "./index.d.ts", "dependencies": { - "follow-redirects": "1.0.0" + "follow-redirects": "1.2.3" } } From df6b46c076869caf935780e136fc05fbf944ef0f Mon Sep 17 00:00:00 2001 From: Wyatt Cready Date: Sat, 8 Apr 2017 14:15:07 -0400 Subject: [PATCH 2/2] Add caret --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 159cd58dd3..ff4ae23539 100644 --- a/package.json +++ b/package.json @@ -72,6 +72,6 @@ }, "typings": "./index.d.ts", "dependencies": { - "follow-redirects": "1.2.3" + "follow-redirects": "^1.2.3" } }