bunny 2.0.1 → 2.1.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 +21 -1
- data/README.md +1 -2
- data/bunny.gemspec +1 -1
- data/lib/bunny/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4c95090be1c7c3802f91e9bbde8a65145be46036
|
|
4
|
+
data.tar.gz: dba06fb978dcbdc3613e25dd6dc6d2ae6520e114
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 33990cab5ebb80edd6c95b33da3e1c1c572830acc8fa9a2d177340ca88fd9a40907c68507505736096eb8595d64ffa23fd560633d9f50edc3068e7ec55806035
|
|
7
|
+
data.tar.gz: 209a580762f599be1a69ba24c6aab533891a54f5e55f82920e258bb886205c0e96849ad165b2a4a86f9bd3aed6be71f21b9aa4ecc5e6201edfb310396bf1380e
|
data/ChangeLog.md
CHANGED
|
@@ -1,4 +1,24 @@
|
|
|
1
|
-
## Changes between Bunny 2.0.0 and 2.0
|
|
1
|
+
## Changes between Bunny 2.0.0 and 2.1.0
|
|
2
|
+
|
|
3
|
+
Bunny 2.1.0 has an **important breaking change**. It is highly
|
|
4
|
+
advised that 2.1.0 is not mixed with earlier versions of Bunny
|
|
5
|
+
in case your applications include **integers in message headers**.
|
|
6
|
+
|
|
7
|
+
### Integer Value Serialisation in Headers
|
|
8
|
+
|
|
9
|
+
Integer values in headers are now serialised as signed 64-bit integers. Previously
|
|
10
|
+
they were serialised as 32-bit unsigned integers, causing both underflows
|
|
11
|
+
and overflows: incorrect values were observed by consumers.
|
|
12
|
+
|
|
13
|
+
It is highly
|
|
14
|
+
advised that 2.1.0 is not mixed with earlier versions of Bunny
|
|
15
|
+
in case your applications include integers in message headers.
|
|
16
|
+
|
|
17
|
+
If that's not the case, Bunny 2.1 will integeroperate with any earlier version
|
|
18
|
+
starting with 0.9.0 just fine. Popular clients in other languages
|
|
19
|
+
(e.g. Java and .NET) will interoperate with Bunny 2.1.0 without
|
|
20
|
+
issues.
|
|
21
|
+
|
|
2
22
|
|
|
3
23
|
### Explicit Ruby 2.0 Requirement
|
|
4
24
|
|
data/README.md
CHANGED
|
@@ -49,7 +49,6 @@ Specific examples:
|
|
|
49
49
|
Modern Bunny versions support
|
|
50
50
|
|
|
51
51
|
* CRuby 2.2, 2.1, 2.0
|
|
52
|
-
* Rubinius 2.0+
|
|
53
52
|
|
|
54
53
|
Bunny works sufficiently well on JRuby but there are known
|
|
55
54
|
JRuby bugs that cause high CPU burn. JRuby users should
|
|
@@ -97,7 +96,7 @@ gem install bunny
|
|
|
97
96
|
To use Bunny in a project managed with Bundler:
|
|
98
97
|
|
|
99
98
|
``` ruby
|
|
100
|
-
gem "bunny", ">=
|
|
99
|
+
gem "bunny", ">= 2.0.1"
|
|
101
100
|
```
|
|
102
101
|
|
|
103
102
|
|
data/bunny.gemspec
CHANGED
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: 2.0
|
|
4
|
+
version: 2.1.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: 2015-08-
|
|
15
|
+
date: 2015-08-16 00:00:00.000000000 Z
|
|
16
16
|
dependencies:
|
|
17
17
|
- !ruby/object:Gem::Dependency
|
|
18
18
|
name: amq-protocol
|
|
@@ -20,14 +20,14 @@ dependencies:
|
|
|
20
20
|
requirements:
|
|
21
21
|
- - ">="
|
|
22
22
|
- !ruby/object:Gem::Version
|
|
23
|
-
version:
|
|
23
|
+
version: 2.0.0
|
|
24
24
|
type: :runtime
|
|
25
25
|
prerelease: false
|
|
26
26
|
version_requirements: !ruby/object:Gem::Requirement
|
|
27
27
|
requirements:
|
|
28
28
|
- - ">="
|
|
29
29
|
- !ruby/object:Gem::Version
|
|
30
|
-
version:
|
|
30
|
+
version: 2.0.0
|
|
31
31
|
description: Easy to use, feature complete Ruby client for RabbitMQ 3.3 and later
|
|
32
32
|
versions.
|
|
33
33
|
email:
|
|
@@ -232,7 +232,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
232
232
|
version: '0'
|
|
233
233
|
requirements: []
|
|
234
234
|
rubyforge_project:
|
|
235
|
-
rubygems_version: 2.4.
|
|
235
|
+
rubygems_version: 2.4.8
|
|
236
236
|
signing_key:
|
|
237
237
|
specification_version: 4
|
|
238
238
|
summary: Popular easy to use Ruby client for RabbitMQ
|