honeybadger 2.7.1 → 2.7.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 +4 -0
- data/lib/honeybadger/plugins/delayed_job/plugin.rb +2 -1
- data/lib/honeybadger/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a64e35ff1af6a153d47ace33e9deb9607283270a
|
|
4
|
+
data.tar.gz: 76a255050f47701a8fab262e9b2d972e6a6680d3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1df3f978cf46e05da8f3452c2962137da3bc49620f5a616677350909e2066a9e5979a8b2dff4b9b7eecc30528ff3ee2efe6d1a99610a261726ccfaa0585661dc
|
|
7
|
+
data.tar.gz: 6edfb61dafab6ad7e5fc8c62aa28137458a137570f8a6f9228f60a3b24446a44f6a623521d483e7363329834cd17f19efa3d13b33a56d13ceaadd7b1cf1212fa
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,10 @@ adheres to [Semantic Versioning](http://semver.org/).
|
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
+
## [2.7.2] - 2016-12-12
|
|
9
|
+
### Fixed
|
|
10
|
+
- Pass whole exception to `notify_or_ignore` (includes causes). -@CGamesPlay
|
|
11
|
+
|
|
8
12
|
## [2.7.1] - 2016-11-16
|
|
9
13
|
### Fixed
|
|
10
14
|
- Fix a Sinatra bug where `RACK_ENV` default was not used as default env.
|
|
@@ -41,7 +41,8 @@ module Honeybadger
|
|
|
41
41
|
:action => action,
|
|
42
42
|
:error_class => error.class.name,
|
|
43
43
|
:error_message => "#{ error.class.name }: #{ error.message }",
|
|
44
|
-
:backtrace => error.backtrace
|
|
44
|
+
:backtrace => error.backtrace,
|
|
45
|
+
:exception => error
|
|
45
46
|
) if job.attempts.to_i >= ::Honeybadger::Agent.config[:'delayed_job.attempt_threshold'].to_i
|
|
46
47
|
raise error
|
|
47
48
|
ensure
|
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: 2.7.
|
|
4
|
+
version: 2.7.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: 2016-
|
|
11
|
+
date: 2016-12-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Make managing application errors a more pleasant experience.
|
|
14
14
|
email:
|