Skip to content

Commit

Permalink
prep for 5.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
majormoses committed Jan 26, 2020
1 parent 80083b2 commit a211547
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
19 changes: 11 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,20 @@ 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]
### Added
- Add `-X`, `--exclude-interfaces-regex` and `-I`, `--include-interfaces-regex` as alternative to `-x` and `-i`.

## [5.0.0] 2020-01-26
### Breaking Changes
- Added hostname to default metric scheme.
- Added support to choose between local and remote port metrics. Defaults to local. Metric scheme extended to indicate local or remote.
- `metrics-sockstat.rb`: Added hostname to default metric scheme.
- `metrics-netstat-tcp.rb`: Added support to choose between local and remote port metrics. Defaults to local. Metric scheme extended to indicate local or remote.

### Added
- `metrics-interface.rb`: options to include or exclude interfaces via regex. `-X`, `--exclude-interfaces-regex` and `-I`, `--include-interfaces-regex` as alternative to `-x` and `-i`.
- `check-ports-bind.rb`: Allow to specify the protocol to check for each port individually (address:port/proto)


### Changed
- Updated net-ping runtime dependancy to '2.0.6'
- Updated net-ping runtime dependancy to '2.0.6'
- Updated rake development dependancy to '~> 12.3'
- Removed centos build from bonsai.yml
- check-ports-bind.rb: Allow to specify the protocol to check for each port individually (address:port/proto)
- Updated whois-parser to ~> 1.2
- Updated rubocop dependency to '~> 0.79.0'
- Reconciled issues identified by updating rubocop
Expand Down Expand Up @@ -268,7 +270,8 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugin

* initial release, same as community repo

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

module SensuPluginsNetworkChecks
module Version
MAJOR = 4
MINOR = 1
PATCH = 1
MAJOR = 5
MINOR = 0
PATCH = 0

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

0 comments on commit a211547

Please sign in to comment.