sensu 0.26.2 → 0.26.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/sensu/api/routes/silenced.rb +2 -2
- data/lib/sensu/constants.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a4e499253359ed5c982a0a29ec1c2b05dd76f6c0
|
|
4
|
+
data.tar.gz: 5107221e27f4c7bfa7f7233fdefd5bd84b06bd3f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8881c6231598b3c956ae362b3b75eb4851a128a9654338ec5dbbb2b51f2a9ad9200b938cec3f0c2d4992c545c2536dd390c4731e99c872815138e0a46cb775b9
|
|
7
|
+
data.tar.gz: d0db425cb038e05a9fb255f34f342bae688d4845205d408144533bf63e6c91bbd170c275b950dd2d489010db10148c11e94d4b25991ce845ffda6355b65196b5
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 0.26.3 - 2016-09-21
|
|
2
|
+
|
|
3
|
+
### Fixes
|
|
4
|
+
|
|
5
|
+
Adjusted regular expression pattern to completely address scenarios where
|
|
6
|
+
valid subscription names were not allowed via API
|
|
7
|
+
`/silenced/subscriptions/:subscription` endpoint, e.g.
|
|
8
|
+
`client:foo-bar-baz`.
|
|
9
|
+
|
|
1
10
|
## 0.26.2 - 2016-09-20
|
|
2
11
|
|
|
3
12
|
### Fixes
|
|
@@ -3,8 +3,8 @@ module Sensu
|
|
|
3
3
|
module Routes
|
|
4
4
|
module Silenced
|
|
5
5
|
SILENCED_URI = /^\/silenced$/
|
|
6
|
-
SILENCED_SUBSCRIPTION_URI = /^\/silenced\/subscriptions\/([\w
|
|
7
|
-
SILENCED_CHECK_URI = /^\/silenced\/checks\/([\w
|
|
6
|
+
SILENCED_SUBSCRIPTION_URI = /^\/silenced\/subscriptions\/([\w\.\-:]+)$/
|
|
7
|
+
SILENCED_CHECK_URI = /^\/silenced\/checks\/([\w\.\-]+)$/
|
|
8
8
|
SILENCED_CLEAR_URI = /^\/silenced\/clear$/
|
|
9
9
|
|
|
10
10
|
# Fetch silenced registry entries for the provided silenced
|
data/lib/sensu/constants.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sensu
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.26.
|
|
4
|
+
version: 0.26.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sean Porter
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: exe
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2016-09-
|
|
12
|
+
date: 2016-09-22 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: eventmachine
|