Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update faraday requirement from ~> 1 to ~> 2 #80

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 11 additions & 26 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
network_resiliency (0.8.2)
network_resiliency (0.0.1)

GEM
remote: https://rubygems.org/
Expand Down Expand Up @@ -102,29 +102,12 @@ GEM
dogstatsd-ruby (4.8.3)
drb (2.2.1)
erubi (1.13.0)
faraday (1.10.3)
faraday-em_http (~> 1.0)
faraday-em_synchrony (~> 1.0)
faraday-excon (~> 1.1)
faraday-httpclient (~> 1.0)
faraday-multipart (~> 1.0)
faraday-net_http (~> 1.0)
faraday-net_http_persistent (~> 1.0)
faraday-patron (~> 1.0)
faraday-rack (~> 1.0)
faraday-retry (~> 1.0)
ruby2_keywords (>= 0.0.4)
faraday-em_http (1.0.0)
faraday-em_synchrony (1.0.0)
faraday-excon (1.1.0)
faraday-httpclient (1.0.1)
faraday-multipart (1.0.4)
multipart-post (~> 2)
faraday-net_http (1.0.2)
faraday-net_http_persistent (1.2.0)
faraday-patron (1.0.0)
faraday (2.11.0)
faraday-net_http (>= 2.0, < 3.4)
logger
faraday-net_http (3.3.0)
net-http
faraday-rack (1.0.0)
faraday-retry (1.0.3)
ffi (1.17.0)
globalid (1.2.1)
activesupport (>= 6.1)
Expand All @@ -137,6 +120,7 @@ GEM
libdatadog (7.0.0.1.0)
libddwaf (1.14.0.0.0)
ffi (~> 1.0)
logger (1.6.1)
loofah (2.22.0)
crass (~> 1.0.2)
nokogiri (>= 1.12.0)
Expand All @@ -150,9 +134,10 @@ GEM
mini_portile2 (2.8.7)
minitest (5.24.1)
msgpack (1.7.2)
multipart-post (2.4.1)
mutex_m (0.2.0)
mysql2 (0.5.6)
net-http (0.4.1)
uri
net-imap (0.4.14)
date
net-protocol
Expand Down Expand Up @@ -234,7 +219,6 @@ GEM
rspec-mocks (~> 3.13)
rspec-support (~> 3.13)
rspec-support (3.13.1)
ruby2_keywords (0.0.5)
simplecov (0.22.0)
docile (~> 1.1)
simplecov-html (~> 0.11)
Expand All @@ -247,6 +231,7 @@ GEM
timeout (0.4.1)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
uri (0.13.1)
webrick (1.8.1)
websocket-driver (0.7.6)
websocket-extensions (>= 0.1.0)
Expand All @@ -260,7 +245,7 @@ DEPENDENCIES
byebug
ddtrace (>= 1)
dogstatsd-ruby (<= 4.8.3)
faraday (~> 1)
faraday (~> 2)
faraday-rack
mysql2 (>= 0.5)
network_resiliency!
Expand Down
2 changes: 1 addition & 1 deletion network_resiliency.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Gem::Specification.new do |s|
s.add_development_dependency "byebug"
s.add_development_dependency "ddtrace", ">= 1"
s.add_development_dependency "dogstatsd-ruby", "<= 4.8.3"
s.add_development_dependency "faraday", "~> 1"
s.add_development_dependency "faraday", "~> 2"
s.add_development_dependency "faraday-rack"
s.add_development_dependency "mysql2", ">= 0.5"
s.add_development_dependency "pg", "~> 1.1"
Expand Down
Loading