bugsnag 1.5.1 → 1.5.2
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +8 -0
- data/VERSION +1 -1
- data/bugsnag.gemspec +2 -2
- data/lib/bugsnag/configuration.rb +1 -1
- metadata +3 -3
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,14 @@
|
|
1
1
|
Changelog
|
2
2
|
=========
|
3
3
|
|
4
|
+
1.5.2
|
5
|
+
-----
|
6
|
+
- Dont send rack.request.form_vars as it is a copy of form_hash and it may contain sensitive params.
|
7
|
+
|
8
|
+
1.5.1
|
9
|
+
-----
|
10
|
+
- Fix rake block arguments for tasks that need them.
|
11
|
+
|
4
12
|
1.5.0
|
5
13
|
-----
|
6
14
|
- Add proxy support for http requests to Bugsnag.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.5.
|
1
|
+
1.5.2
|
data/bugsnag.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{bugsnag}
|
8
|
-
s.version = "1.5.
|
8
|
+
s.version = "1.5.2"
|
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 = %q{2013-
|
12
|
+
s.date = %q{2013-09-16}
|
13
13
|
s.description = %q{Ruby notifier for bugsnag.com}
|
14
14
|
s.email = %q{james@bugsnag.com}
|
15
15
|
s.extra_rdoc_files = [
|
@@ -28,7 +28,7 @@ module Bugsnag
|
|
28
28
|
|
29
29
|
DEFAULT_ENDPOINT = "notify.bugsnag.com"
|
30
30
|
|
31
|
-
DEFAULT_PARAMS_FILTERS = ["password", "secret"].freeze
|
31
|
+
DEFAULT_PARAMS_FILTERS = ["password", "secret", "rack.request.form_vars"].freeze
|
32
32
|
|
33
33
|
DEFAULT_IGNORE_CLASSES = [
|
34
34
|
"ActiveRecord::RecordNotFound",
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 1
|
7
7
|
- 5
|
8
|
-
-
|
9
|
-
version: 1.5.
|
8
|
+
- 2
|
9
|
+
version: 1.5.2
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- James Smith
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2013-
|
17
|
+
date: 2013-09-16 00:00:00 -07:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|