manageiq-messaging 1.3.0 → 1.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yaml +2 -2
- data/CHANGELOG.md +3 -0
- data/lib/manageiq/messaging/kafka/client.rb +2 -2
- data/lib/manageiq/messaging/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: 3f8b3657297bc2aea214185fdede2a72ca90380a0634537ab9f69589ff8e8436
|
4
|
+
data.tar.gz: f30f33edf031f670d60737626d9594e98b1d4c4c1dbcab19a0ab00c40dcc4d72
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 005aa8c8bca3572189dffff24779ea30dfe95f1ea5d556f02750bdfa46da3af3ba9ac8e15f1e8642a94eff815d042b09256da9b32adebac62d133a530a98229e
|
7
|
+
data.tar.gz: c9fd0f1b20a93fd8bb5259d8f8609125e99cebb522ecb917d8ef8b0e58cfe066c25bb592453fb4064eb7ef121e04679146eb2505be204c52fe3939ec851756dc
|
data/.github/workflows/ci.yaml
CHANGED
@@ -22,7 +22,7 @@ jobs:
|
|
22
22
|
TEST_RAILS_VERSION: ${{ matrix.rails-version }}
|
23
23
|
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
|
24
24
|
steps:
|
25
|
-
- uses: actions/checkout@
|
25
|
+
- uses: actions/checkout@v3
|
26
26
|
- name: Set up Ruby
|
27
27
|
uses: ruby/setup-ruby@v1
|
28
28
|
with:
|
@@ -34,4 +34,4 @@ jobs:
|
|
34
34
|
- name: Report code coverage
|
35
35
|
if: ${{ github.ref == 'refs/heads/master' && matrix.ruby-version == '3.0' && matrix.rails-version == '6.1' }}
|
36
36
|
continue-on-error: true
|
37
|
-
uses: paambaati/codeclimate-action@
|
37
|
+
uses: paambaati/codeclimate-action@v5
|
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.4.0] - 01-Sept-2023
|
10
|
+
* Add Kafka SASL mechanism options to client ([#80](https://github.com/ManageIQ/manageiq-messaging/pull/80))
|
11
|
+
|
9
12
|
## [1.3.0] - 03-Apr-2023
|
10
13
|
* Add Kafka SSL keystore options to client [#77](https://github.com/ManageIQ/manageiq-messaging/pull/77)
|
11
14
|
|
@@ -88,7 +88,7 @@ module ManageIQ
|
|
88
88
|
result = {:"bootstrap.servers" => hosts.join(',')}
|
89
89
|
result[:"client.id"] = options[:client_ref] if options[:client_ref]
|
90
90
|
|
91
|
-
result[:"sasl.mechanism"] = "PLAIN"
|
91
|
+
result[:"sasl.mechanism"] = options[:sasl_mechanism] || "PLAIN"
|
92
92
|
result[:"sasl.username"] = options[:username] if options[:username]
|
93
93
|
result[:"sasl.password"] = options[:password] if options[:password]
|
94
94
|
result[:"security.protocol"] = !!options[:ssl] ? "SASL_SSL" : "PLAINTEXT"
|
@@ -96,7 +96,7 @@ module ManageIQ
|
|
96
96
|
result[:"ssl.keystore.location"] = options[:keystore_location] if options[:keystore_location]
|
97
97
|
result[:"ssl.keystore.password"] = options[:keystore_password] if options[:keystore_password]
|
98
98
|
|
99
|
-
result.merge(options.except(:port, :host, :hosts, :encoding, :protocol, :client_ref, :username, :password, :ssl, :ca_file, :keystore_location, :keystore_password))
|
99
|
+
result.merge(options.except(:port, :host, :hosts, :encoding, :protocol, :client_ref, :sasl_mechanism, :username, :password, :ssl, :ca_file, :keystore_location, :keystore_password))
|
100
100
|
end
|
101
101
|
end
|
102
102
|
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.
|
4
|
+
version: 1.4.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: 2023-
|
11
|
+
date: 2023-09-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|