From 416f2a1990ef8328ecc6a30903a6087ed5c9a7e0 Mon Sep 17 00:00:00 2001 From: Mieszko Wawrzyniak Date: Sun, 12 Jan 2020 18:27:11 +0100 Subject: [PATCH] Bump recommended hackney to ~> 1.15.2 Due to unannounced breaking change in OTP version 22.1 hackney below the version 1.15.2 stopped working. Older versions are throwing `{:option, :server_only, :honor_cipher_order}` on OTP >= 22.1 and 1.15.2 fixes this issue. Reference: https://github.com/benoitc/hackney/issues/591 https://github.com/edgurgel/httpoison/issues/393 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 080f5ae0..556978f8 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ defp deps do {:tesla, "~> 1.3.0"}, # optional, but recommended adapter - {:hackney, "~> 1.14.0"}, + {:hackney, "~> 1.15.2"}, # optional, required by JSON middleware {:jason, ">= 1.0.0"}