rollbar 0.9.11 → 0.9.12
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +3 -0
- data/THANKS.md +1 -0
- data/lib/rollbar/request_data_extractor.rb +1 -1
- data/lib/rollbar/version.rb +1 -1
- metadata +1 -1
data/CHANGELOG.md
CHANGED
data/THANKS.md
CHANGED
@@ -6,6 +6,7 @@ Huge thanks to the following contributors (by github username). For the most up-
|
|
6
6
|
- [dimko](https://github.com/dimko)
|
7
7
|
- [firstbanco](https://github.com/firstbanco)
|
8
8
|
- [ixti](https://github.com/ixti)
|
9
|
+
- [johnknott](https://github.com/johnknott)
|
9
10
|
- [JoshuaOSHickman](https://github.com/JoshuaOSHickman)
|
10
11
|
- [juggler](https://github.com/juggler)
|
11
12
|
- [kavu](https://github.com/kavu)
|
@@ -94,7 +94,7 @@ module Rollbar
|
|
94
94
|
if params.nil?
|
95
95
|
{}
|
96
96
|
else
|
97
|
-
params.inject({}) do |result, (key, value)|
|
97
|
+
params.to_hash.inject({}) do |result, (key, value)|
|
98
98
|
if sensitive_params.include?(key.to_sym)
|
99
99
|
result[key] = '*' * (value.length rescue 8)
|
100
100
|
elsif value.is_a?(Hash)
|
data/lib/rollbar/version.rb
CHANGED