From 291f8a558793e44e2f78322530de298061aa960e Mon Sep 17 00:00:00 2001 From: Ankur Oberoi Date: Mon, 2 Oct 2017 12:05:33 -0700 Subject: [PATCH] exlcudes request v2.77.0 or greater this was a breaking change in a dependency, which unfortunately was not treated as such with respect to semver. in v2.77.0, request drops support for node versions 0.8.x - 4.x. this package still supports node version 0.12.x, and therefore we need to lock down the dependency version. as a cosequence, we will not recieve bug fixes in that dependency, **this should motivate a quicker deprecation of node 0.12**. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f8c5dce75..6b932b4dc 100644 --- a/package.json +++ b/package.json @@ -29,7 +29,7 @@ "inherits": "^2.0.1", "lodash": "^4.13.1", "pkginfo": "^0.4.0", - "request": "^2.64.0", + "request": ">=2.0.0 <2.77.0", "retry": "^0.9.0", "url-join": "0.0.1", "winston": "^2.1.1",