statsd-instrument 2.9.0 → 2.9.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: 28a52ac92cfb09e796f1eb8af9fde1a701255e61ac7377d32a7f6e92569c0e05
4
- data.tar.gz: bae7f0b29a3ce2ed62486a0866e592ca29ac5d18c11ad0815e7cb71991de50a8
3
+ metadata.gz: ae7293e6877b2d74f238585a71aa2becf142dbd29541141d9571633e817a3003
4
+ data.tar.gz: 7b2414d09b941a107d86d7855325092e258b3032ffa1784e91ab716c3688d2c9
5
5
  SHA512:
6
- metadata.gz: 87f9772a163d3ed4f400203f83db6c39dc946b75e21288fdd7a6ab7aa5b43646fcfa2fd3564d61b2795d192bcc82ae196dc1ec765d465b098620b9bcaf05c013
7
- data.tar.gz: d74cc5375319064d64e23e8fd1a6bf7583781783d296c12fb1ae233e45ddaecff8dd4bbfa9c1bf912fcd48daacb8f47511b019d4bf26b74a2ca235267054012b
6
+ metadata.gz: 2edbb8ce7c75358a9e5b06b7f3af777aacb54f8ce8d2793dcaa4ddb80c8a8117e17113e7304c63ed075e7c8f66e69abf004e3bccdd26ef31b6a295c55fbbebe6
7
+ data.tar.gz: a041d91c4ae37ffdfe06447614b73b9ea2a46e1a10ad3a37a72e1b38c49a037b5d501790385a5ea05c209b9f6e81597e00b4bf13c82d095fc2ffad9dbca54f47
data/CHANGELOG.md CHANGED
@@ -6,6 +6,16 @@ section below.
6
6
 
7
7
  ### Unreleased changes
8
8
 
9
+ _Nothing yet_
10
+
11
+ ## Version 2.9.1
12
+
13
+ - The `VOID` object being returned by metric methods (e.g. `StatsD.increment`)
14
+ is now a subclass of `Object` rather than `BasicObject`, which means that
15
+ common methods will work as expected (`#class`, `#tap`).
16
+
17
+ ## Version 2.9.0
18
+
9
19
  - ⚠️ **DEPRECATION:** The `StatsD.key_value` metric method is deprecated
10
20
  and will be removed in version 3.0. The new client does not have StatSite
11
21
  support. Due to the lack of active contributors that can port this metric
@@ -344,9 +344,9 @@ module StatsD
344
344
  remove_from_method(method, name, :distribution)
345
345
  end
346
346
 
347
- VoidClass = Class.new(BasicObject)
347
+ VoidClass = Class.new
348
348
  private_constant :VoidClass
349
- VOID = VoidClass.new
349
+ VOID = VoidClass.new.freeze
350
350
 
351
351
  private
352
352
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module StatsD
4
4
  module Instrument
5
- VERSION = "2.9.0"
5
+ VERSION = "2.9.1"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: statsd-instrument
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.9.0
4
+ version: 2.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jesse Storimer