diff --git a/Gemfile b/Gemfile index bcca364..80bc99e 100644 --- a/Gemfile +++ b/Gemfile @@ -2,10 +2,6 @@ source 'https://rubygems.org' gemspec -# Pinned for dev/CI parity with the backend (currently on Faraday 2.7.x). -# SQ2-1047 lifts this and the matching gemspec floor in lockstep. -gem 'faraday', '~> 2.8.0' - group :development, :test do gem 'rspec', '>= 3' gem 'guard-rspec', '>= 2.8' diff --git a/Gemfile.lock b/Gemfile.lock index 1e8417c..8ead03f 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -3,14 +3,13 @@ PATH specs: kira-client (2.0.0) contracts - faraday (~> 2.0) + faraday (~> 2.13) GEM remote: https://rubygems.org/ specs: addressable (2.9.0) public_suffix (>= 2.0.2, < 8.0) - base64 (0.3.0) bigdecimal (4.1.2) coderay (1.1.3) concurrent-ruby (1.3.6) @@ -21,11 +20,12 @@ GEM diff-lcs (1.6.2) faker (3.5.3) i18n (>= 1.8.11, < 2) - faraday (2.8.1) - base64 - faraday-net_http (>= 2.0, < 3.1) - ruby2_keywords (>= 0.0.4) - faraday-net_http (3.0.2) + faraday (2.14.1) + faraday-net_http (>= 2.0, < 3.5) + json + logger + faraday-net_http (3.4.2) + net-http (~> 0.5) ffi (1.17.4) formatador (1.2.3) reline @@ -48,6 +48,7 @@ GEM i18n (1.14.8) concurrent-ruby (~> 1.0) io-console (0.8.2) + json (2.19.5) json_spec (1.1.5) multi_json (~> 1.0) rspec (>= 2.0, < 4.0) @@ -60,6 +61,8 @@ GEM method_source (1.1.0) multi_json (1.19.1) nenv (0.3.0) + net-http (0.9.1) + uri (>= 0.11.1) notiffany (0.1.3) nenv (~> 0.1) shellany (~> 0.0) @@ -87,9 +90,9 @@ GEM diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-support (3.13.7) - ruby2_keywords (0.0.5) shellany (0.0.1) thor (1.5.0) + uri (1.1.1) vcr (6.4.0) webmock (3.26.2) addressable (>= 2.8.0) @@ -102,7 +105,6 @@ PLATFORMS DEPENDENCIES faker - faraday (~> 2.8.0) guard-rspec (>= 2.8) json_spec kira-client! diff --git a/kira-client.gemspec b/kira-client.gemspec index 8bddb03..877eced 100644 --- a/kira-client.gemspec +++ b/kira-client.gemspec @@ -13,5 +13,5 @@ Gem::Specification.new do |s| s.required_ruby_version = ">= 3.0" s.add_dependency "contracts" - s.add_dependency "faraday", "~> 2.0" + s.add_dependency "faraday", "~> 2.13" end