Skip to content

Commit

Permalink
Merge pull request #170 from sensu-plugins/release/6.0.0
Browse files Browse the repository at this point in the history
ready to cut 6.0.0 release
  • Loading branch information
Jef Spaleta committed Jan 22, 2020
2 parents 0580baf + 962f79a commit 3378374
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,18 @@ This project adheres to [Semantic Versioning](http://semver.org/).
This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md)

## [Unreleased]

## [6.0.0] - 2020-01-17
### Added
- New metrics-libcurl.rb metrics check that works directly with libcurl and does not need curl executable on system. Very useful as an asset in containerized Sensu Agent installs.
- `check-http.rb`: Add `HEAD` to method options
- `check-http.rb` Added option to include file with multiple headers, useful for long list of headers.

### Fixed
- Updated asset build automation for Alpine target to ensure curl and libcurl based metrics work.
- `check-http.rb`: An empty response body when using `-w` no longer creates a potentially confusing `no implicit conversion of nil into String` error

### Changed
- `check-http.rb` Added option to include file with multiple headers, useful for long list of headers.
- Updated bundler development dependancy to '~> 2.1'
- Make rake Kitchen tasks conditional on ability to load kitchen module in development env. kitchen module will not load on hosts without docker runtime.
- Update asset build definitions to match targets supported by ruby-runtime
Expand All @@ -25,11 +29,6 @@ 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 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

### Added
- `check-http.rb`: Add `HEAD` to method options

## [5.1.1] - 2019-06-21
### Fixed
Expand Down Expand Up @@ -270,7 +269,8 @@ metrics-http-json.rb: Added debug option to see the processing of json data
### Added
- Initial release

[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-http/compare/5.1.1...HEAD
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-http/compare/6.0.0...HEAD
[6.0.0]: https://github.com/sensu-plugins/sensu-plugins-http/compare/5.1.1...6.0.0
[5.1.1]: https://github.com/sensu-plugins/sensu-plugins-http/compare/5.1.0...5.1.1
[5.1.0]: https://github.com/sensu-plugins/sensu-plugins-http/compare/5.0.0...5.1.0
[5.0.0]: https://github.com/sensu-plugins/sensu-plugins-http/compare/4.1.0...5.0.0
Expand Down
6 changes: 3 additions & 3 deletions lib/sensu-plugins-http/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

module SensuPluginsHttp
module Version
MAJOR = 5
MINOR = 1
PATCH = 1
MAJOR = 6
MINOR = 0
PATCH = 0

VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
end
Expand Down

0 comments on commit 3378374

Please sign in to comment.