bunny 2.12.0.rc1 → 2.12.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 +6 -1
- data/README.md +2 -2
- data/lib/bunny/version.rb +1 -1
- data/spec/higher_level_api/integration/connection_recovery_spec.rb +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 24b8d9a2421af8117f8f4f1d51949cc990823754e360efd718f7f4f3b9fa3564
|
|
4
|
+
data.tar.gz: 81757ab16c040ef1fdd69a9f602845c16e3d42725cbe229e0fa76c6bf9911376
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4fa2762642da8b0a916832425605a11e76fd4451b3996eaa7a947a41161597f0353b3be7ba860ca86a63a35820356dccc6f3b050e24d5577b4ae1e53a55e2d17
|
|
7
|
+
data.tar.gz: 461ab750880c2767ddaea80927a0154b9ea7d6da5c15aec4a3ad0f1d2177ffb3e77fa89a92c106c61669376a9164cbd8e86fdc460c6780177f7f854b45773b49
|
data/ChangeLog.md
CHANGED
|
@@ -1,4 +1,9 @@
|
|
|
1
|
-
## Changes between Bunny 2.
|
|
1
|
+
## Changes between Bunny 2.12.0 and 2.13.0 (unreleased)
|
|
2
|
+
|
|
3
|
+
No changes yet.
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
## Changes between Bunny 2.11.0 and 2.12.0 (Sep 22nd, 2018)
|
|
2
7
|
|
|
3
8
|
### More Defensive Treatment of `queue.declare-ok` Responses
|
|
4
9
|
|
data/README.md
CHANGED
|
@@ -71,9 +71,9 @@ a stable public API.
|
|
|
71
71
|
Change logs per release series:
|
|
72
72
|
|
|
73
73
|
* [master](https://github.com/ruby-amqp/bunny/blob/master/ChangeLog.md)
|
|
74
|
+
* [2.12.x](https://github.com/ruby-amqp/bunny/blob/2.12.x-stable/ChangeLog.md)
|
|
74
75
|
* [2.11.x](https://github.com/ruby-amqp/bunny/blob/2.11.x-stable/ChangeLog.md)
|
|
75
76
|
* [2.10.x](https://github.com/ruby-amqp/bunny/blob/2.10.x-stable/ChangeLog.md)
|
|
76
|
-
* [2.9.x](https://github.com/ruby-amqp/bunny/blob/2.9.x-stable/ChangeLog.md)
|
|
77
77
|
|
|
78
78
|
|
|
79
79
|
|
|
@@ -96,7 +96,7 @@ gem install bunny
|
|
|
96
96
|
To use Bunny in a project managed with Bundler:
|
|
97
97
|
|
|
98
98
|
``` ruby
|
|
99
|
-
gem "bunny", ">= 2.
|
|
99
|
+
gem "bunny", ">= 2.12.0"
|
|
100
100
|
```
|
|
101
101
|
|
|
102
102
|
|
data/lib/bunny/version.rb
CHANGED
|
@@ -221,7 +221,7 @@ describe "Connection recovery" do
|
|
|
221
221
|
|
|
222
222
|
close_all_connections!
|
|
223
223
|
|
|
224
|
-
wait_for_recovery_with { exchange_names_in_vhost("/").include?(source.name) }
|
|
224
|
+
wait_for_recovery_with { connections.any? && exchange_names_in_vhost("/").include?(source.name) }
|
|
225
225
|
ch.confirm_select
|
|
226
226
|
|
|
227
227
|
source.publish("msg", routing_key: "")
|
|
@@ -284,7 +284,7 @@ describe "Connection recovery" do
|
|
|
284
284
|
|
|
285
285
|
close_all_connections!
|
|
286
286
|
|
|
287
|
-
wait_for_recovery_with { exchange_names_in_vhost("/").include?(source.name) }
|
|
287
|
+
wait_for_recovery_with { connections.any? && exchange_names_in_vhost("/").include?(source.name) }
|
|
288
288
|
|
|
289
289
|
ch2.confirm_select
|
|
290
290
|
|
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: 2.12.0
|
|
4
|
+
version: 2.12.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: 2018-09-
|
|
15
|
+
date: 2018-09-22 00:00:00.000000000 Z
|
|
16
16
|
dependencies:
|
|
17
17
|
- !ruby/object:Gem::Dependency
|
|
18
18
|
name: amq-protocol
|
|
@@ -236,9 +236,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
236
236
|
version: '2.2'
|
|
237
237
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
238
238
|
requirements:
|
|
239
|
-
- - "
|
|
239
|
+
- - ">="
|
|
240
240
|
- !ruby/object:Gem::Version
|
|
241
|
-
version:
|
|
241
|
+
version: '0'
|
|
242
242
|
requirements: []
|
|
243
243
|
rubyforge_project:
|
|
244
244
|
rubygems_version: 2.7.7
|