honeybadger 5.0.0 → 5.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/lib/honeybadger/backend/test.rb +1 -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: 807947f2bfdd4fac0c50e1665b0538eb42e5811f30903b7f9e6e19cacc5e999b
|
4
|
+
data.tar.gz: 1e3b8f5e462963083a41e336378d2e8a25a6efadf70e5216992be5e2517f814c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0dad8d9da2e9a648796ad3cedc58fadc7f5c1144e4b0985556f7dbba92348ee36b08073fb8d67a0b1ff2920c12b853b8b937b80f1f351fd172348fd3119f9dc0
|
7
|
+
data.tar.gz: f5c7cc958c542c60a85abe624e6625fe30e449e6d3bef6760f05a8218134ea92b74b6c982460739d828069aa17e21cb6303adb5e6568699543099587c406fb9c
|
data/CHANGELOG.md
CHANGED
@@ -5,6 +5,18 @@ adheres to [Semantic Versioning](http://semver.org/).
|
|
5
5
|
|
6
6
|
## [Unreleased]
|
7
7
|
|
8
|
+
## [5.0.2] - 2022-11-04
|
9
|
+
### Fixed
|
10
|
+
- `Honeybadger.check_in` would raise an exception when used with the test backend (#449)
|
11
|
+
|
12
|
+
## [5.0.1] - 2022-10-27
|
13
|
+
### Fixed
|
14
|
+
- Ignore `Sidekiq::JobRetry` skip exception. Since support was added for Rails 7
|
15
|
+
error reporting interface these exceptions are being reported in addition to
|
16
|
+
the exception that caused the job to be retried. Mike Perham says these
|
17
|
+
exceptions can safely be ignored.
|
18
|
+
See https://github.com/rails/rails/pull/43625#issuecomment-1071574110
|
19
|
+
|
8
20
|
## [5.0.0] - 2022-10-18
|
9
21
|
### Changed
|
10
22
|
- `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.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: 2022-
|
11
|
+
date: 2022-11-04 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Make managing application errors a more pleasant experience.
|
14
14
|
email:
|