raygun-apm-sidekiq 1.0.13 → 1.0.18

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3303b715ab45873a92b2c813995c08d7717220a52ba9865f7477d6222f3376fd
4
- data.tar.gz: 7ff2daab0dd3197775a258bf80376415982b3d07b3681c1dda3fea04350cd59c
3
+ metadata.gz: 54382f4a9e7c847d1a026bb5bfaaa8bc4b4576d780b48994001c286f6077d072
4
+ data.tar.gz: 8dea545d6a83ca9e8b4f0587206799903b66ebd6a8550470df25c195caf5e7a6
5
5
  SHA512:
6
- metadata.gz: f2d888286ea06788a2ead521912a9d7cf43e3af539f083d12d0655c193db15922a7623a180f3c2430dd20bc97c4910c3974bcddb6ddb1b6480a847e4cbc73513
7
- data.tar.gz: 976a82cf24f1fb7377a09a08e095e1d84b9edadb871e9d8e5c159fd870877755e7281ea84a88eef5481f39ef19a26cbd5c3ddbe4cbac60c36ded0c4afc08af53
6
+ metadata.gz: 8eb4abc49fce7632e1428690ac70c517296354a5e9886b310f06d75569cd8b390f0627c724f3410ad3db7b797fdaf5ee09d3eeec25ba6a9f5ed1b9f57d7252dd
7
+ data.tar.gz: da85e668e1b8895db3b2c9bc7e39628f1dc6fc5a6c21bc24912867ed461f21ffc3969b93f96212e707bdbed409161494e7fa494a948b00c00643d1b435525e55
@@ -1,5 +1,27 @@
1
1
  = Changelog
2
2
 
3
+ == 1.0.18 (June 17, 2020)
4
+
5
+ * Force profiler version pin to 1.0.44 in gemspec
6
+
7
+ == 1.0.17 (June 17, 2020)
8
+
9
+ * Align with rubyesque blacklist syntax support from profiler version 1.0.44
10
+
11
+ == 1.0.16 (June 8, 2020)
12
+
13
+ * Integrate exception correlation with rayrun4ruby
14
+ * Move raygun4ruby whitelisting and blacklisting out to profiler core
15
+
16
+ == 1.0.15 (May 17, 2020)
17
+
18
+ * Remove the Tracer#process_started callback (set on begin transaction command now)
19
+
20
+ == 1.0.14 (May 15, 2020)
21
+
22
+ * Introduce support for Redis as client adapter
23
+ * Prefer hooking Sidekiq::Processor as Middleware does not wrap enough to intercept the raygun4ruby error handler as an HTTP OUT event
24
+
3
25
  == 1.0.13 (April 2, 2020)
4
26
 
5
27
  * Prefer hooking Sidekiq::Processor as Middleware does not wrap enough to intercept the raygun4ruby error handler as an HTTP OUT event
@@ -1,15 +1,15 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- raygun-apm-sidekiq (1.0.13)
5
- raygun-apm (~> 1.0.15)
4
+ raygun-apm-sidekiq (1.0.18)
5
+ raygun-apm (~> 1.0.44)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
10
  minitest (5.13.0)
11
11
  rake (10.5.0)
12
- raygun-apm (1.0.24-x86-linux)
12
+ raygun-apm (1.0.44-x86-linux)
13
13
 
14
14
  PLATFORMS
15
15
  ruby
@@ -7,12 +7,7 @@ module Raygun
7
7
 
8
8
  BLACKLIST = %w{
9
9
  Sidekiq
10
- Redis
11
- Raygun::Breadcrumbs
12
- Raygun::Configuration
13
- Raygun::config
14
- +Raygun::Apm::Sidekiq::Hook::Ruby_APM_profiler_trace
15
- +Raygun::track_exception
10
+ +Raygun::Apm::Sidekiq::Hook#Ruby_APM_profiler_trace
16
11
  }
17
12
 
18
13
  end
@@ -44,7 +44,6 @@ module Raygun
44
44
  def init_tracer
45
45
  tracer = Raygun::Apm::Tracer.new
46
46
  tracer.udp_sink!
47
- tracer.process_started
48
47
  ObjectSpace.define_finalizer(self, Hook.finalize(tracer))
49
48
 
50
49
  ActiveSupport::Notifications.unsubscribe(@sql_subscriber) if @sql_subscriber
@@ -8,6 +8,12 @@ module Raygun
8
8
  Raygun::Apm::Blacklist.extend_with Raygun::Apm::Sidekiq::BLACKLIST
9
9
  # Explictly enable instrumenting HTTP until a good control API is figured out
10
10
  require "raygun/apm/hooks/net_http"
11
+ require "raygun/apm/hooks/redis" if defined?(Redis::Client)
12
+ # Attempt to explicitly require the raygun4ruby sidekiq integration
13
+ begin
14
+ require "raygun/sidekiq"
15
+ rescue LoadError
16
+ end
11
17
  end
12
18
  end
13
19
  end
@@ -1,7 +1,7 @@
1
1
  module Raygun
2
2
  module Apm
3
3
  module Sidekiq
4
- VERSION = "1.0.13"
4
+ VERSION = "1.0.18"
5
5
  end
6
6
  end
7
7
  end
@@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
20
20
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
21
21
  spec.require_paths = ["lib"]
22
22
 
23
- spec.add_dependency "raygun-apm", "~> 1.0.15"
23
+ spec.add_dependency "raygun-apm", "~> 1.0.44"
24
24
  spec.add_development_dependency "bundler"
25
25
  spec.add_development_dependency "rake", "~> 10.0"
26
26
  spec.add_development_dependency "minitest", "~> 5.0"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: raygun-apm-sidekiq
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.13
4
+ version: 1.0.18
5
5
  platform: ruby
6
6
  authors:
7
7
  - Raygun
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2020-04-02 00:00:00.000000000 Z
12
+ date: 2020-06-17 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: raygun-apm
@@ -17,14 +17,14 @@ dependencies:
17
17
  requirements:
18
18
  - - "~>"
19
19
  - !ruby/object:Gem::Version
20
- version: 1.0.15
20
+ version: 1.0.44
21
21
  type: :runtime
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
25
  - - "~>"
26
26
  - !ruby/object:Gem::Version
27
- version: 1.0.15
27
+ version: 1.0.44
28
28
  - !ruby/object:Gem::Dependency
29
29
  name: bundler
30
30
  requirement: !ruby/object:Gem::Requirement