honeybadger 5.11.0 → 5.11.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +14 -0
- data/lib/honeybadger/plugins/active_job.rb +3 -2
- 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,20 @@
|
|
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
|
+
|
11
|
+
## [5.11.1](https://github.com/honeybadger-io/honeybadger-ruby/compare/v5.11.0...v5.11.1) (2024-06-07)
|
12
|
+
|
13
|
+
|
14
|
+
### Bug Fixes
|
15
|
+
|
16
|
+
* do GoodJob.on_thread_error check via hash instead of method ([#558](https://github.com/honeybadger-io/honeybadger-ruby/issues/558)) ([d2aa464](https://github.com/honeybadger-io/honeybadger-ruby/commit/d2aa4640e371e3985310fb30ad5a356807d2bab3))
|
17
|
+
|
4
18
|
## [5.11.0](https://github.com/honeybadger-io/honeybadger-ruby/compare/v5.10.2...v5.11.0) (2024-06-04)
|
5
19
|
|
6
20
|
|
@@ -39,14 +39,15 @@ 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
|
-
::Rails.application.config.good_job
|
50
|
+
::Rails.application.config.good_job[:on_thread_error].nil?
|
50
51
|
end
|
51
52
|
|
52
53
|
execution do
|
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:
|