sensu-plugins-slack 2.0.0 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: e2ef290bc31a10e7dbebbc2f06dd09ef92e9028a
4
- data.tar.gz: 5dc4ecfd841c91472937d6aa7166541d2d0385c2
2
+ SHA256:
3
+ metadata.gz: 965e54c34560bc4c638f097866e6d0ad1b5f195811dd7cb758f68a6fef3d13e3
4
+ data.tar.gz: 0bdf270da3c7aa91cf84903712ca5af0fbb430af8b8eb5a833105dce8c1bef66
5
5
  SHA512:
6
- metadata.gz: 336c8ea18d990bfd70d4b1af379c9feb48c1d4bbf18d7b96ecd9f5d9975f1b899f74da5a27b058ef1562d25461cfdba5befae7ddfd5a8aee835a206ecc8753bb
7
- data.tar.gz: 5afb380b4e1809e418010e334dbe79efee3bdf1c2ca21b3858f4628ba43de2a558d4314666b8f30505d80556e4f64045e7cc244b1f3301420b0dc880be4b8169
6
+ metadata.gz: 8199905e68efef5aa28b268be0ca47195585780dd28bf03c4c9fdb34c31de988ee7cc5fd52800ac93fd380668e6a451bef52a1599a5f59f072a4c6846c3c22b4
7
+ data.tar.gz: bd2d84112128724e2b0792912aa2234e7863452ff54c2affaf69c39d2d51dfa6b665fa228c1f217ef579f7e64d500b3e3d3200da02ab967b55c00910909283e6
data/CHANGELOG.md CHANGED
@@ -1,10 +1,17 @@
1
1
  # Change Log
2
2
  This project adheres to [Semantic Versioning](http://semver.org/).
3
3
 
4
- This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/)
4
+ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md)
5
5
 
6
6
  ## [Unreleased]
7
7
 
8
+ ## [3.0.0] - 2018-01-11
9
+ ### Breaking Changes
10
+ - bumped `sensu-plugin` dependency to 2.x which removes in handler filtering for `occurrences`. If you want to keep using the same filtering features you must specify it and ensure that you have applied the filter by setting `"filters": ["occurrences"]`. For more information see [here](https://blog.sensuapp.org/deprecating-event-filtering-in-sensu-plugin-b60c7c500be3) (@majormoses)
11
+
12
+ ### Changed
13
+ - update changelog guidelines location, fix spelling in PR template (@majormoses)
14
+
8
15
  ## [2.0.0] - 2017-10-21
9
16
  ### Breaking Changes
10
17
  - `handler-slack-multichannel.rb`: Fixed title unknown issue when using proxy clients, change from client address to client name (@autumnw)
@@ -108,7 +115,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
108
115
  ### Added
109
116
  - initial release
110
117
 
111
- [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-slack/compare/2.0.0...HEAD
118
+ [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-slack/compare/3.0.0...HEAD
119
+ [3.0.0]: https://github.com/sensu-plugins/sensu-plugins-slack/compare/2.0.0...3.0.0
112
120
  [2.0.0]: https://github.com/sensu-plugins/sensu-plugins-slack/compare/1.5.0...2.0.0
113
121
  [1.5.1]: https://github.com/sensu-plugins/sensu-plugins-slack/compare/1.5.0...1.5.1
114
122
  [1.5.0]: https://github.com/sensu-plugins/sensu-plugins-slack/compare/1.4.0...1.5.0
data/README.md CHANGED
@@ -52,7 +52,7 @@
52
52
  "no-team-alerts": "https://hooks.slack.com/services/AAAAAAA",
53
53
  "all-alerts": "https://hooks.slack.com/services/BBBBBB"
54
54
  },
55
- "channel": {
55
+ "channels": {
56
56
  "default": [ "no-team-alerts" ],
57
57
  "compulsory": [ "all-alerts" ]
58
58
  }
@@ -1,6 +1,6 @@
1
1
  module SensuPluginsSlack
2
2
  module Version
3
- MAJOR = 2
3
+ MAJOR = 3
4
4
  MINOR = 0
5
5
  PATCH = 0
6
6
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-slack
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 3.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sensu-Plugins and contributors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-10-21 00:00:00.000000000 Z
11
+ date: 2018-01-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: erubis
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '1.2'
33
+ version: '2.0'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '1.2'
40
+ version: '2.0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: bundler
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -205,7 +205,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
205
205
  version: '0'
206
206
  requirements: []
207
207
  rubyforge_project:
208
- rubygems_version: 2.6.14
208
+ rubygems_version: 2.7.4
209
209
  signing_key:
210
210
  specification_version: 4
211
211
  summary: Sensu plugins for interfacing with Slack chat