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

[sc-102435] Support lower versions of faraday #114

Merged
merged 1 commit into from
Jan 9, 2024
Merged
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
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
source 'https://rubygems.org'
gemspec

gem 'faraday', '= 2.8.1'
gem 'faraday', '< 2.9'

group :test do
gem 'rspec', '~> 3.6'
Expand Down
44 changes: 22 additions & 22 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
MovableInkAWS (2.8.7)
MovableInkAWS (2.8.8)
aws-sdk-athena (~> 1)
aws-sdk-autoscaling (~> 1)
aws-sdk-cloudwatch (~> 1)
Expand All @@ -18,14 +18,14 @@ PATH
aws-sdk-ssm (~> 1)
aws-sigv4 (~> 1.1)
diplomat (= 2.6.4)
faraday (= 2.8.1)
faraday (< 2.9)
httparty (~> 0.21)

GEM
remote: https://rubygems.org/
specs:
addressable (2.8.0)
public_suffix (>= 2.0.2, < 5.0)
addressable (2.8.6)
public_suffix (>= 2.0.2, < 6.0)
aws-eventstream (1.3.0)
aws-partitions (1.877.0)
aws-sdk-athena (1.79.0)
Expand Down Expand Up @@ -82,7 +82,7 @@ GEM
crack (0.4.5)
rexml
deep_merge (1.2.2)
diff-lcs (1.3)
diff-lcs (1.5.0)
diplomat (2.6.4)
deep_merge (~> 1.2)
faraday (>= 0.9, < 3.0, != 2.0.0)
Expand All @@ -91,30 +91,30 @@ GEM
faraday-net_http (>= 2.0, < 3.1)
ruby2_keywords (>= 0.0.4)
faraday-net_http (3.0.2)
hashdiff (1.0.1)
hashdiff (1.1.0)
httparty (0.21.0)
mini_mime (>= 1.0.0)
multi_xml (>= 0.5.2)
jmespath (1.6.2)
mini_mime (1.1.5)
multi_xml (0.6.0)
public_suffix (4.0.7)
rexml (3.2.5)
rspec (3.9.0)
rspec-core (~> 3.9.0)
rspec-expectations (~> 3.9.0)
rspec-mocks (~> 3.9.0)
rspec-core (3.9.2)
rspec-support (~> 3.9.3)
rspec-expectations (3.9.2)
public_suffix (5.0.4)
rexml (3.2.6)
rspec (3.12.0)
rspec-core (~> 3.12.0)
rspec-expectations (~> 3.12.0)
rspec-mocks (~> 3.12.0)
rspec-core (3.12.2)
rspec-support (~> 3.12.0)
rspec-expectations (3.12.3)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.9.0)
rspec-mocks (3.9.1)
rspec-support (~> 3.12.0)
rspec-mocks (3.12.6)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.9.0)
rspec-support (3.9.3)
rspec-support (~> 3.12.0)
rspec-support (3.12.1)
ruby2_keywords (0.0.5)
webmock (3.17.1)
webmock (3.19.1)
addressable (>= 2.8.0)
crack (>= 0.3.2)
hashdiff (>= 0.4.0, < 2.0.0)
Expand All @@ -124,9 +124,9 @@ PLATFORMS

DEPENDENCIES
MovableInkAWS!
faraday (= 2.8.1)
faraday (< 2.9)
rspec (~> 3.6)
webmock

BUNDLED WITH
2.3.11
1.17.3
2 changes: 1 addition & 1 deletion MovableInkAWS.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Gem::Specification.new do |s|
s.add_runtime_dependency 'aws-sigv4', '~> 1.1'
s.add_runtime_dependency 'httparty', '~> 0.21'
s.add_runtime_dependency 'diplomat', '2.6.4'
s.add_runtime_dependency 'faraday', '2.8.1'
s.add_runtime_dependency 'faraday', '< 2.9'

all_files = `git ls-files`.split("\n")
test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
Expand Down
2 changes: 1 addition & 1 deletion lib/movable_ink/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module MovableInk
class AWS
VERSION = '2.8.7'
VERSION = '2.8.8'
end
end
Loading