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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bddad506ff3cf646d188ee710760ba6264f892e2
4
- data.tar.gz: 8633350680a481c8244acc6c847994e087f0d278
3
+ metadata.gz: 5c2d922d9e09af55bfba8a9f96cdfe9fc8c0ea26
4
+ data.tar.gz: 7117d9a0997d8ff3fe9eb17b8928b3f27eef7e02
5
5
  SHA512:
6
- metadata.gz: c38e6e5ba79c33cd79bc2e8fea5c2be0a1f23dce82816e3962f22965f6e98ac51ff30aad75c6f59e8fc165629878dc00d83cf74fdba51deb4bbe7b0874f34bcb
7
- data.tar.gz: ca7f75991cec9ffa875c5e8a8870cba2e94433d63fe253971b21c0b3201a555046b0a6e68a416248b8c4ccdded30dc2aed2ed8e875fcec6a0960c8c142b5a766
6
+ metadata.gz: 667febed56aace33bc555dcdb20309b12432fd88e6d55822f43ab41d6a1cffd3849d2843de22a991e8405e169644fedc33f25e784f7afa6b5de1ea9529d50c8c
7
+ data.tar.gz: 3112ce586d32f5ebab2a9d3a7f98b11e9ccd116618f3b288ad0755e3e8a69c2ed0d7054170627763376ecb826e8086cd78db9e375af0f8104fbfa0c91cc48810
@@ -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
@@ -24,7 +24,7 @@ Gem::Specification.new do |s|
24
24
  s.email = ["michael.s.klishin@gmail.com"]
25
25
 
26
26
  # Dependencies
27
- s.add_dependency "amq-protocol", ">= 2.2.0"
27
+ s.add_dependency "amq-protocol", "~> 2.3.0"
28
28
 
29
29
  # Files.
30
30
  s.has_rdoc = true
@@ -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) || default_tls_certificates
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)
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Bunny
4
4
  # @return [String] Version of the library
5
- VERSION = "2.9.0"
5
+ VERSION = "2.9.1"
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.9.0
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-08 00:00:00.000000000 Z
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.2.0
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.2.0
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.13
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