Skip to content

Commit b509150

Browse files
committed
[sc-102435] Support lower versions of faraday
1 parent 36a7519 commit b509150

File tree

4 files changed

+25
-25
lines changed

4 files changed

+25
-25
lines changed

Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
source 'https://rubygems.org'
22
gemspec
33

4-
gem 'faraday', '= 2.8.1'
4+
gem 'faraday', '< 2.9'
55

66
group :test do
77
gem 'rspec', '~> 3.6'

Gemfile.lock

+22-22
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
MovableInkAWS (2.8.7)
4+
MovableInkAWS (2.8.8)
55
aws-sdk-athena (~> 1)
66
aws-sdk-autoscaling (~> 1)
77
aws-sdk-cloudwatch (~> 1)
@@ -18,14 +18,14 @@ PATH
1818
aws-sdk-ssm (~> 1)
1919
aws-sigv4 (~> 1.1)
2020
diplomat (= 2.6.4)
21-
faraday (= 2.8.1)
21+
faraday (< 2.9)
2222
httparty (~> 0.21)
2323

2424
GEM
2525
remote: https://rubygems.org/
2626
specs:
27-
addressable (2.8.0)
28-
public_suffix (>= 2.0.2, < 5.0)
27+
addressable (2.8.6)
28+
public_suffix (>= 2.0.2, < 6.0)
2929
aws-eventstream (1.3.0)
3030
aws-partitions (1.877.0)
3131
aws-sdk-athena (1.79.0)
@@ -82,7 +82,7 @@ GEM
8282
crack (0.4.5)
8383
rexml
8484
deep_merge (1.2.2)
85-
diff-lcs (1.3)
85+
diff-lcs (1.5.0)
8686
diplomat (2.6.4)
8787
deep_merge (~> 1.2)
8888
faraday (>= 0.9, < 3.0, != 2.0.0)
@@ -91,30 +91,30 @@ GEM
9191
faraday-net_http (>= 2.0, < 3.1)
9292
ruby2_keywords (>= 0.0.4)
9393
faraday-net_http (3.0.2)
94-
hashdiff (1.0.1)
94+
hashdiff (1.1.0)
9595
httparty (0.21.0)
9696
mini_mime (>= 1.0.0)
9797
multi_xml (>= 0.5.2)
9898
jmespath (1.6.2)
9999
mini_mime (1.1.5)
100100
multi_xml (0.6.0)
101-
public_suffix (4.0.7)
102-
rexml (3.2.5)
103-
rspec (3.9.0)
104-
rspec-core (~> 3.9.0)
105-
rspec-expectations (~> 3.9.0)
106-
rspec-mocks (~> 3.9.0)
107-
rspec-core (3.9.2)
108-
rspec-support (~> 3.9.3)
109-
rspec-expectations (3.9.2)
101+
public_suffix (5.0.4)
102+
rexml (3.2.6)
103+
rspec (3.12.0)
104+
rspec-core (~> 3.12.0)
105+
rspec-expectations (~> 3.12.0)
106+
rspec-mocks (~> 3.12.0)
107+
rspec-core (3.12.2)
108+
rspec-support (~> 3.12.0)
109+
rspec-expectations (3.12.3)
110110
diff-lcs (>= 1.2.0, < 2.0)
111-
rspec-support (~> 3.9.0)
112-
rspec-mocks (3.9.1)
111+
rspec-support (~> 3.12.0)
112+
rspec-mocks (3.12.6)
113113
diff-lcs (>= 1.2.0, < 2.0)
114-
rspec-support (~> 3.9.0)
115-
rspec-support (3.9.3)
114+
rspec-support (~> 3.12.0)
115+
rspec-support (3.12.1)
116116
ruby2_keywords (0.0.5)
117-
webmock (3.17.1)
117+
webmock (3.19.1)
118118
addressable (>= 2.8.0)
119119
crack (>= 0.3.2)
120120
hashdiff (>= 0.4.0, < 2.0.0)
@@ -124,9 +124,9 @@ PLATFORMS
124124

125125
DEPENDENCIES
126126
MovableInkAWS!
127-
faraday (= 2.8.1)
127+
faraday (< 2.9)
128128
rspec (~> 3.6)
129129
webmock
130130

131131
BUNDLED WITH
132-
2.3.11
132+
1.17.3

MovableInkAWS.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Gem::Specification.new do |s|
2626
s.add_runtime_dependency 'aws-sigv4', '~> 1.1'
2727
s.add_runtime_dependency 'httparty', '~> 0.21'
2828
s.add_runtime_dependency 'diplomat', '2.6.4'
29-
s.add_runtime_dependency 'faraday', '2.8.1'
29+
s.add_runtime_dependency 'faraday', '< 2.9'
3030

3131
all_files = `git ls-files`.split("\n")
3232
test_files = `git ls-files -- {test,spec,features}/*`.split("\n")

lib/movable_ink/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module MovableInk
22
class AWS
3-
VERSION = '2.8.7'
3+
VERSION = '2.8.8'
44
end
55
end

0 commit comments

Comments
 (0)