sentry-raven 2.10.0 → 2.11.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 927d7ac628cc179de5612c00f675581ad51dbb2f
4
- data.tar.gz: 756bca786c1281cb206ad0858e4f35b9b781de7f
3
+ metadata.gz: 5dbb5d7f816a729b6db4d0834a247c148e9d5868
4
+ data.tar.gz: 9831b2ba3a02c8a56256f7b88583557042f2aaf0
5
5
  SHA512:
6
- metadata.gz: 31b1ef203a383a54d906c1ef51f916cef59481237d521868ca14b27870caa2f84ad2ceccb542f56ecb3f8cf4db9ed284851a8b12e16e417f49d2fea48e7f6116
7
- data.tar.gz: d4e4e2522209f80c35f8a7f7a68515d324ffb41d9341afcaf34cb3f45512cce4c52064336d39c45f0dba85cc961ac38ae1ce03fc413a1320cbd3897815874f70
6
+ metadata.gz: 1cad74ac075c322f52948b47d492ebe8fd571886c14f30428ac0258632d0fc4a5f4f8869bf96c8633bc618616aa1beb1e141a9f83fe385cd143aa24b7c91cc98
7
+ data.tar.gz: 7545cb15e8e3afe85011d3608a80ccc34f864a32053f30e8f94707b91dff42f5da3ec4331ddccfe2735b5f72a65eb402be3e1a919137aeeaa6bada9c2ff6e526
@@ -1,10 +1,14 @@
1
+ 2.11.0
2
+ ----
3
+
4
+ * FEATURE: Prepend the transaction around_action so libraries with controllers can alter the value. [@drcapulet, #887]
5
+
1
6
  2.10.0
2
7
  -----
3
8
 
4
9
  * FEATURE: Added support for `SENTRY_ENVIRONMENT` [@mtsmfm, #910]
5
10
  * FEATURE: Added support for `SENTRY_RELEASE` [@coorasse, #911]
6
11
 
7
-
8
12
  2.9.0
9
13
  -----
10
14
 
@@ -2,7 +2,7 @@ module Raven
2
2
  class Rails
3
3
  module ControllerTransaction
4
4
  def self.included(base)
5
- base.around_action do |controller, block|
5
+ base.prepend_around_action do |controller, block|
6
6
  Raven.context.transaction.push "#{controller.class}##{controller.action_name}"
7
7
  block.call
8
8
  Raven.context.transaction.pop
@@ -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.10.0" # rubocop:disable Style/MutableConstant
4
+ VERSION = "2.11.0" # 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.10.0
4
+ version: 2.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sentry Team
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-07-29 00:00:00.000000000 Z
11
+ date: 2019-07-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday