sensu 0.25.0.rc1 → 0.25.0
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 +27 -1
- data/lib/sensu/constants.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c289c679da3406d84ac8956cca69e1c0826d802e
|
|
4
|
+
data.tar.gz: bd1bb0a50d517528e42c31306758f2459e97b174
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3c5a7582ba1c3567996eef0dd14aeb3e77277e691cb218ef5411e7462e5dddcde178ac11cfbcbd9cc0ecae880c86ba33fc115acbeca3fb9bfcf5accccbd42880
|
|
7
|
+
data.tar.gz: 6e139c0a753a9d27f2b94629d2c65834cc053e35010ed29d7f5a071495ace78de4046c35564549247c2d87739b9d001942c0a8f2af3cd367db32e3e0f04ad915
|
data/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,34 @@
|
|
|
1
|
+
## 0.25.0 - 2016-06-13
|
|
2
|
+
|
|
3
|
+
### Important
|
|
4
|
+
|
|
5
|
+
Sensu API legacy singular resources, e.g. `/check/:check_name`, have been
|
|
6
|
+
removed. Singular resources were never documented and have not been used
|
|
7
|
+
by most community tooling, e.g. Uchiwa, since the early Sensu releases.
|
|
8
|
+
|
|
9
|
+
### Fixes
|
|
10
|
+
|
|
11
|
+
Fixed a critical bug in Sensu client `execute_check_command()` where a
|
|
12
|
+
check result would contain a check command with client tokens substituted,
|
|
13
|
+
potentially exposing sensitive/redacted client attribute values.
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
The Sensu API has been rewritten to use EM HTTP Server, removing Rack and
|
|
18
|
+
Thin as API runtime dependencies. The API no longer uses Rack async,
|
|
19
|
+
making for cleaner HTTP request logic and much improved HTTP request and
|
|
20
|
+
response logging.
|
|
21
|
+
|
|
22
|
+
Sensu client auto de-registration on sensu-client process stop is now
|
|
23
|
+
supported by the Sensu client itself, no longer depending on the package
|
|
24
|
+
init script. The package init script de-registration functionality still
|
|
25
|
+
remains, but is considered to be deprecated at this time.
|
|
26
|
+
|
|
1
27
|
## 0.24.1 - 2016-06-07
|
|
2
28
|
|
|
3
29
|
### Fixes
|
|
4
30
|
|
|
5
|
-
Fixed a critical bug in Sensu server resume() which caused the server to
|
|
31
|
+
Fixed a critical bug in Sensu server `resume()` which caused the server to
|
|
6
32
|
crash when querying the state of the Sensu Transport connection before it
|
|
7
33
|
had been initialized. [#1321](https://github.com/sensu/sensu/pull/1321)
|
|
8
34
|
|
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.25.0
|
|
4
|
+
version: 0.25.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sean Porter
|
|
@@ -274,9 +274,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
274
274
|
version: '0'
|
|
275
275
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
276
276
|
requirements:
|
|
277
|
-
- - "
|
|
277
|
+
- - ">="
|
|
278
278
|
- !ruby/object:Gem::Version
|
|
279
|
-
version:
|
|
279
|
+
version: '0'
|
|
280
280
|
requirements: []
|
|
281
281
|
rubyforge_project:
|
|
282
282
|
rubygems_version: 2.6.3
|