bunny 2.0.1 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f393384482cb5e911c71c192c961adbef6c48a8b
4
- data.tar.gz: 1ddb4e29292650bc3d1bff25b53b938cda35c44b
3
+ metadata.gz: 4c95090be1c7c3802f91e9bbde8a65145be46036
4
+ data.tar.gz: dba06fb978dcbdc3613e25dd6dc6d2ae6520e114
5
5
  SHA512:
6
- metadata.gz: 634808e10988e3211a875a6851886b4c33a191ea81d796193eecefe1b9603cdd2996f90ea55d7e156498cca3c35077606334abc788af2b2cec03755b77fe2b41
7
- data.tar.gz: 45ea52f14a6f5e1ded3418dadb897684c3052040d76ca1fed6a1680b9d5f3439cdd66063ac77e073304633ac2afb33648e00e39c0719559345b472ec685e068c
6
+ metadata.gz: 33990cab5ebb80edd6c95b33da3e1c1c572830acc8fa9a2d177340ca88fd9a40907c68507505736096eb8595d64ffa23fd560633d9f50edc3068e7ec55806035
7
+ data.tar.gz: 209a580762f599be1a69ba24c6aab533891a54f5e55f82920e258bb886205c0e96849ad165b2a4a86f9bd3aed6be71f21b9aa4ecc5e6201edfb310396bf1380e
@@ -1,4 +1,24 @@
1
- ## Changes between Bunny 2.0.0 and 2.0.1
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", ">= 1.7.0"
99
+ gem "bunny", ">= 2.0.1"
101
100
  ```
102
101
 
103
102
 
@@ -30,7 +30,7 @@ Gem::Specification.new do |s|
30
30
  map { |mail| Base64.decode64(mail) }
31
31
 
32
32
  # Dependencies
33
- s.add_dependency "amq-protocol", ">= 1.9.2"
33
+ s.add_dependency "amq-protocol", ">= 2.0.0"
34
34
 
35
35
  # Files.
36
36
  s.has_rdoc = true
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Bunny
4
4
  # @return [String] Version of the library
5
- VERSION = "2.0.1"
5
+ VERSION = "2.1.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: 2.0.1
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-07 00:00:00.000000000 Z
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: 1.9.2
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: 1.9.2
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.6
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