From ea4819909d68938102ef88036c2aa1c55a55ce6e Mon Sep 17 00:00:00 2001 From: Colin Dean Date: Thu, 6 Jan 2022 22:07:00 -0500 Subject: [PATCH] Constrain faraday to 1.x for the Heroku provider Fixes #1247 Although this may not be necessary anymore because Faraday 2.0.1 reverted the change that may Faraday 2.0.0 not work: https://github.com/lostisland/faraday/issues/1362#issuecomment-1006958547 --- lib/dpl/providers/heroku.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/dpl/providers/heroku.rb b/lib/dpl/providers/heroku.rb index d998a930a..4ee2cfefc 100644 --- a/lib/dpl/providers/heroku.rb +++ b/lib/dpl/providers/heroku.rb @@ -5,7 +5,7 @@ class Heroku < Provider abstract - gem 'faraday', '~> 0.9.2' + gem 'faraday', ['~> 0.9.2','< 2.0.0'] gem 'json' gem 'netrc', '~> 0.11.0' gem 'rendezvous', '~> 0.1.3'