honeybadger 5.26.4 → 5.27.0

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: a61036295da38a5d17bcc5061ccb9c07b106e3be1e7642d5561f8f876f9d7c7d
4
- data.tar.gz: 8790ba8611d838ac98978976862fba259c3aa7bdeb070d7285e54d5659d456aa
3
+ metadata.gz: fbd7746df88c3b6dd14133fa6d4bdc4494784bb313664d650a98518de3461164
4
+ data.tar.gz: cb730660a692f813e5446fdacc88840b3d60931a073a193a8a36715630b8d792
5
5
  SHA512:
6
- metadata.gz: 6f8f7051e9326b04cf314ae0201606a8a558c66235066706df3c00f093318a126599eb055ed574accf9acc2048b015604e1778b19e4aacd5f0c8952264f6a207
7
- data.tar.gz: 27251a44c22ffa1b1f7b244de298650e119dda596ebc5a9642800ac030f14232fcc938cc79386581b06c085beaa53573c28de876bd4974b8a3a6398912b8403d
6
+ metadata.gz: 060ab52bd078db8ca738a29d56bd002ebbb4f1faa4e9f6dd93d84b1bbaae2bc2805304befd47aa60d6c35d24080b0f51511c0e1a18e9a3fd0e0ad15f6f077f02
7
+ data.tar.gz: 4472a8bc2a79c6674b10257051f44b036717c4e3fb5f08bfad8b04d200883f3a42f9e6e57a02a2ad206c14a021bb6605a2207846b9d5791dc079fd1c2f662034
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  # Change Log
2
2
 
3
3
 
4
+ ## [5.27.0](https://github.com/honeybadger-io/honeybadger-ruby/compare/v5.26.4...v5.27.0) (2025-03-13)
5
+
6
+
7
+ ### Features
8
+
9
+ * 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))
10
+
4
11
  ## [5.26.4](https://github.com/honeybadger-io/honeybadger-ruby/compare/v5.26.3...v5.26.4) (2025-02-18)
5
12
 
6
13
 
@@ -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] || nil
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] || {}
@@ -1,4 +1,4 @@
1
1
  module Honeybadger
2
2
  # The current String Honeybadger version.
3
- VERSION = '5.26.4'.freeze
3
+ VERSION = '5.27.0'.freeze
4
4
  end
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.26.4
4
+ version: 5.27.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Honeybadger Industries LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-02-18 00:00:00.000000000 Z
10
+ date: 2025-03-13 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: logger