sbmt-kafka_producer 3.2.0 → 3.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Appraisals +2 -1
- data/CHANGELOG.md +12 -0
- data/Gemfile +1 -1
- data/README.md +12 -0
- data/lib/sbmt/kafka_producer/config/producer.rb +2 -2
- data/lib/sbmt/kafka_producer/railtie.rb +1 -1
- data/lib/sbmt/kafka_producer/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3ea0a004bfc52e8ea17147e3790736b3a11a872a3f07e8c0d116f556e16d1547
|
4
|
+
data.tar.gz: a564730ca23fe349b675781d4c3baf2ba176b29276fb5898f6f4375f4ac3ff37
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ad63b11408ba5e6cf902ed147cafcb36f384e59ba3464b70497f3cf14fe34527dd4e7ce9a0ec2e286839eb108c3c4e5163a225f7547712e8da1a747740a757ec
|
7
|
+
data.tar.gz: 224a37380c9a438b2bff12a98b75b4e61bcec1b35acd6301c47aca446a885359b0ea8054d39c417c4c42764ed28083cc4bc313072dd686e506769b10a8227704
|
data/Appraisals
CHANGED
data/CHANGELOG.md
CHANGED
@@ -13,6 +13,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
13
13
|
|
14
14
|
### Fixed
|
15
15
|
|
16
|
+
## [3.2.2] - 2025-01-27
|
17
|
+
|
18
|
+
### Fixed
|
19
|
+
|
20
|
+
- Kafka configuration was overwritten with the default authorization options (#2)
|
21
|
+
|
22
|
+
## [3.2.1] - 2024-12-26
|
23
|
+
|
24
|
+
### Fixed
|
25
|
+
|
26
|
+
- Fix initialize yabeda metrics
|
27
|
+
|
16
28
|
## [3.2.0] - 2024-11-22
|
17
29
|
|
18
30
|
### Changed
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -106,6 +106,18 @@ auth:
|
|
106
106
|
sasl_mechanism: SCRAM-SHA-512
|
107
107
|
```
|
108
108
|
|
109
|
+
If you need to use another variant, use the low-level custom Kafka options `kafka_config:` of `config/kafka_producer.yml`. These options will overwrite the options in the auth section.
|
110
|
+
|
111
|
+
Example of SASL_SSL protocol auth via `kafka_config`:
|
112
|
+
|
113
|
+
```yaml
|
114
|
+
kafka_config:
|
115
|
+
security.protocol: SASL_SSL
|
116
|
+
sasl.username: user
|
117
|
+
sasl.password: pwd
|
118
|
+
ssl.ca.pem: ca_cert
|
119
|
+
sasl.mechanism: SCRAM-SHA-512
|
120
|
+
```
|
109
121
|
### `kafka` config section
|
110
122
|
|
111
123
|
The `servers` key is required and should be in rdkafka format: without `kafka://` prefix, for example: `srv1:port1,srv2:port2,...`.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sbmt-kafka_producer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.2.
|
4
|
+
version: 3.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kuper Ruby-Platform Team
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-01-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: anyway_config
|
@@ -426,7 +426,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
426
426
|
- !ruby/object:Gem::Version
|
427
427
|
version: '0'
|
428
428
|
requirements: []
|
429
|
-
rubygems_version: 3.
|
429
|
+
rubygems_version: 3.5.21
|
430
430
|
signing_key:
|
431
431
|
specification_version: 4
|
432
432
|
summary: Ruby gem for producing Kafka messages
|