bugsnag 1.4.1 → 1.4.2

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.4.2
5
+ -----
6
+ - Add HTTP Referer to the request tab on rack apps
7
+
4
8
  1.4.0
5
9
  -----
6
10
  - Add ignore_user_agents to ignore certain user agents
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.4.0
1
+ 1.4.2
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "bugsnag"
8
- s.version = "1.4.1"
8
+ s.version = "1.4.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"]
@@ -29,6 +29,7 @@ module Bugsnag::Middleware
29
29
  :httpMethod => request.request_method,
30
30
  :params => params.to_hash,
31
31
  :userAgent => request.user_agent,
32
+ :referer => request.referer,
32
33
  :clientIp => request.ip
33
34
  })
34
35
 
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: 5
4
+ hash: 3
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 4
9
- - 1
10
- version: 1.4.1
9
+ - 2
10
+ version: 1.4.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - James Smith