honeybadger 5.26.4 → 5.27.1
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 +15 -0
- data/lib/honeybadger/notice.rb +3 -3
- data/lib/honeybadger/plugins/active_job.rb +1 -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: 745754d6aac261d60246afb0bf21461792ef996c595f5f57d8b56847776827f3
|
4
|
+
data.tar.gz: 563f07e3af73b58c393e038b09993199bf18060b1077c6066780be5463394a33
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 97ffe712ed54d9961c07aca22c71c26edb75e3352d122536e50e6e845eabd4dd08171c8a0a34bc603ef921b279a04c55103ccf90fc705bb30fc64944788ef600
|
7
|
+
data.tar.gz: f4ec4c6c40742d5edc491233450a5086d11313796ff81e0745e0d17517945b48686d8f9a5033c84746dd27b247404542580f74459b853a74861862a9f9e37010
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
3
|
|
4
|
+
## [5.27.1](https://github.com/honeybadger-io/honeybadger-ruby/compare/v5.27.0...v5.27.1) (2025-03-21)
|
5
|
+
|
6
|
+
|
7
|
+
### Bug Fixes
|
8
|
+
|
9
|
+
* add specs for ignored events ([#677](https://github.com/honeybadger-io/honeybadger-ruby/issues/677)) ([3907ecf](https://github.com/honeybadger-io/honeybadger-ruby/commit/3907ecf7ace995b2771b07f51a42388ce82c6aed))
|
10
|
+
* prepend callback in Active Job plugin ([a46a668](https://github.com/honeybadger-io/honeybadger-ruby/commit/a46a6685358ffdb25d1c6446585a3e65847ac34b))
|
11
|
+
|
12
|
+
## [5.27.0](https://github.com/honeybadger-io/honeybadger-ruby/compare/v5.26.4...v5.27.0) (2025-03-13)
|
13
|
+
|
14
|
+
|
15
|
+
### Features
|
16
|
+
|
17
|
+
* set action and component from context ([#672](https://github.com/honeybadger-io/honeybadger-ruby/issues/672)) ([1704486](https://github.com/honeybadger-io/honeybadger-ruby/commit/17044868f28c78f76752e1464c3eea30cc75d74b))
|
18
|
+
|
4
19
|
## [5.26.4](https://github.com/honeybadger-io/honeybadger-ruby/compare/v5.26.3...v5.26.4) (2025-02-18)
|
5
20
|
|
6
21
|
|
data/lib/honeybadger/notice.rb
CHANGED
@@ -217,9 +217,9 @@ module Honeybadger
|
|
217
217
|
self.tags = construct_tags(opts[:tags]) | construct_tags(context[:tags])
|
218
218
|
|
219
219
|
self.url = opts[:url] || request_hash[:url] || nil
|
220
|
-
self.action = opts[:action] || request_hash[:action]
|
221
|
-
self.component = opts[:controller] || opts[:component] || request_hash[:component] || nil
|
222
|
-
self.params = opts[:parameters] || opts[:params] || request_hash[:params]
|
220
|
+
self.action = opts[:action] || context[:_action] || request_hash[:action] || nil
|
221
|
+
self.component = opts[:controller] || opts[:component] || context[:_component] || request_hash[:component] || nil
|
222
|
+
self.params = opts[:parameters] || opts[:params] || request_hash[:params] || {}
|
223
223
|
self.session = opts[:session] || request_hash[:session] || {}
|
224
224
|
self.cgi_data = opts[:cgi_data] || request_hash[:cgi_data] || {}
|
225
225
|
self.details = opts[:details] || {}
|
@@ -51,7 +51,7 @@ module Honeybadger
|
|
51
51
|
end
|
52
52
|
|
53
53
|
execution do
|
54
|
-
::ActiveJob::Base.set_callback(:perform, :around, &ActiveJob.method(:perform_around)) if Honeybadger.config[:'exceptions.enabled']
|
54
|
+
::ActiveJob::Base.set_callback(:perform, :around, prepend: true, &ActiveJob.method(:perform_around)) if Honeybadger.config[:'exceptions.enabled']
|
55
55
|
|
56
56
|
if config.load_plugin_insights?(:active_job)
|
57
57
|
::ActiveSupport::Notifications.subscribe(/(enqueue_at|enqueue|enqueue_retry|enqueue_all|perform|retry_stopped|discard)\.active_job/, Honeybadger::ActiveJobSubscriber.new)
|
data/lib/honeybadger/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: honeybadger
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.
|
4
|
+
version: 5.27.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Honeybadger Industries LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-03-21 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: logger
|