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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1c15c502df9001bb1ec063fa41f0e61c881ac80f
4
- data.tar.gz: 57080f28afb4b25b20a197b2c18138c5babeb01e
3
+ metadata.gz: fec40c94f09ec1a59ff65e902db263a81659bf06
4
+ data.tar.gz: ecabd798af455fb73487bf088f2f34953d3e6a72
5
5
  SHA512:
6
- metadata.gz: 5ea8be6aa2319d3bf853620071b38057cf0f3d200de098fac7147b165324c25b777ad91f700babad93ab1b9ab07456baf0287f1ad463b7cf7efcb89feb0b43d3
7
- data.tar.gz: 21357ebd7d9781b2fcbdeacd5b31854a905a4f6bcdb07917d9519cd020d4a97b51a598df8b48bbaf7a4f283ed7f7cdeabcac011f6286905c5f0476f0345a7d9a
6
+ metadata.gz: c4a1714e037cf752a4785f0890c373e8cd26b12f4cdeba8f4587d6667fa0d5ae51423540747be59bface7dee44899f3720521ddc832c2a3cb8334d563d8f7b30
7
+ data.tar.gz: fb7074e6da4484b740d6e4a057d4a6f7ed0f9d4845a77d3e386cdde9f6dadc931087609adac51139e1cfbac9aee99d86afa95ada0a532b43e71e837547958fa1
@@ -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 are contributed by
22
- Andre Foeken (Nedap).
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 `0.8.x` and later versions only support RabbitMQ 2.x and 3.x.
62
- Bunny `0.7.x` and earlier versions support RabbitMQ 1.x and 2.x.
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
@@ -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.message}"
199
+ @logger.error "Uncaught exception from consumer #{consumer.to_s}: #{e.inspect} @ #{e.backtrace[0]}"
200
200
  end
201
201
  end
202
202
 
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Bunny
4
4
  # @return [String] Version of the library
5
- VERSION = "1.5.0.pre2"
5
+ VERSION = "1.5.0"
6
6
  end
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.pre2
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-30 00:00:00.000000000 Z
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: 1.3.1
230
+ version: '0'
231
231
  requirements: []
232
232
  rubyforge_project:
233
233
  rubygems_version: 2.2.2