karafka 1.2.12 → 1.2.13

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: e5935dd3f3ddfc3d592bcdff859e63b4cee55b5b12ed3cdd49fdcc399aa32c47
4
- data.tar.gz: 1d4eee47f902cd65ebbe4025b52d799d58467f5102bc595f2f5d37fd0bbb4713
3
+ metadata.gz: d14a343dffbcc91c326964cc833bb82e9daedfdc4913eb6478c69e6caa5a995c
4
+ data.tar.gz: 14c3b5a9275dae6a5fb70790b4caf579cd2e1d9a6ac5d56307d950090012ec3d
5
5
  SHA512:
6
- metadata.gz: 8cdbbe2cf8bc790f6923f4cfc92902774a14d614f08f0f34e649bec6de1dae5444c4477957089de77e57328d48d85d2ac626a63ecf652aefbbf35977397ce2cc
7
- data.tar.gz: 3c15a030cb9f5cf2ce5cfc5d36213c637546e279803b4c0ff80565b9c4587e3172f8517a8c8fbd50ffe3867f9df3d4f43a582c00a0271ef1f39b2b8d0aa9141f
6
+ metadata.gz: 890c1b249d3457984c2c392dc1bed2413f36704d1268247bd67b2fa70cd3489370786a71e6be6804aa9dc1e02136bc92e97a338c917577929f2a8e0aabaf07bc
7
+ data.tar.gz: cf9a0043a4b82797bf0f6d36a8ba18c97702e22dd9fea25d5c1df13ca3b30b4255244d828e6cd3fba68807d2717209ae626d2a99a25f497a7e15b04d80168d6f
@@ -1,5 +1,8 @@
1
1
  # Karafka framework changelog
2
2
 
3
+ ## 1.2.13
4
+ - Add support for parameter sasl_over_ssl in ruby-kafka
5
+
3
6
  ## 1.2.12
4
7
  - #29 - Consumer class names must have the word "Consumer" in it in order to work (Sidekiq backend)
5
8
 
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- karafka (1.2.12)
4
+ karafka (1.2.13)
5
5
  activesupport (>= 4.0)
6
6
  dry-configurable (~> 0.8)
7
7
  dry-inflector (~> 0.1)
@@ -61,7 +61,7 @@ GEM
61
61
  dry-equalizer (~> 0.2)
62
62
  dry-inflector (~> 0.1, >= 0.1.2)
63
63
  dry-logic (~> 0.5, >= 0.5)
64
- dry-validation (0.13.1)
64
+ dry-validation (0.13.2)
65
65
  concurrent-ruby (~> 1.0)
66
66
  dry-configurable (~> 0.1, >= 0.1.3)
67
67
  dry-core (~> 0.2, >= 0.2.1)
@@ -92,7 +92,7 @@ GEM
92
92
  diff-lcs (>= 1.2.0, < 2.0)
93
93
  rspec-support (~> 3.8.0)
94
94
  rspec-support (3.8.0)
95
- ruby-kafka (0.7.6)
95
+ ruby-kafka (0.7.7)
96
96
  digest-crc
97
97
  simplecov (0.16.1)
98
98
  docile (~> 1.1)
@@ -69,6 +69,7 @@ module Karafka
69
69
  end
70
70
 
71
71
  optional(:ssl_ca_certs_from_system).maybe(:bool?)
72
+ optional(:sasl_over_ssl).maybe(:bool?)
72
73
 
73
74
  # It's not with other encryptions as it has some more rules
74
75
  optional(:sasl_scram_mechanism)
@@ -156,6 +156,8 @@ module Karafka
156
156
  setting :sasl_scram_password, nil
157
157
  # option sasl_scram_mechanism [String, nil] Scram mechanism, either 'sha256' or 'sha512'
158
158
  setting :sasl_scram_mechanism, nil
159
+ # option sasl_over_ssl [Boolean] whether to enforce SSL with SASL
160
+ setting :sasl_over_ssl, true
159
161
  end
160
162
 
161
163
  class << self
@@ -3,5 +3,5 @@
3
3
  # Main module namespace
4
4
  module Karafka
5
5
  # Current Karafka version
6
- VERSION = '1.2.12'
6
+ VERSION = '1.2.13'
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: karafka
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.12
4
+ version: 1.2.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Maciej Mensfeld
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2019-04-25 00:00:00.000000000 Z
13
+ date: 2019-05-19 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: activesupport