manageiq-messaging 1.2.0 → 1.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cfe85cf657f8c2c1abbe3c4e89fbaddb02339972f0c93c2e325b5eadba10b456
4
- data.tar.gz: 5e28a2cc86fa33a89893cad6652aa20acd5af801f5061c5a2c0632668f1c94c8
3
+ metadata.gz: b0f15797e5132dab8e6e37ca495eb1c0018b665c853c9e042f472d7b6ff1fa8a
4
+ data.tar.gz: 26c517dac36367c0c1e707618f02c1ccc0622a0f4ba2cea585d84e9020fa1c00
5
5
  SHA512:
6
- metadata.gz: a20dad2e6813bdacfc24ebfb81a9edff1ae37156de353c307d8e403cb27915a4da928872feff00cb157fb8aa5539e67d024afc20c7ceaba79f68ea564cbbdd27
7
- data.tar.gz: 786daacf2af78548fe5695e38d36083b21e1c9bedfe13977d287a5b8f1ae5f22d58f5b379ca40144382873e08b120acb0bebf2835cfda0d7eee67e556c085aee
6
+ metadata.gz: 777d39d0123ffd98a5bdb5d7b1e82f7642089f12489ee56ccbe4463a01b8d5371c26b62663815ff3e8bcfdf213f08917bb3fd04154f137ff45039b425c441b60
7
+ data.tar.gz: 8e9002b7f3f4f60240baa7eb7ed1cfb3b8e1da6bc18830ff3d7edc98c0cd9f7bed2f24c3d6a514ecc067c0b78d637f5765897dc121c92f9cfa00aeb09b3dc984
data/CHANGELOG.md CHANGED
@@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [1.3.0] - 03-Apr-2023
10
+ * Add Kafka SSL keystore options to client [#77](https://github.com/ManageIQ/manageiq-messaging/pull/77)
11
+
9
12
  ## [1.2.0] - 19-Oct-2022
10
13
 
11
14
  * Add ssl and ca_file options to `Client.open` [#76](https://github.com/ManageIQ/manageiq-messaging/pull/76)
@@ -73,7 +76,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
73
76
 
74
77
  * Initial release
75
78
 
76
- [Unreleased]: https://github.com/ManageIQ/manageiq-messaging/compare/v1.1.1...HEAD
79
+ [Unreleased]: https://github.com/ManageIQ/manageiq-messaging/compare/v1.3.0...HEAD
80
+ [1.3.0]: https://github.com/ManageIQ/manageiq-messaging/compare/v1.2.0...v1.3.0
81
+ [1.2.0]: https://github.com/ManageIQ/manageiq-messaging/compare/v1.1.2...v1.2.0
82
+ [1.1.2]: https://github.com/ManageIQ/manageiq-messaging/compare/v1.1.1...v1.1.2
77
83
  [1.1.1]: https://github.com/ManageIQ/manageiq-messaging/compare/v1.1.0...v1.1.1
78
84
  [1.1.0]: https://github.com/ManageIQ/manageiq-messaging/compare/v1.0.3...v1.1.0
79
85
  [1.0.3]: https://github.com/ManageIQ/manageiq-messaging/compare/v1.0.2...v1.0.3
@@ -91,10 +91,12 @@ module ManageIQ
91
91
  result[:"sasl.mechanism"] = "PLAIN"
92
92
  result[:"sasl.username"] = options[:username] if options[:username]
93
93
  result[:"sasl.password"] = options[:password] if options[:password]
94
- result[:"ssl.ca.location"] = options[:ca_file] if options[:ca_file]
95
94
  result[:"security.protocol"] = !!options[:ssl] ? "SASL_SSL" : "PLAINTEXT"
95
+ result[:"ssl.ca.location"] = options[:ca_file] if options[:ca_file]
96
+ result[:"ssl.keystore.location"] = options[:keystore_location] if options[:keystore_location]
97
+ result[:"ssl.keystore.password"] = options[:keystore_password] if options[:keystore_password]
96
98
 
97
- result.merge(options.except(:port, :host, :hosts, :encoding, :protocol, :client_ref, :username, :password, :ssl, :ca_file))
99
+ result.merge(options.except(:port, :host, :hosts, :encoding, :protocol, :client_ref, :username, :password, :ssl, :ca_file, :keystore_location, :keystore_password))
98
100
  end
99
101
  end
100
102
  end
@@ -1,5 +1,5 @@
1
1
  module ManageIQ
2
2
  module Messaging
3
- VERSION = "1.2.0"
3
+ VERSION = "1.3.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: manageiq-messaging
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - ManageIQ Authors
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-10-19 00:00:00.000000000 Z
11
+ date: 2023-04-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport