bunny 2.12.1 → 2.13.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 +9 -2
- data/Gemfile +2 -2
- data/LICENSE +1 -1
- data/lib/bunny/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7bbe2d738194816f84deb5451620f03964043b78c5946cf21100553a05eb8c7e
|
|
4
|
+
data.tar.gz: f04991e27bfdc2b955996e64961426089cdbda120f9cf1bf50966cf139d3907a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aadf2c5075bba016a202c2ab936b82dd0b14bed7ffcade9cf9699b3580de85a59832de0eaf283facd01dcec1b89dd635277ea14c8d088a28fb8bf16430dbce1b
|
|
7
|
+
data.tar.gz: 95e47f4fd4e5901bd1f9747623534ce4c060c820b085c6803e73c3ec7363117a08763312725951169c1f8feea98294961c32215f956093febcebee6cd8e5bc34
|
data/ChangeLog.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
## Changes between Bunny 2.
|
|
1
|
+
## Changes between Bunny 2.13.0 and 2.14.0 (unreleased)
|
|
2
2
|
|
|
3
3
|
No changes yet.
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
## Changes between Bunny 2.12.0 and 2.
|
|
6
|
+
## Changes between Bunny 2.12.0 and 2.13.0 (Dec 25th, 2018)
|
|
7
7
|
|
|
8
8
|
### More Defensive `Bunny::Channel` Method(s)
|
|
9
9
|
|
|
@@ -19,6 +19,13 @@ connection could produce confusing log messages.
|
|
|
19
19
|
|
|
20
20
|
GitHub issue: [#569](https://github.com/ruby-amqp/bunny/issues/569)
|
|
21
21
|
|
|
22
|
+
### effin_utf8 Dependency Dropped
|
|
23
|
+
|
|
24
|
+
This library no longer supports Ruby 1.8 and thus
|
|
25
|
+
doesn't need to depend on the `effin_utf8` gem.
|
|
26
|
+
|
|
27
|
+
Contributed by Luciano Sousa.
|
|
28
|
+
|
|
22
29
|
|
|
23
30
|
## Changes between Bunny 2.11.0 and 2.12.0 (Sep 22nd, 2018)
|
|
24
31
|
|
data/Gemfile
CHANGED
|
@@ -34,8 +34,8 @@ group :development do
|
|
|
34
34
|
end
|
|
35
35
|
|
|
36
36
|
group :test do
|
|
37
|
-
gem "rspec", "~> 3.
|
|
38
|
-
gem "rabbitmq_http_api_client", "~> 1.
|
|
37
|
+
gem "rspec", "~> 3.8.0"
|
|
38
|
+
gem "rabbitmq_http_api_client", "~> 1.11.0", require: "rabbitmq/http/client"
|
|
39
39
|
gem "toxiproxy", "~> 1.0.3"
|
|
40
40
|
end
|
|
41
41
|
|
data/LICENSE
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
Copyright (c) 2009 –
|
|
1
|
+
Copyright (c) 2009 – 2018 Chris Duncan, Jakub Stastny aka botanicus,
|
|
2
2
|
Michael S. Klishin, Eric Lindvall, Stefan Kaes and contributors.
|
|
3
3
|
|
|
4
4
|
Permission is hereby granted, free of charge, to any person obtaining
|
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.
|
|
4
|
+
version: 2.13.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-12-
|
|
15
|
+
date: 2018-12-25 00:00:00.000000000 Z
|
|
16
16
|
dependencies:
|
|
17
17
|
- !ruby/object:Gem::Dependency
|
|
18
18
|
name: amq-protocol
|