bugsnag 2.6.0 → 2.6.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ef55d682c90467747f2be118b83bd3a85b156b1d
4
- data.tar.gz: 62d482b4c71148dfe0713ea33df2289bb1f5c1fb
3
+ metadata.gz: 03c6229af994d490629b40b1e38c22f2a60a9377
4
+ data.tar.gz: c854283dfae8b5eeb9028340fa08b90c1449c8f7
5
5
  SHA512:
6
- metadata.gz: 4a6af3d51710c9f736aaa59c99031f5e5a21e2b7da41182183cb4f06f3ae38fd61ce6993c460f304e35cc9398c7447b8f415c1e00da86a2fc08d0f0a42b28b7a
7
- data.tar.gz: 9c15c561756b5e4feda9c6b98910010f59850dad2788d5bd9ae7ba92d3181200855b54b4e60a9b6f53a0e80c075ee6fb2932b68ac5e71e5c68f70ff4d50ee595
6
+ metadata.gz: f3ed228a6c795b107f1d81d5e9d2dfcd2b29b5d73d3b9c988fc0547d439d1ce90997846e1a966e341acb53050aa2223e4ac1555c9c588e0aeddd3eb90c59c1c6
7
+ data.tar.gz: d35f27707d883e6b1b23f0c51ed5d15fbe013d249a40aac68707699d9c4678960a913e5e9af600d6e17e9d7a9bad52a92d51811bf5060e1758d939d55853dcf4
data/CHANGELOG.md CHANGED
@@ -1,6 +1,10 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ 2.6.1
5
+ -----
6
+ - Fix Ruby 1.8 payload delivery bug (thanks @colin!)
7
+
4
8
  2.6.0
5
9
  -----
6
10
  - Collect and send snippets of source code to Bugsnag
data/VERSION CHANGED
@@ -1 +1 @@
1
- 2.6.0
1
+ 2.6.1
@@ -14,7 +14,7 @@ module Bugsnag
14
14
  end
15
15
 
16
16
  # Add delivery to the worker thread
17
- queue.push proc { super }
17
+ queue.push proc { super(url, body) }
18
18
 
19
19
  # Make sure the worker thread is started
20
20
  ensure_worker_thread_started
data/spec/code_spec.rb CHANGED
@@ -83,14 +83,4 @@ describe Bugsnag::Notification do
83
83
  })
84
84
  }
85
85
  end
86
-
87
- it 'should not send any code from unreadable files' do
88
- eval("raise 'hell'", binding, "(eval)") rescue Bugsnag.notify $!
89
-
90
- expect(Bugsnag).to have_sent_notification{ |payload|
91
- exception = get_exception_from_payload(payload)
92
-
93
- expect(exception["stacktrace"][0]["code"]).to eq(nil)
94
- }
95
- end
96
86
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bugsnag
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.6.0
4
+ version: 2.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Smith
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-10 00:00:00.000000000 Z
11
+ date: 2014-12-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: multi_json