bugsnag 1.3.5 → 1.3.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,10 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ 1.3.6
5
+ -----
6
+ - Filter out meta-data keys containing the word 'secret' by default
7
+
4
8
  1.3.5
5
9
  -----
6
10
  - Fixed bug in rake integration with ruby 1.9 hash syntax
data/README.md CHANGED
@@ -275,13 +275,13 @@ config.app_version = "2.5.1"
275
275
  Sets the strings to filter out from the `params` hashes before sending
276
276
  them to Bugsnag. Use this if you want to ensure you don't send
277
277
  sensitive data such as passwords, and credit card numbers to our
278
- servers. Any keys which contain these strings will be filtered.
278
+ servers. Any keys which *contain* these strings will be filtered.
279
279
 
280
280
  ```ruby
281
281
  config.params_filters << "credit_card_number"
282
282
  ```
283
283
 
284
- By default, `params_filters` is set to `["password", "password_confirmation"]`
284
+ By default, `params_filters` is set to `["password", "secret"]`
285
285
 
286
286
  ###ignore_classes
287
287
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.3.5
1
+ 1.3.6
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "bugsnag"
8
- s.version = "1.3.5"
8
+ s.version = "1.3.6"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["James Smith"]
12
- s.date = "2013-04-30"
12
+ s.date = "2013-05-02"
13
13
  s.description = "Ruby notifier for bugsnag.com"
14
14
  s.email = "james@bugsnag.com"
15
15
  s.extra_rdoc_files = [
@@ -23,7 +23,7 @@ module Bugsnag
23
23
 
24
24
  DEFAULT_ENDPOINT = "notify.bugsnag.com"
25
25
 
26
- DEFAULT_PARAMS_FILTERS = ["password"].freeze
26
+ DEFAULT_PARAMS_FILTERS = ["password", "secret"].freeze
27
27
 
28
28
  DEFAULT_IGNORE_CLASSES = [
29
29
  "ActiveRecord::RecordNotFound",
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bugsnag
3
3
  version: !ruby/object:Gem::Version
4
- hash: 17
4
+ hash: 23
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 3
9
- - 5
10
- version: 1.3.5
9
+ - 6
10
+ version: 1.3.6
11
11
  platform: ruby
12
12
  authors:
13
13
  - James Smith
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2013-04-30 00:00:00 Z
18
+ date: 2013-05-02 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  requirement: &id001 !ruby/object:Gem::Requirement