honeybadger 5.11.1 → 5.11.2

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: 238281f2485599809a1cbde2313f3b3dbcce4e8ef2fb251b47190d6e2f5c5ce4
4
- data.tar.gz: 82c41d922f89c1e9f0d3392086d6e3f2c2437842dba791715df324eacb3bf150
3
+ metadata.gz: 813dfdf1a43afbda28fccbf5ca274be2885fc200dd8b2e321adb787d0f694ea3
4
+ data.tar.gz: f795d061be6e757e59f756945a5e30a3660ea8989d28a4196f59aac86556e88e
5
5
  SHA512:
6
- metadata.gz: 9186cbd806cd63e77c15b355502a1f3f666469b294324c01c55a92b85f29aaa7d5e5ba51b008f57e8f484ac9089679236cd7038dd8af40a7f97b91f05ef0cfde
7
- data.tar.gz: 0f95f4ed9bd07fa00d57c0443b279283275824acd6d7dba60dc36b04cd26c1575b706ae633c7bb579a6d6cc44a328b70c898de68998940512b70563608fca442
6
+ metadata.gz: f25e69a2e9307269cdee018c6ed02a852fd2974137e3074592d7aed6c11cb635cf278f4726478a3187e50f0e807fbbc5d7b4a8de007e02432a8f405e6e889a0b
7
+ data.tar.gz: 0cf8de2539c8ce2f2e044ffd86e1db2d0ee6713aec7b6823036796a6431f0a769ee3458b9e20f673a542ccb264fe5d9d4b7254c7a2be603ddda981c57911eb5c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  # Change Log
2
2
 
3
3
 
4
+ ## [5.11.2](https://github.com/honeybadger-io/honeybadger-ruby/compare/v5.11.1...v5.11.2) (2024-06-12)
5
+
6
+
7
+ ### Bug Fixes
8
+
9
+ * don't blow up if ActiveJob queue_adapter isn't a string or symbol ([#561](https://github.com/honeybadger-io/honeybadger-ruby/issues/561)) ([4550ea3](https://github.com/honeybadger-io/honeybadger-ruby/commit/4550ea393680a07599deb95f6b49e45112447efa)), closes [#560](https://github.com/honeybadger-io/honeybadger-ruby/issues/560)
10
+
4
11
  ## [5.11.1](https://github.com/honeybadger-io/honeybadger-ruby/compare/v5.11.0...v5.11.1) (2024-06-07)
5
12
 
6
13
 
@@ -39,12 +39,13 @@ module Honeybadger
39
39
  requirement do
40
40
  defined?(::Rails.application) &&
41
41
  ::Rails.application.config.respond_to?(:active_job) &&
42
+ ::Rails.application.config.active_job[:queue_adapter].respond_to?(:to_sym) &&
42
43
  !EXCLUDED_ADAPTERS.include?(::Rails.application.config.active_job[:queue_adapter].to_sym)
43
44
  end
44
45
 
45
46
  # Don't report errors if GoodJob is reporting them
46
47
  requirement do
47
- ::Rails.application.config.active_job[:queue_adapter].to_sym != :good_job ||
48
+ !::Rails.application.config.active_job[:queue_adapter].to_s.match?(/(GoodJob::Adapter|good_job)/) ||
48
49
  !::Rails.application.config.respond_to?(:good_job) ||
49
50
  ::Rails.application.config.good_job[:on_thread_error].nil?
50
51
  end
@@ -1,4 +1,4 @@
1
1
  module Honeybadger
2
2
  # The current String Honeybadger version.
3
- VERSION = '5.11.1'.freeze
3
+ VERSION = '5.11.2'.freeze
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: honeybadger
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.11.1
4
+ version: 5.11.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Honeybadger Industries LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-06-07 00:00:00.000000000 Z
11
+ date: 2024-06-12 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Make managing application errors a more pleasant experience.
14
14
  email: