bugsnag 5.0.0 → 5.0.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/VERSION +1 -1
- data/lib/bugsnag/middleware/sidekiq.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 23cafc9f023e6c956fe901ba153135c7c6443247
|
|
4
|
+
data.tar.gz: 0f46e18ea6d4e69601e3c68038dd04be2b1316c9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 87006c230acdf61331523fda1d3245e5a527c03475d723e46748843a2f3992431514d426bed9e03364fc8a1711dcf8149fd95457630768943d128541157216eb
|
|
7
|
+
data.tar.gz: 5808f705aac760af3d681caffe5b4ff5a34b8f870ef3069a2374f280fe0df285f4b737fe95ebfb5d435db82fe006ffef60f1dde6555fe564e3a06f6fe0bf069e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
+
## 5.0.1 (7 September 2016)
|
|
5
|
+
|
|
6
|
+
### Bug fixes
|
|
7
|
+
|
|
8
|
+
* Show the job class name for Sidekiq jobs, not the wrapper class name
|
|
9
|
+
| [Simon Maynard](https://github.com/snmaynard)
|
|
10
|
+
| [#323](https://github.com/bugsnag/bugsnag-ruby/pull/323)
|
|
11
|
+
|
|
4
12
|
## 5.0.0 (23 August 2016)
|
|
5
13
|
|
|
6
14
|
### Enhancements
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
5.0.
|
|
1
|
+
5.0.1
|
|
@@ -8,7 +8,7 @@ module Bugsnag::Middleware
|
|
|
8
8
|
sidekiq = notification.request_data[:sidekiq]
|
|
9
9
|
if sidekiq
|
|
10
10
|
notification.add_tab(:sidekiq, sidekiq)
|
|
11
|
-
notification.context ||= "#{sidekiq[:msg]['
|
|
11
|
+
notification.context ||= "#{sidekiq[:msg]['wrapped'] || sidekiq[:msg]['class']}@#{sidekiq[:msg]['queue']}"
|
|
12
12
|
end
|
|
13
13
|
@bugsnag.call(notification)
|
|
14
14
|
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: 5.0.
|
|
4
|
+
version: 5.0.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: 2016-
|
|
11
|
+
date: 2016-09-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -188,7 +188,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
188
188
|
version: '0'
|
|
189
189
|
requirements: []
|
|
190
190
|
rubyforge_project:
|
|
191
|
-
rubygems_version: 2.
|
|
191
|
+
rubygems_version: 2.4.5
|
|
192
192
|
signing_key:
|
|
193
193
|
specification_version: 4
|
|
194
194
|
summary: Ruby notifier for bugsnag.com
|