airbrake 5.2.0 → 5.2.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d2d01eb78c53daa5f75047fae8ebfef719ae17cd
4
- data.tar.gz: b5be2092bbe1304aa79004fd9eeef6e1efc00fc3
3
+ metadata.gz: 1486b2b695edb4e863a7900b1f7dc436bb2355ae
4
+ data.tar.gz: 4064c664bca7af580cd2c8a0417ef155087882e8
5
5
  SHA512:
6
- metadata.gz: 42b4ead5d9f8b085925857c6fad2af5f1d4401c84c3af9ba9093c09192411b7c213b89f3b39b38505e3626ee927c9acb57753f9da727060e562c53a8e52f0eee
7
- data.tar.gz: 060dfef2e740a6cc12913b52b67d77af920823b1f60dd15db564997f1b77aa26bc443e9caf98d7f7f1406f782a45b9e90976bd0f235e83180f5bd93985f3ec25
6
+ metadata.gz: 083999fbbdb4efb0038dac888b0615d83a5558736421fa6780b4d78346143eaa4bcaf6c505317c1da81cde1f8ff3291c4fa356c93e8725e6d3b94c0edb6e2015
7
+ data.tar.gz: 9ff19c311a916a3a867360912a09ca62b3293c8f5a5be7ad11d291f47e278a162a63a911dad5b2471a49af7e20013830325e4e15959c29af2aedda7849d20a50
@@ -2,5 +2,5 @@
2
2
  # We use Semantic Versioning v2.0.0
3
3
  # More information: http://semver.org/
4
4
  module Airbrake
5
- AIRBRAKE_VERSION = '5.2.0'.freeze
5
+ AIRBRAKE_VERSION = '5.2.1'.freeze
6
6
  end
@@ -50,12 +50,14 @@ Airbrake.configure do |c|
50
50
  # NOTE: This option *does not* work if you don't set the 'environment' option.
51
51
  # https://github.com/airbrake/airbrake-ruby#ignore_environments
52
52
  c.ignore_environments = %w(test)
53
- end
54
53
 
55
- # A list of parameters that should be filtered out of what is sent to Airbrake.
56
- # By default, all "password" attributes will have their contents replaced.
57
- # https://github.com/airbrake/airbrake-ruby#blacklist_keys
58
- Airbrake.blacklist_keys(/password/i)
54
+
55
+ # A list of parameters that should be filtered out of what is sent to
56
+ # Airbrake. By default, all "password" attributes will have their contents
57
+ # replaced.
58
+ # https://github.com/airbrake/airbrake-ruby#blacklist_keys
59
+ c.blacklist_keys = [/password/i]
60
+ end
59
61
 
60
62
  # If Airbrake doesn't send any expected exceptions, we suggest to uncomment the
61
63
  # line below. It might simplify debugging of background Airbrake workers, which
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: airbrake
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.2.0
4
+ version: 5.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Airbrake Technologies, Inc.