bunny 2.9.0 → 2.9.1
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 +14 -0
- data/bunny.gemspec +1 -1
- data/lib/bunny/transport.rb +2 -1
- data/lib/bunny/version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5c2d922d9e09af55bfba8a9f96cdfe9fc8c0ea26
|
|
4
|
+
data.tar.gz: 7117d9a0997d8ff3fe9eb17b8928b3f27eef7e02
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 667febed56aace33bc555dcdb20309b12432fd88e6d55822f43ab41d6a1cffd3849d2843de22a991e8405e169644fedc33f25e784f7afa6b5de1ea9529d50c8c
|
|
7
|
+
data.tar.gz: 3112ce586d32f5ebab2a9d3a7f98b11e9ccd116618f3b288ad0755e3e8a69c2ed0d7054170627763376ecb826e8086cd78db9e375af0f8104fbfa0c91cc48810
|
data/ChangeLog.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## Changes between Bunny 2.9.1 and 2.9.2 (unreleased)
|
|
2
|
+
|
|
3
|
+
No changes yet.
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
## Changes between Bunny 2.9.0 and 2.9.1 (Jan 11th, 2018)
|
|
7
|
+
|
|
8
|
+
### Default CA Certificate Paths are Respected Again
|
|
9
|
+
|
|
10
|
+
GitHub issue: [#539](https://github.com/ruby-amqp/bunny/issues/539).
|
|
11
|
+
|
|
12
|
+
Contributed by Carl Hörberg.
|
|
13
|
+
|
|
14
|
+
|
|
1
15
|
## Changes between Bunny 2.8.0 and 2.9.0 (Jan 8th, 2018)
|
|
2
16
|
|
|
3
17
|
### Ruby 2.2 Requirement
|
data/bunny.gemspec
CHANGED
data/lib/bunny/transport.rb
CHANGED
|
@@ -353,7 +353,8 @@ module Bunny
|
|
|
353
353
|
@tls_key = tls_key_from(opts)
|
|
354
354
|
@tls_certificate_store = opts[:tls_certificate_store]
|
|
355
355
|
|
|
356
|
-
@tls_ca_certificates = tls_ca_certificates_paths_from(opts)
|
|
356
|
+
@tls_ca_certificates = tls_ca_certificates_paths_from(opts)
|
|
357
|
+
@tls_ca_certificates = default_tls_certificates if @tls_ca_certificates.empty?
|
|
357
358
|
@verify_peer = as_boolean(opts[:verify_ssl] || opts[:verify_peer] || opts[:verify])
|
|
358
359
|
|
|
359
360
|
@tls_context = initialize_tls_context(OpenSSL::SSL::SSLContext.new, opts)
|
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.9.
|
|
4
|
+
version: 2.9.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chris Duncan
|
|
@@ -12,22 +12,22 @@ authors:
|
|
|
12
12
|
autorequire:
|
|
13
13
|
bindir: bin
|
|
14
14
|
cert_chain: []
|
|
15
|
-
date: 2018-01-
|
|
15
|
+
date: 2018-01-11 00:00:00.000000000 Z
|
|
16
16
|
dependencies:
|
|
17
17
|
- !ruby/object:Gem::Dependency
|
|
18
18
|
name: amq-protocol
|
|
19
19
|
requirement: !ruby/object:Gem::Requirement
|
|
20
20
|
requirements:
|
|
21
|
-
- - "
|
|
21
|
+
- - "~>"
|
|
22
22
|
- !ruby/object:Gem::Version
|
|
23
|
-
version: 2.
|
|
23
|
+
version: 2.3.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: 2.
|
|
30
|
+
version: 2.3.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.6.
|
|
235
|
+
rubygems_version: 2.6.11
|
|
236
236
|
signing_key:
|
|
237
237
|
specification_version: 4
|
|
238
238
|
summary: Popular easy to use Ruby client for RabbitMQ
|