chef-handler-datadog 0.12.0 → 0.12.1

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
2
  SHA256:
3
- metadata.gz: dd86897a24daf515f2dd761fb3e536ea263cf61eff54bb25cb2ef3197e323348
4
- data.tar.gz: 997079934b33e8f4fc937df99bad956b15c9888af8c3a19d2eb5ca69440b6e76
3
+ metadata.gz: 26dd78bfdbd6e79d3544943a1bf0030c3d8636328da7dc666cb4963f4aee498b
4
+ data.tar.gz: a78ec6092d2cb6b5d50e8271ae227b810e214f1430cc498d2cdb9e4aee317b48
5
5
  SHA512:
6
- metadata.gz: 3091cd56f9d844bd4b9ec6d7d271eff79faa89729b94513d17a84758dd53b1da5f3a0372b9c8be746c118c8d5ecc998346d72f465b02a671c06cf8f97b2203f8
7
- data.tar.gz: 22243c1c9910cbb75f65066fee99c6d4f310b63657381dbf4d451a9dd334d321bcd10aa49b10974b16c652c783a47eeb4c604d56436d7900cb004902a1d58b35
6
+ metadata.gz: ca5d68347a7e8f2bff5d7e973421558a72e910a86dbfcb88bd08d3888e00e6135982df39eb51927e312a444c7a9cdd4797c7f121625963b2a9c45ef0707880b1
7
+ data.tar.gz: 688cc56577e5097111fc309a4e74e6814ae5cb1fca8ddedc1ea2fd49cefb01d6d14ee2ea205b6de254eee145e705eae2ff22fabed30b4faa534a2f89f589c19f
@@ -1,6 +1,10 @@
1
1
  Changes
2
2
  =======
3
3
 
4
+ # 0.12.1 / 2019-09-30
5
+
6
+ * [BUGFIX] Fix standard error rescue in metrics sender. [#109][] [@rmoriz][]
7
+
4
8
  # 0.12.0 / 2019-05-27
5
9
 
6
10
  **This version drops the support of Chef < 12.7**
@@ -122,6 +126,7 @@ And all other versions were prior to this. See git history for more.
122
126
  [#102]: https://github.com/DataDog/chef-handler-datadog/issues/102
123
127
  [#103]: https://github.com/DataDog/chef-handler-datadog/issues/103
124
128
  [#104]: https://github.com/DataDog/chef-handler-datadog/issues/104
129
+ [#109]: https://github.com/DataDog/chef-handler-datadog/issues/109
125
130
  [@ABrehm264]: https://github.com/ABrehm264
126
131
  [@DanielMuller]: https://github.com/DanielMuller
127
132
  [@DanielRedOak]: https://github.com/DanielRedOak
@@ -140,6 +145,7 @@ And all other versions were prior to this. See git history for more.
140
145
  [@mstepniowski]: https://github.com/mstepniowski
141
146
  [@olivielpeau]: https://github.com/olivielpeau
142
147
  [@owen]: https://github.com/owen
143
- [@remh]: https://github.com/remh
144
148
  [@remeh]: https://github.com/remeh
149
+ [@remh]: https://github.com/remh
145
150
  [@rlaveycal]: https://github.com/rlaveycal
151
+ [@rmoriz]: https://github.com/rmoriz
@@ -50,6 +50,6 @@ class DatadogChefMetrics
50
50
  rescue Errno::ECONNREFUSED, Errno::ETIMEDOUT => e
51
51
  Chef::Log.warn("Could not send metrics to Datadog. Connection error:\n" + e)
52
52
  rescue StandardError => e
53
- Chef::Log.warn("Could not determine whether chef run metrics were successfully submitted to Datadog: #{evt}. Error:\n#{e}")
53
+ Chef::Log.warn("Could not determine whether chef run metrics were successfully submitted to Datadog. Error:\n#{e}")
54
54
  end
55
55
  end # end class DatadogChefMetrics
@@ -2,5 +2,5 @@
2
2
  # Helper module for version number only.
3
3
  # Real deal in 'chef/handler/datadog.rb'
4
4
  module ChefHandlerDatadog
5
- VERSION = '0.12.0'
5
+ VERSION = '0.12.1'
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chef-handler-datadog
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.0
4
+ version: 0.12.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Fiedler
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2019-05-27 00:00:00.000000000 Z
13
+ date: 2019-09-30 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: dogapi
@@ -256,7 +256,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
256
256
  version: '0'
257
257
  requirements: []
258
258
  rubyforge_project:
259
- rubygems_version: 2.7.9
259
+ rubygems_version: 2.7.10
260
260
  signing_key:
261
261
  specification_version: 4
262
262
  summary: Chef Handler reports events and metrics to Datadog