sentry-raven 2.6.1 → 2.6.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 492ac8036f2f1a02ec925196ee01e9e7a8719a0e
4
- data.tar.gz: 15769839c7060ad049168680b620fb58f9faa1f5
3
+ metadata.gz: e5313730cce508b69c1afd6644b18e93b3788a1a
4
+ data.tar.gz: 60e2dac36f17ac77751f25136b48f00cfc240bea
5
5
  SHA512:
6
- metadata.gz: 765c2b840c6b5741be982ef814f907dc214aa77625487856a829e7365748d474ed4d058b46fb29d2afef184de3c0e70e29f87c3504ee518c704d629d57a2389b
7
- data.tar.gz: 147881f36841706e57863f9a27f01b289a9207dc14360fd29018c8dd4caba6b8d5adbdeaf783748a5f2fc6e8b1db46341b5b77a7fa420306b2a8b44d76feced4
6
+ metadata.gz: a7fb908a5f7512332ef1a68d02c3d88f70fc3423623e0e120980de7ceac82f192f3ea54bf0d91acc94fb0a6c7c8ab61b4ace385257641d7ea4b0d90508a2d02b
7
+ data.tar.gz: 0d28fff5c9edab8b8684123ab7d2d0b7e20e70d37245985adc878df29b7a6ea434d2b01ec1c0fdca473714cce2f71de6604ffd7c32bd6164bc8e0f77a60697eb
@@ -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
- return if already_supported_by_specific_integration?(job)
22
- Raven.capture_exception(exception, :extra => raven_context(job))
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!
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
  module Raven
3
3
  # Freezing this constant breaks in 1.9.x
4
- VERSION = "2.6.1" # rubocop:disable Style/MutableConstant
4
+ VERSION = "2.6.2" # rubocop:disable Style/MutableConstant
5
5
  end
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.1
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-07-31 00:00:00.000000000 Z
11
+ date: 2017-08-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday