bunny 1.5.0.pre2 → 1.5.0
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 +15 -2
- data/README.md +2 -2
- data/lib/bunny/channel.rb +1 -1
- data/lib/bunny/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fec40c94f09ec1a59ff65e902db263a81659bf06
|
|
4
|
+
data.tar.gz: ecabd798af455fb73487bf088f2f34953d3e6a72
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c4a1714e037cf752a4785f0890c373e8cd26b12f4cdeba8f4587d6667fa0d5ae51423540747be59bface7dee44899f3720521ddc832c2a3cb8334d563d8f7b30
|
|
7
|
+
data.tar.gz: fb7074e6da4484b740d6e4a057d4a6f7ed0f9d4845a77d3e386cdde9f6dadc931087609adac51139e1cfbac9aee99d86afa95ada0a532b43e71e837547958fa1
|
data/ChangeLog.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
## Changes between Bunny 1.4.0 and 1.5.0
|
|
2
2
|
|
|
3
|
+
### Improved Uncaught Exception Handler
|
|
4
|
+
|
|
5
|
+
Uncaught exception handler now provides more information about the exception,
|
|
6
|
+
including its caller (one more stack trace line).
|
|
7
|
+
|
|
8
|
+
Contributed by Carl Hörberg (CloudAMQP).
|
|
9
|
+
|
|
10
|
+
|
|
3
11
|
### Convenience Method for Temporary (Server-named, Exclusive) Queue Declaration
|
|
4
12
|
|
|
5
13
|
`Bunny::Channel#temporary_queue` is a convenience method that declares a new
|
|
@@ -11,6 +19,10 @@ q = ch.temporary_queue
|
|
|
11
19
|
|
|
12
20
|
Contributed by Daniel Schierbeck (Zendesk).
|
|
13
21
|
|
|
22
|
+
### Recovery Reliability Improvements
|
|
23
|
+
|
|
24
|
+
Automatic connection recovery robustness improvements.
|
|
25
|
+
Contributed by Andre Foeken (Nedap).
|
|
14
26
|
|
|
15
27
|
### Host Lists
|
|
16
28
|
|
|
@@ -18,8 +30,9 @@ It is now possible to pass the `:hosts` option to `Bunny.new`/`Bunny::Session#in
|
|
|
18
30
|
When connection to RabbitMQ (including during connection recovery), a random host
|
|
19
31
|
will be chosen from the list.
|
|
20
32
|
|
|
21
|
-
Connection shuffling and robustness improvements
|
|
22
|
-
|
|
33
|
+
Connection shuffling and robustness improvements.
|
|
34
|
+
|
|
35
|
+
Contributed by Andre Foeken (Nedap).
|
|
23
36
|
|
|
24
37
|
|
|
25
38
|
## Changes between Bunny 1.3.0 and 1.4.0
|
data/README.md
CHANGED
|
@@ -58,8 +58,8 @@ use [March Hare](http://rubymarchhare.info).
|
|
|
58
58
|
|
|
59
59
|
## Supported RabbitMQ Versions
|
|
60
60
|
|
|
61
|
-
Bunny `
|
|
62
|
-
Bunny `
|
|
61
|
+
Bunny `1.5.0` (including previews) and later versions only support RabbitMQ `3.2+`.
|
|
62
|
+
Bunny `1.4.x` and supports RabbitMQ 2.x and 3.x.
|
|
63
63
|
|
|
64
64
|
|
|
65
65
|
## Project Maturity
|
data/lib/bunny/channel.rb
CHANGED
|
@@ -196,7 +196,7 @@ module Bunny
|
|
|
196
196
|
|
|
197
197
|
@recoveries_counter = Bunny::Concurrent::AtomicFixnum.new(0)
|
|
198
198
|
@uncaught_exception_handler = Proc.new do |e, consumer|
|
|
199
|
-
@logger.error "Uncaught exception from consumer #{consumer.to_s}: #{e.
|
|
199
|
+
@logger.error "Uncaught exception from consumer #{consumer.to_s}: #{e.inspect} @ #{e.backtrace[0]}"
|
|
200
200
|
end
|
|
201
201
|
end
|
|
202
202
|
|
data/lib/bunny/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bunny
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.5.0
|
|
4
|
+
version: 1.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chris Duncan
|
|
@@ -12,7 +12,7 @@ authors:
|
|
|
12
12
|
autorequire:
|
|
13
13
|
bindir: bin
|
|
14
14
|
cert_chain: []
|
|
15
|
-
date: 2014-09
|
|
15
|
+
date: 2014-10-09 00:00:00.000000000 Z
|
|
16
16
|
dependencies:
|
|
17
17
|
- !ruby/object:Gem::Dependency
|
|
18
18
|
name: amq-protocol
|
|
@@ -225,9 +225,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
225
225
|
version: '0'
|
|
226
226
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
227
227
|
requirements:
|
|
228
|
-
- - '
|
|
228
|
+
- - '>='
|
|
229
229
|
- !ruby/object:Gem::Version
|
|
230
|
-
version:
|
|
230
|
+
version: '0'
|
|
231
231
|
requirements: []
|
|
232
232
|
rubyforge_project:
|
|
233
233
|
rubygems_version: 2.2.2
|