honeybadger 4.8.0 → 4.9.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 +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/honeybadger/agent.rb +3 -3
- data/lib/honeybadger/config/defaults.rb +1 -0
- data/lib/honeybadger/plugins/sidekiq.rb +6 -4
- 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: f4c153814c322b2ffbd8064199f37a30814ab57fd768803f379da3d42f4b2a85
|
4
|
+
data.tar.gz: 88586b69b9ca68cd26cf619a39aef833bb18e360c1c140f275e8dd78b3470fce
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5ef4ba277d6953369569fa01f3008ff772d80e4bb6aadddbfa27ab55e29791ef49ebd8a9e4643133e7f6eccb0536a55f8937263e49b69c0e376dbdb5ba09cff7
|
7
|
+
data.tar.gz: 9703e65ff2847ef0f91c701a70b9f4aaae04d9bbdd13d28ec1021673d0b7bd110cc7e45de028c162441d4a1b165c5bdb5c587da0698fd7b08a398308cab9bcf6
|
data/CHANGELOG.md
CHANGED
@@ -5,6 +5,12 @@ adheres to [Semantic Versioning](http://semver.org/).
|
|
5
5
|
|
6
6
|
## [Unreleased]
|
7
7
|
|
8
|
+
## [4.9.0] - 2021-06-28
|
9
|
+
- Added 'ActionDispatch::Http::MimeNegotiation::InvalidType' (Rails 6.1) to
|
10
|
+
default ignore list. (#402, @jrochkind)
|
11
|
+
- Replaced fixed number for retries in Sidekiq Plugin with Sidekiq::JobRetry constant
|
12
|
+
- Properly set environment in deployment tracking (#404, @stmllr)
|
13
|
+
|
8
14
|
## [4.8.0] - 2021-03-16
|
9
15
|
### Fixed
|
10
16
|
- Suppress any error output from the `git rev-parse` command. ([#394](https://github.com/honeybadger-io/honeybadger-ruby/pull/394))
|
data/lib/honeybadger/agent.rb
CHANGED
@@ -195,16 +195,16 @@ module Honeybadger
|
|
195
195
|
# @example
|
196
196
|
# Honeybadger.track_deployment(revision: 'be2ceb6')
|
197
197
|
#
|
198
|
-
# @param [String] :
|
198
|
+
# @param [String] :environment The environment name. Defaults to the current configured environment.
|
199
199
|
# @param [String] :revision The VCS revision being deployed. Defaults to the currently configured revision.
|
200
200
|
# @param [String] :local_username The name of the user who performed the deploy.
|
201
201
|
# @param [String] :repository The base URL of the VCS repository. It should be HTTPS-style.
|
202
202
|
#
|
203
203
|
# @return [Boolean] true if the deployment was successfully tracked and false
|
204
204
|
# otherwise.
|
205
|
-
def track_deployment(
|
205
|
+
def track_deployment(environment: nil, revision: nil, local_username: nil, repository: nil)
|
206
206
|
opts = {
|
207
|
-
|
207
|
+
environment: environment || config[:env],
|
208
208
|
revision: revision || config[:revision],
|
209
209
|
local_username: local_username,
|
210
210
|
repository: repository
|
@@ -23,6 +23,7 @@ module Honeybadger
|
|
23
23
|
'ActionController::ParameterMissing',
|
24
24
|
'ActiveRecord::RecordNotFound',
|
25
25
|
'ActionController::UnknownAction',
|
26
|
+
'ActionDispatch::Http::MimeNegotiation::InvalidType',
|
26
27
|
'Rack::QueryParser::ParameterTypeError',
|
27
28
|
'Rack::QueryParser::InvalidParameterError',
|
28
29
|
'CGI::Session::CookieStore::TamperedWithCookie',
|
@@ -5,7 +5,7 @@ module Honeybadger
|
|
5
5
|
module Plugins
|
6
6
|
module Sidekiq
|
7
7
|
class Middleware
|
8
|
-
def call(
|
8
|
+
def call(_worker, _msg, _queue)
|
9
9
|
Honeybadger.clear!
|
10
10
|
yield
|
11
11
|
end
|
@@ -23,7 +23,7 @@ module Honeybadger
|
|
23
23
|
|
24
24
|
if defined?(::Sidekiq::VERSION) && ::Sidekiq::VERSION > '3'
|
25
25
|
::Sidekiq.configure_server do |sidekiq|
|
26
|
-
sidekiq.error_handlers << lambda {|ex, params|
|
26
|
+
sidekiq.error_handlers << lambda { |ex, params|
|
27
27
|
job = params[:job] || params
|
28
28
|
job_retry = job['retry'.freeze]
|
29
29
|
|
@@ -37,13 +37,15 @@ module Honeybadger
|
|
37
37
|
attempt = retry_count ? retry_count + 1 : 0
|
38
38
|
|
39
39
|
# Ensure we account for modified max_retries setting
|
40
|
-
|
40
|
+
default_max_retry_attempts = defined?(::Sidekiq::JobRetry::DEFAULT_MAX_RETRY_ATTEMPTS) ? ::Sidekiq::JobRetry::DEFAULT_MAX_RETRY_ATTEMPTS : 25
|
41
|
+
retry_limit = job_retry == true ? (sidekiq.options[:max_retries] || default_max_retry_attempts) : job_retry.to_i
|
42
|
+
|
41
43
|
limit = [retry_limit, threshold].min
|
42
44
|
|
43
45
|
return if attempt < limit
|
44
46
|
end
|
45
47
|
|
46
|
-
opts = {parameters: params}
|
48
|
+
opts = { parameters: params }
|
47
49
|
if config[:'sidekiq.use_component']
|
48
50
|
opts[:component] = job['wrapped'.freeze] || job['class'.freeze]
|
49
51
|
opts[:action] = 'perform' if opts[:component]
|
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: 4.
|
4
|
+
version: 4.9.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: 2021-
|
11
|
+
date: 2021-06-28 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Make managing application errors a more pleasant experience.
|
14
14
|
email:
|