appsignal 3.7.1 → 3.7.2

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: a2436d053b0117c1bf51f5d8522e679d27767e214adc6ee697bc97dd3d52da37
4
- data.tar.gz: c7b979cedcdf09c44cca9181974cb7f6611c12789b8cdae8aa55fc2eabc4e512
3
+ metadata.gz: 47595d1e052146b00f68ff86f47b27dd6517c0a4ac48f3b2cddc41647a864ecd
4
+ data.tar.gz: 4d1a4a75650f1282237fb69427c9f98ba2328e0f45322d2b2d1b5748ab57edad
5
5
  SHA512:
6
- metadata.gz: 34212adfd1baca988ed94ccbd416bd9cb08156de2165ccaafda7779f01e6f5ecfc3c5b078d31323c5912628366383ae0d8e3b9723837682aeae5e2605d09f913
7
- data.tar.gz: 52f06def120af6c2a3dc6ecd66f3ac6632f7ae4b26fc432905db18910726b4faf03b9d0e1d5f136594a77f843018a395d5f0ffe86a2aec934fccadc7f800e6cc
6
+ metadata.gz: 7a6d756685176f8f5c200ed8eb73033319bc04de42ce8985b3c801932612f5bd811c309e310cab9c44dbe01f30a3689c9b4d200d45a6d1fa2b166d499cbc5c34
7
+ data.tar.gz: 24f32b9e25ccfbf41613124213bf4a5280380442516ab1c18d64fe29335375d6d9b403a73ae43a6d3295a4324035e360ff5ae388f3c088a11da1152605eb02c0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # AppSignal for Ruby gem Changelog
2
2
 
3
+ ## 3.7.2
4
+
5
+ _Published on 2024-05-06._
6
+
7
+ ### Fixed
8
+
9
+ - [b6e8ebe2](https://github.com/appsignal/appsignal-ruby/commit/b6e8ebe27e56d111337c5901e4b819bf97bba174) patch - Fix deprecation warnings for Probes.probes introduced in 3.7.1 for internally registered probes.
10
+
3
11
  ## 3.7.1
4
12
 
5
13
  _Published on 2024-04-29._
@@ -16,7 +16,7 @@ module Appsignal
16
16
  end
17
17
 
18
18
  def install
19
- Appsignal::Probes.probes.register :gvl, Appsignal::Probes::GvlProbe
19
+ Appsignal::Probes.register :gvl, Appsignal::Probes::GvlProbe
20
20
  ::GVLTools::GlobalTimer.enable if Appsignal.config[:enable_gvl_global_timer]
21
21
  ::GVLTools::WaitingThreads.enable if Appsignal.config[:enable_gvl_waiting_threads]
22
22
  end
@@ -11,7 +11,7 @@ module Appsignal
11
11
  end
12
12
 
13
13
  def install
14
- Appsignal::Probes.probes.register :mri, Appsignal::Probes::MriProbe
14
+ Appsignal::Probes.register :mri, Appsignal::Probes::MriProbe
15
15
  end
16
16
  end
17
17
  end
@@ -11,7 +11,7 @@ module Appsignal
11
11
 
12
12
  def install
13
13
  require "appsignal/integrations/sidekiq"
14
- Appsignal::Probes.probes.register :sidekiq, Appsignal::Probes::SidekiqProbe
14
+ Appsignal::Probes.register :sidekiq, Appsignal::Probes::SidekiqProbe
15
15
 
16
16
  ::Sidekiq.configure_server do |config|
17
17
  config.error_handlers <<
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Appsignal
4
- VERSION = "3.7.1"
4
+ VERSION = "3.7.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appsignal
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.7.1
4
+ version: 3.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Beekman
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2024-04-29 00:00:00.000000000 Z
13
+ date: 2024-05-06 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rack