appsignal 0.10.0 → 0.10.1

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.
@@ -1,3 +1,6 @@
1
+ # 0.10.1
2
+ * Bugfix in event payload sanitization
3
+
1
4
  # 0.10.0
2
5
  * Remove ActiveSupport dependency
3
6
  * Use vendored notifications if ActiveSupport is not present
@@ -116,7 +116,7 @@
116
116
  return if have_values_been_converted_to_primitives?
117
117
  Appsignal::Transaction::ParamsSanitizer.sanitize!(@process_action_event.payload) if @process_action_event
118
118
  @events.map do |o|
119
- Appsignal::Transaction::ParamsSanitizer.sanitize(o.payload)
119
+ Appsignal::Transaction::ParamsSanitizer.sanitize!(o.payload)
120
120
  end
121
121
  add_sanitized_context!
122
122
  @have_values_been_converted_to_primitives = true
@@ -1,3 +1,3 @@
1
1
  module Appsignal
2
- VERSION = '0.10.0'
2
+ VERSION = '0.10.1'
3
3
  end
@@ -273,7 +273,8 @@ describe Appsignal::Transaction do
273
273
  transaction.convert_values_to_primitives!
274
274
  end
275
275
 
276
- its([:weird]) { should be_a(Class) }
276
+ its([:weird]) { should be_a(String) }
277
+ its([:weird]) { should match(/#<Class:(.*)>/) }
277
278
  end
278
279
  end
279
280
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appsignal
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.10.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ authors:
13
13
  autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
- date: 2014-08-13 00:00:00.000000000 Z
16
+ date: 2014-08-14 00:00:00.000000000 Z
17
17
  dependencies:
18
18
  - !ruby/object:Gem::Dependency
19
19
  name: rack