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 +4 -4
- data/changelog.md +5 -1
- data/lib/raven/integrations/rails/controller_transaction.rb +1 -1
- 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: 5dbb5d7f816a729b6db4d0834a247c148e9d5868
|
|
4
|
+
data.tar.gz: 9831b2ba3a02c8a56256f7b88583557042f2aaf0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1cad74ac075c322f52948b47d492ebe8fd571886c14f30428ac0258632d0fc4a5f4f8869bf96c8633bc618616aa1beb1e141a9f83fe385cd143aa24b7c91cc98
|
|
7
|
+
data.tar.gz: 7545cb15e8e3afe85011d3608a80ccc34f864a32053f30e8f94707b91dff42f5da3ec4331ddccfe2735b5f72a65eb402be3e1a919137aeeaa6bada9c2ff6e526
|
data/changelog.md
CHANGED
|
@@ -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.
|
|
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
|
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.
|
|
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-
|
|
11
|
+
date: 2019-07-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|