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 +4 -4
- data/CHANGELOG.md +7 -0
- data/lib/honeybadger/plugins/active_job.rb +2 -1
- data/lib/honeybadger/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 813dfdf1a43afbda28fccbf5ca274be2885fc200dd8b2e321adb787d0f694ea3
|
|
4
|
+
data.tar.gz: f795d061be6e757e59f756945a5e30a3660ea8989d28a4196f59aac86556e88e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
|
|
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
|
data/lib/honeybadger/version.rb
CHANGED
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.
|
|
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-
|
|
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:
|