Skip to content

Commit

Permalink
Merge pull request #331 from pact-foundation/fix/issue_328
Browse files Browse the repository at this point in the history
Fix/issue 328
  • Loading branch information
YOU54F authored Jan 20, 2025
2 parents 0186680 + a0eccee commit f2a413f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ group :local_development do
end

group :test do
gem 'faraday', '~>2.0'
gem 'faraday', '~>2.0', '<3.0'
gem 'faraday-retry', '~>2.0'
gem 'rackup', '~> 2.1'
end
2 changes: 1 addition & 1 deletion example/animal-service/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PATH
pact (1.66.0)
jsonpath (~> 1.0)
pact-mock_service (~> 3.0, >= 3.3.1)
pact-support (~> 1.19, >= 1.19.0)
pact-support (~> 1.21, >= 1.21.0)
rack-test (>= 0.6.3, < 3.0.0)
rainbow (~> 3.1)
rspec (~> 3.0)
Expand Down
6 changes: 4 additions & 2 deletions example/zoo-app/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PATH
pact (1.66.0)
jsonpath (~> 1.0)
pact-mock_service (~> 3.0, >= 3.3.1)
pact-support (~> 1.19, >= 1.19.0)
pact-support (~> 1.21, >= 1.21.0)
rack-test (>= 0.6.3, < 3.0.0)
rainbow (~> 3.1)
rspec (~> 3.0)
Expand Down Expand Up @@ -46,11 +46,13 @@ GEM
rspec (>= 2.14)
thor (>= 0.19, < 2.0)
webrick (~> 1.8)
pact-support (1.20.2)
pact-support (1.21.2)
awesome_print (~> 1.9)
diff-lcs (~> 1.5)
expgen (~> 0.1)
jsonpath (~> 1.0)
rainbow (~> 3.1.1)
string_pattern (~> 2.0)
pact_broker-client (1.77.0)
base64 (~> 0.2)
dig_rb (~> 1.0)
Expand Down
6 changes: 3 additions & 3 deletions pact.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ Gem::Specification.new do |gem|
gem.add_runtime_dependency 'string_pattern', '~> 2.0'
gem.add_runtime_dependency 'jsonpath', '~> 1.0'

gem.add_runtime_dependency 'pact-support', '~> 1.19', '>= 1.19.0'
gem.add_runtime_dependency 'pact-support', '~> 1.21', '>= 1.21.0'
gem.add_runtime_dependency 'pact-mock_service', '~> 3.0', '>= 3.3.1'

gem.add_development_dependency 'rake', '~> 13.0'
gem.add_development_dependency 'webmock', '~> 3.0'
gem.add_development_dependency 'fakefs', '2.4' # 0.6.0 blows up
gem.add_development_dependency 'fakefs', '2.4'
gem.add_development_dependency 'hashie', '~> 5.0'
gem.add_development_dependency 'faraday', '~>1.0', '<3.0'
gem.add_development_dependency 'faraday', '~>2.0', '<3.0'
gem.add_development_dependency 'faraday-multipart', '~> 1.0'
gem.add_development_dependency 'conventional-changelog', '~> 1.3'
gem.add_development_dependency 'bump', '~> 0.5'
Expand Down

0 comments on commit f2a413f

Please sign in to comment.