bugsnag 5.3.0 → 5.3.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/resque.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2d5a488e4b2ee64fb1255d6ceec061668d7bb3d9
|
|
4
|
+
data.tar.gz: e2d3d528552bb7f8c8a0db8eb94a3502bf3f0aba
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5c808fd6e8c31d8b1e2c6a510f1561ae80f81ea110efe2dd580c41b299b632edaddf77c56a1a4a5d15e52658f1130fce9ee6e11d05ee835531deaf9d1065e20f
|
|
7
|
+
data.tar.gz: 29f8fbcecd75e1c60c98bb8fb5862fb6d15ccfbdb4748484a91c1c131405614b82cf64f4b9b725f7d3649dfa002e9f459277979cb678faa0b1cb1b2d9021352f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
+
## 5.3.1 (20 April 2017)
|
|
5
|
+
|
|
6
|
+
### Bug fixes
|
|
7
|
+
|
|
8
|
+
* [Resque] Fix error when creating a worker without a queue
|
|
9
|
+
| [Dean Galvin](https://github.com/FreekingDean)
|
|
10
|
+
| [#355](https://github.com/bugsnag/bugsnag-ruby/pull/355)
|
|
11
|
+
|
|
4
12
|
## 5.3.0 (07 April 2017)
|
|
5
13
|
|
|
6
14
|
### Enhancements
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
5.3.
|
|
1
|
+
5.3.1
|
data/lib/bugsnag/resque.rb
CHANGED
|
@@ -37,7 +37,7 @@ Resque::Failure::Bugsnag = Bugsnag::Resque
|
|
|
37
37
|
# Auto-load the failure backend
|
|
38
38
|
Bugsnag::Resque.add_failure_backend
|
|
39
39
|
|
|
40
|
-
if Resque::Worker.new.fork_per_job?
|
|
40
|
+
if Resque::Worker.new(:bugsnag_fork_check).fork_per_job?
|
|
41
41
|
Resque.after_fork do
|
|
42
42
|
Bugsnag.configuration.app_type = "resque"
|
|
43
43
|
Bugsnag.configuration.default_delivery_method = :synchronous
|
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.3.
|
|
4
|
+
version: 5.3.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: 2017-04-
|
|
11
|
+
date: 2017-04-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|