Skip to content

Commit

Permalink
fix(release): Some known HTTP::ConnectionError issues resolved in htt…
Browse files Browse the repository at this point in the history
…p 5.1.x

* Note, there are some breaking changes in version 5.0.0:
https://github.com/httprb/http/blob/main/CHANGES.md#500-2021-05-12
* Update ibm_cloud_sdk_core to 1.2.0 for http 5.1.x support
* Bump rake dependency to support http 5.1.x
* http 5.1.1 requires ruby 2.6+, test with more modern rubies

Signed-off-by: Joe Rafaniello <[email protected]>
  • Loading branch information
jrafanie committed Oct 16, 2023
1 parent e47afa4 commit 6334318
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
8 changes: 5 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@ sudo: required
dist: focal

rvm:
- 2.5.1
- 2.6.1
- 2.7
- 3.0
- 3.1

notifications:
email: false
Expand Down Expand Up @@ -42,11 +44,11 @@ deploy:
skip_cleanup: true
on:
branch: master
rvm: 2.5.1
rvm: 2.6.1

- provider: rubygems
api_key: $RUBYGEMS_API_KEY
gem: ibm_vpc
on:
rvm: '2.5.1'
rvm: '2.6.1'
branch: master
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ source "https://rubygems.org"
# Specify your gem's dependencies in ibm_vpc.gemspec
gemspec

gem "rake", "~> 12.0"
gem "rake", "~> 13.0"
gem "rspec", "~> 3.0"
4 changes: 2 additions & 2 deletions ibm_vpc.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ Gem::Specification.new do |spec|
spec.require_paths = ["lib"]

spec.add_runtime_dependency "concurrent-ruby", "~> 1.0"
spec.add_runtime_dependency "http", "~> 4.4.1"
spec.add_runtime_dependency "ibm_cloud_sdk_core", "~> 1.1.3"
spec.add_runtime_dependency "http", "~> 5.1.1"
spec.add_runtime_dependency "ibm_cloud_sdk_core", "~> 1.2.0"
spec.add_runtime_dependency "jwt", "~> 2.2.1"

spec.add_development_dependency "bundler", "~> 2.1"
Expand Down

0 comments on commit 6334318

Please sign in to comment.