diff --git a/.travis.yml b/.travis.yml index 05c79b7..7cab217 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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: diff --git a/CHANGELOG.md b/CHANGELOG.md index d443e15..d2a521e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/sensu-plugins-http.gemspec b/sensu-plugins-http.gemspec index eb8d9f7..f081ae3 100644 --- a/sensu-plugins-http.gemspec +++ b/sensu-plugins-http.gemspec @@ -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' @@ -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'