From 94f6a4bcf2451320252c21dbbbad4c2fd6590804 Mon Sep 17 00:00:00 2001 From: MoreRon Date: Wed, 13 Dec 2017 10:53:00 -0800 Subject: [PATCH] Update redis version to ~2.8 I wanted to initialize using a Redis URL, `redis.createClient(redis_url[, options])`, as seen on https://www.npmjs.com/package/redis. It took me a while to realize this package is using a very old version that didn't support it. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c5a54b8..e7a88c6 100644 --- a/package.json +++ b/package.json @@ -23,6 +23,6 @@ "grunt-bumpx": "~0.1.0" }, "dependencies": { - "redis": "~0.8" + "redis": "~2.8" } }