sentry-raven 2.12.1 → 2.12.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: 7c9b03308911478719b68c2cf227e5e1dd92b86e
4
- data.tar.gz: a86012c5d37c22a8b195053dc40dcbe771a239ba
3
+ metadata.gz: bdc627591fb17683963ae291a87f94ead31ce93c
4
+ data.tar.gz: 19a6ba217e9c5808452c3c93e427f87d0a9120af
5
5
  SHA512:
6
- metadata.gz: 81ad38d7bcba6a3b3bb9186776158dbf3a8a9be8bb30d882701488f343f95b00450b66dc86515e6288c42c5f52f16e8054b5e5e8a1be4aa8645f8509e3f78552
7
- data.tar.gz: d40bcf4d9b5218cc959a2dc31cfb28dd5f74fda136b00ee51a7ce040f5cf84612adfb23cb050ce0fe67e59bdc28e67af3c95579e789f2332e6c4e032f2966f80
6
+ metadata.gz: 33c2a3c753ced3ce75cdd0c7899d392659570f71f740e8dd57b6c1c473c8fe004e67d828346093056770634063f5a9b676d661d1b44c488a531176bbf25ccbb1
7
+ data.tar.gz: de75d311c813b60c94f0ccbd1ba418c2e35c265fab61defda4028c2c3973a26b65484024d31212582f3e878f698e15b64572b3dea0f543f930c0675b4abdec3a
@@ -1,3 +1,8 @@
1
+ 2.12.2
2
+ ----
3
+
4
+ * FIX: return tags/extra for [@rivayama, #931]
5
+
1
6
  2.12.1
2
7
  ----
3
8
 
@@ -184,6 +184,7 @@ module Raven
184
184
  def tags_context(options = nil)
185
185
  context.tags.merge!(options || {})
186
186
  yield if block_given?
187
+ context.tags
187
188
  ensure
188
189
  context.tags.delete_if { |k, _| options.keys.include? k } if block_given?
189
190
  end
@@ -198,6 +199,7 @@ module Raven
198
199
  def extra_context(options = nil)
199
200
  context.extra.merge!(options || {})
200
201
  yield if block_given?
202
+ context.extra
201
203
  ensure
202
204
  context.extra.delete_if { |k, _| options.keys.include? k } if block_given?
203
205
  end
@@ -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.12.1" # rubocop:disable Style/MutableConstant
4
+ VERSION = "2.12.2" # rubocop:disable Style/MutableConstant
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sentry-raven
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.12.1
4
+ version: 2.12.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sentry Team