Skip to content

Commit 947232f

Browse files
committed
Require Faraday >= 0.9.0 in gemspec
In #115 we started configuring Faraday to use the FlatParamsEncoder to avoid an issue with dropped parameters when building a request url. Unfortunately, as FlatParamsEncoder was only added on Faraday 0.9.0 we should require that version as a minimum, otherwise clients may get confusing error messages after upgrading to the latest hyperclient version. Fixes #117
1 parent 4afc115 commit 947232f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
### 0.8.4 (Next)
22

3+
* [#117](https://github.com/codegram/hyperclient/issues/117): Require Faraday >= 0.9.0 in gemspec - [@ivoanjo](https://github.com/ivoanjo).
34
* Your contribution here.
45

56
### 0.8.3 (March 30, 2017)

hyperclient.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Gem::Specification.new do |gem|
1414
gem.require_paths = ['lib']
1515
gem.version = Hyperclient::VERSION
1616

17-
gem.add_dependency 'faraday'
17+
gem.add_dependency 'faraday', '>= 0.9.0'
1818
gem.add_dependency 'futuroscope'
1919
gem.add_dependency 'faraday_middleware'
2020
gem.add_dependency 'faraday_hal_middleware'

0 commit comments

Comments
 (0)