honeybadger 5.0.0 → 5.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/honeybadger/config/defaults.rb +2 -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: ce4d8e948a9b1aa7d8edf4b1e77767fc7909f5877b46788de9ef925c58face3b
|
4
|
+
data.tar.gz: 42a7d821dd8ce1d0f6d670e1f7391cd1fd5bfa310b57b2945516c008ade0e1cf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 55b094597032dab7dc362ae2f31ed35229ccfc1624abb314ceb9d1b52a0dd3ad6d2dda93965427559695de8161d95728fdba0c63878401493db2110d752e9d84
|
7
|
+
data.tar.gz: 92e37f0cf6da8732499bb0a4fc98d3f9e8b637a5c3d60d9ae5769e8028c59859367ca5f365dbc53de9bf6c3cc656ed0792090eaa7a0fea521dca4f54b1d469aa
|
data/CHANGELOG.md
CHANGED
@@ -5,6 +5,14 @@ adheres to [Semantic Versioning](http://semver.org/).
|
|
5
5
|
|
6
6
|
## [Unreleased]
|
7
7
|
|
8
|
+
## [5.0.1] - 2022-10-27
|
9
|
+
### Fixed
|
10
|
+
- Ignore `Sidekiq::JobRetry` skip exception. Since support was added for Rails 7
|
11
|
+
error reporting interface these exceptions are being reported in addition to
|
12
|
+
the exception that caused the job to be retried. Mike Perham says these
|
13
|
+
exceptions can safely be ignored.
|
14
|
+
See https://github.com/rails/rails/pull/43625#issuecomment-1071574110
|
15
|
+
|
8
16
|
## [5.0.0] - 2022-10-18
|
9
17
|
### Changed
|
10
18
|
- `Honeybadger.notify` is now idempotent; it will skip reporting exception
|
@@ -28,7 +28,8 @@ module Honeybadger
|
|
28
28
|
'Rack::QueryParser::InvalidParameterError',
|
29
29
|
'CGI::Session::CookieStore::TamperedWithCookie',
|
30
30
|
'Mongoid::Errors::DocumentNotFound',
|
31
|
-
'Sinatra::NotFound'
|
31
|
+
'Sinatra::NotFound',
|
32
|
+
'Sidekiq::JobRetry::Skip'].map(&:freeze).freeze
|
32
33
|
|
33
34
|
DEVELOPMENT_ENVIRONMENTS = ['development', 'test', 'cucumber'].map(&:freeze).freeze
|
34
35
|
|
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.0.
|
4
|
+
version: 5.0.1
|
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: 2022-10-
|
11
|
+
date: 2022-10-27 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Make managing application errors a more pleasant experience.
|
14
14
|
email:
|