honeybadger 4.2.2 → 4.3.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: be7d9074b02543453248a4dae419eb0db6acd4180426fa9ffda51d42ad60e0d6
4
- data.tar.gz: d1e8d6da03aedc09ed95dec55a547f8085c45339268a355cb472e3f74af2a071
3
+ metadata.gz: 66bbcd6d8145ae71f2348681b8700426304eb3fbf8252d006bf169edc49680ea
4
+ data.tar.gz: c5558a1a360ac2e268061886a9c90ffb78ebd9508723a12f311d2407859bea6f
5
5
  SHA512:
6
- metadata.gz: 5c208b4c42ca10378d529afd8b4b4e2e95c8d04a2338fb484f8e1f24efc751ced52dad0a0580279db90a03e2eb1aa5e3373dada303a6fd8a7062a0ccf4917627
7
- data.tar.gz: 2efab3f9ac0db05226b9649556fd3df0623b0e6240d83de87ffc246a7f1dc971825cd4806a6edefe1b754815ea01a7ea3f2617bf160002de138fbe2f8184b68d
6
+ metadata.gz: 93991465bebd2146a46f6330370f3a7edcf4a110df44c394b6795f30c7e96c3c07bb40a6613b6894aa5cbca6e1f6df66d8905150974002d1ba240757b6140f2e
7
+ data.tar.gz: 93357385fe46118053f6bb6f3849890adbf9edd2808d2998dfe925d4f8bc1329b98c7957849b48c1fdec5435948f87d2e78aa77eddaea189e2ca1e5a7635b7f8
@@ -5,6 +5,10 @@ adheres to [Semantic Versioning](http://semver.org/).
5
5
 
6
6
  ## [Unreleased]
7
7
 
8
+ ## [4.3.0] - 2019-05-17
9
+ ### Added
10
+ - Send a value for action when reporting a component for Sidekiq jobs -@stympy
11
+
8
12
  ## [4.2.2] - 2019-04-25
9
13
  ### Fixed
10
14
  - Fix a bug where some non-standard backtraces could not be parsed, resulting in
@@ -35,7 +35,10 @@ module Honeybadger
35
35
 
36
36
  return if retry_opt && retry_count < max_retries
37
37
  opts = {parameters: params}
38
- opts[:component] = job['wrapped'.freeze] || job['class'.freeze] if config[:'sidekiq.use_component']
38
+ if config[:'sidekiq.use_component']
39
+ opts[:component] = job['wrapped'.freeze] || job['class'.freeze]
40
+ opts[:action] = 'perform' if opts[:component]
41
+ end
39
42
  Honeybadger.notify(ex, opts)
40
43
  }
41
44
  end
@@ -1,4 +1,4 @@
1
1
  module Honeybadger
2
2
  # The current String Honeybadger version.
3
- VERSION = '4.2.2'.freeze
3
+ VERSION = '4.3.0'.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: 4.2.2
4
+ version: 4.3.0
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: 2019-04-25 00:00:00.000000000 Z
11
+ date: 2019-05-17 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Make managing application errors a more pleasant experience.
14
14
  email: