sentry-raven 2.6.1 → 2.6.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 +8 -0
- data/lib/raven/integrations/rails/active_job.rb +3 -2
- data/lib/raven/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: e5313730cce508b69c1afd6644b18e93b3788a1a
|
4
|
+
data.tar.gz: 60e2dac36f17ac77751f25136b48f00cfc240bea
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a7fb908a5f7512332ef1a68d02c3d88f70fc3423623e0e120980de7ceac82f192f3ea54bf0d91acc94fb0a6c7c8ab61b4ace385257641d7ea4b0d90508a2d02b
|
7
|
+
data.tar.gz: 0d28fff5c9edab8b8684123ab7d2d0b7e20e70d37245985adc878df29b7a6ea434d2b01ec1c0fdca473714cce2f71de6604ffd7c32bd6164bc8e0f77a60697eb
|
data/changelog.md
CHANGED
@@ -1,3 +1,11 @@
|
|
1
|
+
2.6.2
|
2
|
+
-----
|
3
|
+
|
4
|
+
* BUGFIX: If using the Sidekiq or DelayedJob adapters with ActiveJob, ActiveJob wouldn't re-raise upon capturing an exception. [@nateberkopec, 5b02ad4ff2]
|
5
|
+
|
6
|
+
* KNOWN ISSUE: When using `async`, Rack integration is not thread-safe [#721]
|
7
|
+
* KNOWN ISSUE: When using `async`, encoding errors may be raised [#725]
|
8
|
+
|
1
9
|
2.6.1
|
2
10
|
-----
|
3
11
|
|
@@ -18,8 +18,9 @@ module Raven
|
|
18
18
|
block.call
|
19
19
|
rescue Exception => exception # rubocop:disable Lint/RescueException
|
20
20
|
return if rescue_with_handler(exception)
|
21
|
-
|
22
|
-
|
21
|
+
unless already_supported_by_specific_integration?(job)
|
22
|
+
Raven.capture_exception(exception, :extra => raven_context(job))
|
23
|
+
end
|
23
24
|
raise exception
|
24
25
|
ensure
|
25
26
|
Context.clear!
|
data/lib/raven/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sentry-raven
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.6.
|
4
|
+
version: 2.6.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sentry Team
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-08-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|