Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CVE-2017-8418] - updating rubocop dependency. #10

Merged
merged 1 commit into from
Feb 27, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ before_install: gem install bundler -v 1.15
install:
- bundle install
rvm:
- 2.0
- 2.1
- 2.2
- 2.3.0
Expand All @@ -28,5 +27,9 @@ deploy:
on:
tags: true
all_branches: true
rvm: 2.4.1
rvm:
- 2.1
- 2.2
- 2.3.0
- 2.4.1
repo: sensu-plugins/sensu-plugins-zfs
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ This project adheres to [Semantic Versioning](http://semver.org/).
This CHANGELOG follows the format located [here](https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md)

## [Unreleased]

### Security
- updated rubocop dependency to `~> 0.51.0` per: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-8418 (@majormoses)

### Breaking Changes
- in order to bring in the newer rubocop we had to drop ruby `< 2.1` support (@majormoses)

### Changed
- accepted into community, a bunch of initial house keeping (@majormoses)

Expand Down
6 changes: 2 additions & 4 deletions sensu-plugins-zfs.gemspec
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# coding: utf-8

lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

Expand Down Expand Up @@ -34,7 +32,7 @@ Gem::Specification.new do |spec| # rubocop:disable Metrics/BlockLength
spec.platform = Gem::Platform::RUBY
spec.post_install_message = 'You can use the embedded Ruby by setting EMBEDDED_RUBY=true in /etc/default/sensu'
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.0.0'
spec.required_ruby_version = '>= 2.1.0'
spec.summary = 'Sensu plugin for zfs'
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.version = SensuPluginsZFS::Version::VER_STRING
Expand All @@ -46,7 +44,7 @@ Gem::Specification.new do |spec| # rubocop:disable Metrics/BlockLength
spec.add_development_dependency 'pry', '~> 0.10'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'redcarpet', '~> 3.2'
spec.add_development_dependency 'rubocop', '~> 0.49.0'
spec.add_development_dependency 'rspec', '~> 3.1'
spec.add_development_dependency 'rubocop', '~> 0.51.0'
spec.add_development_dependency 'yard', '~> 0.8'
end