Skip to content
Open
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ script:
- gem build sensu-plugins-http.gemspec
- gem install sensu-plugins-http-*.gem
- bundle exec rake quick
- bundle exec rake kitchen:ruby-`echo $TRAVIS_RUBY_VERSION | sed -e "s/\.//g"`-debian-8
- travis_wait 60 bundle exec rake kitchen:ruby-`echo $TRAVIS_RUBY_VERSION | sed -e "s/\.//g"`-debian-8
before_deploy:
- bash -c "[ ! -d bonsai/ ] && git clone https://github.com/sensu/sensu-go-bonsai-asset.git bonsai || echo 'bonsai/ exists, skipping git clone'; cp asset_build_scripts/Dockerfile.* bonsai/ruby-runtime/"
deploy:
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins

### Breaking Change
- Updated json requirement from '< 2.0.0' to '~> 2.3'
- Updated aws-sdk requirement from '~> 2.3' to '~> 3.0'
- Updated oj requirement from '~> 2.18' to '~> 3.10'

### Fixed
- `check-http.rb`: An empty response body when using `-w` no longer creates a potentially confusing `no implicit conversion of nil into String` error

Expand Down
4 changes: 2 additions & 2 deletions sensu-plugins-http.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Gem::Specification.new do |s| # rubocop:disable Metrics/BlockLength
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.version = SensuPluginsHttp::Version::VER_STRING

s.add_runtime_dependency 'aws-sdk', '~> 2.3'
s.add_runtime_dependency 'aws-sdk', '~> 3.0'
s.add_runtime_dependency 'oj', '~> 3.10'
s.add_runtime_dependency 'rest-client', '~> 2.1'
s.add_runtime_dependency 'sensu-plugin', '~> 4.0'
Expand All @@ -46,7 +46,7 @@ Gem::Specification.new do |s| # rubocop:disable Metrics/BlockLength
s.add_development_dependency 'kitchen-vagrant', '~> 1.3'
s.add_development_dependency 'pry', '~> 0.10'
s.add_development_dependency 'rake', '~> 13.0'
s.add_development_dependency 'rdoc'
s.add_development_dependency 'rdoc', '~> 4.2'
s.add_development_dependency 'redcarpet', '~> 3.2'
s.add_development_dependency 'rspec', '~> 3.1'
s.add_development_dependency 'rubocop', '~> 0.79.0'
Expand Down