karafka 1.4.3 → 1.4.7
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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data/.github/workflows/ci.yml +0 -1
- data/.ruby-version +1 -1
- data/CHANGELOG.md +16 -0
- data/Gemfile.lock +29 -29
- data/README.md +0 -2
- data/certs/mensfeld.pem +21 -21
- data/karafka.gemspec +2 -3
- data/lib/karafka/connection/api_adapter.rb +5 -6
- data/lib/karafka/connection/client.rb +2 -1
- data/lib/karafka/instrumentation/logger.rb +5 -9
- data/lib/karafka/instrumentation/stdout_listener.rb +2 -2
- data/lib/karafka/setup/config.rb +3 -0
- data/lib/karafka/templates/karafka.rb.erb +1 -1
- data/lib/karafka/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +27 -41
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1dbb752f67f40e11341c825044cb3f2fbde78b20a66f77efe854bb221e9804b5
|
|
4
|
+
data.tar.gz: 721e4bc2c09ffdb3fc51381eae7fd1f4bfe254e6b389e605bb86f5e0d9e98bcb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5c4cc09b1d988e6367d2548438939017ffb6602ca739d8f1efed23888ca723e01268de3d2ea30dbc8ecca39622be9abebfdea1fbc97fbf53314cd68c1575cc31
|
|
7
|
+
data.tar.gz: ed1593885d17a83eed330325e6c9a3c84956a746c3d4291d0cfe48f90013141d8323d96db8e2a770cbb4324c34d291b708c5cfbffabbe612880316a7c977fb9a
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/.github/workflows/ci.yml
CHANGED
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Karafka framework changelog
|
|
2
2
|
|
|
3
|
+
## 1.4.7 (2021-09-04)
|
|
4
|
+
- Update ruby-kafka to `1.4.0`
|
|
5
|
+
- Support for `resolve_seed_brokers` option (with Azdaroth)
|
|
6
|
+
- Set minimum `ruby-kafka` requirement to `1.3.0`
|
|
7
|
+
|
|
8
|
+
## 1.4.6 (2021-08-05)
|
|
9
|
+
- #700 Fix Ruby 3 compatibility issues in Connection::Client#pause (MmKolodziej)
|
|
10
|
+
|
|
11
|
+
## 1.4.5 (2021-06-16)
|
|
12
|
+
- Fixup logger checks for non-writeable logfile (ojab)
|
|
13
|
+
- #689 - Update the stdout initialization message for framework initialization
|
|
14
|
+
|
|
15
|
+
## 1.4.4 (2021-04-19)
|
|
16
|
+
- Remove Ruby 2.5 support and update minimum Ruby requirement to 2.6
|
|
17
|
+
- Remove rake dependency
|
|
18
|
+
|
|
3
19
|
## 1.4.3 (2021-03-24)
|
|
4
20
|
- Fixes for Ruby 3.0 compatibility
|
|
5
21
|
|
data/Gemfile.lock
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
karafka (1.4.
|
|
4
|
+
karafka (1.4.7)
|
|
5
5
|
dry-configurable (~> 0.8)
|
|
6
6
|
dry-inflector (~> 0.1)
|
|
7
7
|
dry-monitor (~> 0.3)
|
|
8
8
|
dry-validation (~> 1.2)
|
|
9
9
|
envlogic (~> 1.1)
|
|
10
10
|
irb (~> 1.0)
|
|
11
|
-
|
|
12
|
-
ruby-kafka (>= 1.0.0)
|
|
11
|
+
ruby-kafka (>= 1.3.0)
|
|
13
12
|
thor (>= 0.20)
|
|
14
13
|
waterdrop (~> 1.4.0)
|
|
15
14
|
zeitwerk (~> 2.1)
|
|
@@ -17,45 +16,43 @@ PATH
|
|
|
17
16
|
GEM
|
|
18
17
|
remote: https://rubygems.org/
|
|
19
18
|
specs:
|
|
20
|
-
activesupport (6.1.
|
|
19
|
+
activesupport (6.1.4.1)
|
|
21
20
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
22
21
|
i18n (>= 1.6, < 2)
|
|
23
22
|
minitest (>= 5.1)
|
|
24
23
|
tzinfo (~> 2.0)
|
|
25
24
|
zeitwerk (~> 2.3)
|
|
26
25
|
byebug (11.1.3)
|
|
27
|
-
concurrent-ruby (1.1.
|
|
26
|
+
concurrent-ruby (1.1.9)
|
|
28
27
|
delivery_boy (1.1.0)
|
|
29
28
|
king_konf (~> 1.0)
|
|
30
29
|
ruby-kafka (~> 1.0)
|
|
31
30
|
diff-lcs (1.4.4)
|
|
32
|
-
digest-crc (0.6.
|
|
31
|
+
digest-crc (0.6.4)
|
|
33
32
|
rake (>= 12.0.0, < 14.0.0)
|
|
34
|
-
docile (1.
|
|
33
|
+
docile (1.4.0)
|
|
35
34
|
dry-configurable (0.12.1)
|
|
36
35
|
concurrent-ruby (~> 1.0)
|
|
37
36
|
dry-core (~> 0.5, >= 0.5.0)
|
|
38
|
-
dry-container (0.
|
|
37
|
+
dry-container (0.8.0)
|
|
39
38
|
concurrent-ruby (~> 1.0)
|
|
40
39
|
dry-configurable (~> 0.1, >= 0.1.3)
|
|
41
|
-
dry-core (0.
|
|
40
|
+
dry-core (0.7.1)
|
|
42
41
|
concurrent-ruby (~> 1.0)
|
|
43
42
|
dry-equalizer (0.3.0)
|
|
44
|
-
dry-events (0.
|
|
43
|
+
dry-events (0.3.0)
|
|
45
44
|
concurrent-ruby (~> 1.0)
|
|
46
|
-
dry-core (~> 0.
|
|
47
|
-
|
|
48
|
-
dry-inflector (0.2.0)
|
|
45
|
+
dry-core (~> 0.5, >= 0.5)
|
|
46
|
+
dry-inflector (0.2.1)
|
|
49
47
|
dry-initializer (3.0.4)
|
|
50
|
-
dry-logic (1.
|
|
48
|
+
dry-logic (1.2.0)
|
|
51
49
|
concurrent-ruby (~> 1.0)
|
|
52
50
|
dry-core (~> 0.5, >= 0.5)
|
|
53
|
-
dry-monitor (0.
|
|
51
|
+
dry-monitor (0.4.0)
|
|
54
52
|
dry-configurable (~> 0.5)
|
|
55
|
-
dry-core (~> 0.
|
|
56
|
-
dry-equalizer (~> 0.2)
|
|
53
|
+
dry-core (~> 0.5, >= 0.5)
|
|
57
54
|
dry-events (~> 0.2)
|
|
58
|
-
dry-schema (1.
|
|
55
|
+
dry-schema (1.7.1)
|
|
59
56
|
concurrent-ruby (~> 1.0)
|
|
60
57
|
dry-configurable (~> 0.8, >= 0.8.3)
|
|
61
58
|
dry-core (~> 0.5, >= 0.5)
|
|
@@ -75,19 +72,19 @@ GEM
|
|
|
75
72
|
dry-equalizer (~> 0.2)
|
|
76
73
|
dry-initializer (~> 3.0)
|
|
77
74
|
dry-schema (~> 1.5, >= 1.5.2)
|
|
78
|
-
envlogic (1.1.
|
|
75
|
+
envlogic (1.1.3)
|
|
79
76
|
dry-inflector (~> 0.1)
|
|
80
|
-
factory_bot (6.
|
|
77
|
+
factory_bot (6.2.0)
|
|
81
78
|
activesupport (>= 5.0.0)
|
|
82
|
-
i18n (1.8.
|
|
79
|
+
i18n (1.8.10)
|
|
83
80
|
concurrent-ruby (~> 1.0)
|
|
84
81
|
io-console (0.5.9)
|
|
85
|
-
irb (1.3.
|
|
86
|
-
reline (>= 0.
|
|
82
|
+
irb (1.3.7)
|
|
83
|
+
reline (>= 0.2.7)
|
|
87
84
|
king_konf (1.0.0)
|
|
88
85
|
minitest (5.14.4)
|
|
89
|
-
rake (13.0.
|
|
90
|
-
reline (0.2.
|
|
86
|
+
rake (13.0.6)
|
|
87
|
+
reline (0.2.7)
|
|
91
88
|
io-console (~> 0.5)
|
|
92
89
|
rspec (3.10.0)
|
|
93
90
|
rspec-core (~> 3.10.0)
|
|
@@ -102,18 +99,18 @@ GEM
|
|
|
102
99
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
103
100
|
rspec-support (~> 3.10.0)
|
|
104
101
|
rspec-support (3.10.2)
|
|
105
|
-
ruby-kafka (1.
|
|
102
|
+
ruby-kafka (1.4.0)
|
|
106
103
|
digest-crc
|
|
107
104
|
simplecov (0.21.2)
|
|
108
105
|
docile (~> 1.1)
|
|
109
106
|
simplecov-html (~> 0.11)
|
|
110
107
|
simplecov_json_formatter (~> 0.1)
|
|
111
108
|
simplecov-html (0.12.3)
|
|
112
|
-
simplecov_json_formatter (0.1.
|
|
109
|
+
simplecov_json_formatter (0.1.3)
|
|
113
110
|
thor (1.1.0)
|
|
114
111
|
tzinfo (2.0.4)
|
|
115
112
|
concurrent-ruby (~> 1.0)
|
|
116
|
-
waterdrop (1.4.
|
|
113
|
+
waterdrop (1.4.2)
|
|
117
114
|
delivery_boy (>= 0.2, < 2.x)
|
|
118
115
|
dry-configurable (~> 0.8)
|
|
119
116
|
dry-monitor (~> 0.3)
|
|
@@ -123,6 +120,9 @@ GEM
|
|
|
123
120
|
zeitwerk (2.4.2)
|
|
124
121
|
|
|
125
122
|
PLATFORMS
|
|
123
|
+
ruby
|
|
124
|
+
x86_64-darwin
|
|
125
|
+
x86_64-darwin-19
|
|
126
126
|
x86_64-linux
|
|
127
127
|
|
|
128
128
|
DEPENDENCIES
|
|
@@ -133,4 +133,4 @@ DEPENDENCIES
|
|
|
133
133
|
simplecov
|
|
134
134
|
|
|
135
135
|
BUNDLED WITH
|
|
136
|
-
2.2.
|
|
136
|
+
2.2.26
|
data/README.md
CHANGED
|
@@ -5,8 +5,6 @@
|
|
|
5
5
|
[](https://gitter.im/karafka/karafka)
|
|
6
6
|
|
|
7
7
|
**Note**: We're finishing the new Karafka `2.0` but for now, please use `1.4`. All the documentation presented here refers to `1.4`
|
|
8
|
-
..
|
|
9
|
-
Documentation presented here refers to Karafka `1.4`.
|
|
10
8
|
|
|
11
9
|
## About Karafka
|
|
12
10
|
|
data/certs/mensfeld.pem
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
-----BEGIN CERTIFICATE-----
|
|
2
2
|
MIIEODCCAqCgAwIBAgIBATANBgkqhkiG9w0BAQsFADAjMSEwHwYDVQQDDBhtYWNp
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
3
|
+
ZWovREM9bWVuc2ZlbGQvREM9cGwwHhcNMjEwODExMTQxNTEzWhcNMjIwODExMTQx
|
|
4
|
+
NTEzWjAjMSEwHwYDVQQDDBhtYWNpZWovREM9bWVuc2ZlbGQvREM9cGwwggGiMA0G
|
|
5
|
+
CSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQDV2jKH4Ti87GM6nyT6D+ESzTI0MZDj
|
|
6
|
+
ak2/TEwnxvijMJyCCPKT/qIkbW4/f0VHM4rhPr1nW73sb5SZBVFCLlJcOSKOBdUY
|
|
7
|
+
TMY+SIXN2EtUaZuhAOe8LxtxjHTgRHvHcqUQMBENXTISNzCo32LnUxweu66ia4Pd
|
|
8
|
+
1mNRhzOqNv9YiBZvtBf7IMQ+sYdOCjboq2dlsWmJiwiDpY9lQBTnWORnT3mQxU5x
|
|
9
|
+
vPSwnLB854cHdCS8fQo4DjeJBRZHhEbcE5sqhEMB3RZA3EtFVEXOxlNxVTS3tncI
|
|
10
|
+
qyNXiWDaxcipaens4ObSY1C2HTV7OWb7OMqSCIybeYTSfkaSdqmcl4S6zxXkjH1J
|
|
11
|
+
tnjayAVzD+QVXGijsPLE2PFnJAh9iDET2cMsjabO1f6l1OQNyAtqpcyQcgfnyW0z
|
|
12
|
+
g7tGxTYD+6wJHffM9d9txOUw6djkF6bDxyqB8lo4Z3IObCx18AZjI9XPS9QG7w6q
|
|
13
|
+
LCWuMG2lkCcRgASqaVk9fEf9yMc2xxz5o3kCAwEAAaN3MHUwCQYDVR0TBAIwADAL
|
|
14
|
+
BgNVHQ8EBAMCBLAwHQYDVR0OBBYEFBqUFCKCOe5IuueUVqOB991jyCLLMB0GA1Ud
|
|
15
15
|
EQQWMBSBEm1hY2llakBtZW5zZmVsZC5wbDAdBgNVHRIEFjAUgRJtYWNpZWpAbWVu
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
16
|
+
c2ZlbGQucGwwDQYJKoZIhvcNAQELBQADggGBADD0/UuTTFgW+CGk2U0RDw2RBOca
|
|
17
|
+
W2LTF/G7AOzuzD0Tc4voc7WXyrgKwJREv8rgBimLnNlgmFJLmtUCh2U/MgxvcilH
|
|
18
|
+
yshYcbseNvjkrtYnLRlWZR4SSB6Zei5AlyGVQLPkvdsBpNegcG6w075YEwzX/38a
|
|
19
|
+
8V9B/Yri2OGELBz8ykl7BsXUgNoUPA/4pHF6YRLz+VirOaUIQ4JfY7xGj6fSOWWz
|
|
20
|
+
/rQ/d77r6o1mfJYM/3BRVg73a3b7DmRnE5qjwmSaSQ7u802pJnLesmArch0xGCT/
|
|
21
|
+
fMmRli1Qb+6qOTl9mzD6UDMAyFR4t6MStLm0mIEqM0nBO5nUdUWbC7l9qXEf8XBE
|
|
22
|
+
2DP28p3EqSuS+lKbAWKcqv7t0iRhhmaod+Yn9mcrLN1sa3q3KSQ9BCyxezCD4Mk2
|
|
23
|
+
R2P11bWoCtr70BsccVrN8jEhzwXngMyI2gVt750Y+dbTu1KgRqZKp/ECe7ZzPzXj
|
|
24
|
+
pIy9vHxTANKYVyI4qj8OrFdEM5BQNu8oQpL0iQ==
|
|
25
25
|
-----END CERTIFICATE-----
|
data/karafka.gemspec
CHANGED
|
@@ -23,13 +23,12 @@ Gem::Specification.new do |spec|
|
|
|
23
23
|
spec.add_dependency 'dry-validation', '~> 1.2'
|
|
24
24
|
spec.add_dependency 'envlogic', '~> 1.1'
|
|
25
25
|
spec.add_dependency 'irb', '~> 1.0'
|
|
26
|
-
spec.add_dependency '
|
|
27
|
-
spec.add_dependency 'ruby-kafka', '>= 1.0.0'
|
|
26
|
+
spec.add_dependency 'ruby-kafka', '>= 1.3.0'
|
|
28
27
|
spec.add_dependency 'thor', '>= 0.20'
|
|
29
28
|
spec.add_dependency 'waterdrop', '~> 1.4.0'
|
|
30
29
|
spec.add_dependency 'zeitwerk', '~> 2.1'
|
|
31
30
|
|
|
32
|
-
spec.required_ruby_version = '>= 2.
|
|
31
|
+
spec.required_ruby_version = '>= 2.6.0'
|
|
33
32
|
|
|
34
33
|
if $PROGRAM_NAME.end_with?('gem')
|
|
35
34
|
spec.signing_key = File.expand_path('~/.ssh/gem-private_key.pem')
|
|
@@ -84,17 +84,16 @@ module Karafka
|
|
|
84
84
|
# @param topic [String] topic that we want to pause
|
|
85
85
|
# @param partition [Integer] number partition that we want to pause
|
|
86
86
|
# @param consumer_group [Karafka::Routing::ConsumerGroup] consumer group details
|
|
87
|
-
# @return [
|
|
87
|
+
# @return [Hash] hash with all the details required to pause kafka consumer
|
|
88
88
|
def pause(topic, partition, consumer_group)
|
|
89
|
-
|
|
90
|
-
Karafka::App.config.topic_mapper.outgoing(topic),
|
|
91
|
-
|
|
92
|
-
{
|
|
89
|
+
{
|
|
90
|
+
args: [Karafka::App.config.topic_mapper.outgoing(topic), partition],
|
|
91
|
+
kwargs: {
|
|
93
92
|
timeout: consumer_group.pause_timeout,
|
|
94
93
|
max_timeout: consumer_group.pause_max_timeout,
|
|
95
94
|
exponential_backoff: consumer_group.pause_exponential_backoff
|
|
96
95
|
}
|
|
97
|
-
|
|
96
|
+
}
|
|
98
97
|
end
|
|
99
98
|
|
|
100
99
|
# Remaps topic details taking the topic mapper feature into consideration.
|
|
@@ -64,7 +64,8 @@ module Karafka
|
|
|
64
64
|
# @param topic [String] topic that we want to pause
|
|
65
65
|
# @param partition [Integer] number partition that we want to pause
|
|
66
66
|
def pause(topic, partition)
|
|
67
|
-
|
|
67
|
+
args, kwargs = ApiAdapter.pause(topic, partition, consumer_group).values_at(:args, :kwargs)
|
|
68
|
+
kafka_consumer.pause(*args, **kwargs)
|
|
68
69
|
end
|
|
69
70
|
|
|
70
71
|
# Marks given message as consumed
|
|
@@ -20,7 +20,6 @@ module Karafka
|
|
|
20
20
|
# @param _args Any arguments that we don't care about but that are needed in order to
|
|
21
21
|
# make this logger compatible with the default Ruby one
|
|
22
22
|
def initialize(*_args)
|
|
23
|
-
ensure_dir_exists
|
|
24
23
|
super(target)
|
|
25
24
|
self.level = ENV_MAP[Karafka.env] || ENV_MAP['default']
|
|
26
25
|
end
|
|
@@ -33,14 +32,7 @@ module Karafka
|
|
|
33
32
|
def target
|
|
34
33
|
Karafka::Helpers::MultiDelegator
|
|
35
34
|
.delegate(:write, :close)
|
|
36
|
-
.to($stdout, file)
|
|
37
|
-
end
|
|
38
|
-
|
|
39
|
-
# Makes sure the log directory exists as long as we can write to it
|
|
40
|
-
def ensure_dir_exists
|
|
41
|
-
FileUtils.mkdir_p(File.dirname(log_path))
|
|
42
|
-
rescue Errno::EACCES, Errno::EROFS
|
|
43
|
-
nil
|
|
35
|
+
.to(*[$stdout, file].compact)
|
|
44
36
|
end
|
|
45
37
|
|
|
46
38
|
# @return [Pathname] Path to a file to which we should log
|
|
@@ -51,7 +43,11 @@ module Karafka
|
|
|
51
43
|
# @return [File] file to which we want to write our logs
|
|
52
44
|
# @note File is being opened in append mode ('a')
|
|
53
45
|
def file
|
|
46
|
+
FileUtils.mkdir_p(File.dirname(log_path))
|
|
47
|
+
|
|
54
48
|
@file ||= File.open(log_path, 'a')
|
|
49
|
+
rescue Errno::EACCES, Errno::EROFS
|
|
50
|
+
nil
|
|
55
51
|
end
|
|
56
52
|
end
|
|
57
53
|
end
|
|
@@ -103,10 +103,10 @@ module Karafka
|
|
|
103
103
|
info "Responded from #{calling.class} using #{responder} with following data #{data}"
|
|
104
104
|
end
|
|
105
105
|
|
|
106
|
-
# Logs info that we're initializing Karafka
|
|
106
|
+
# Logs info that we're initializing Karafka framework components
|
|
107
107
|
# @param _event [Dry::Events::Event] event details including payload
|
|
108
108
|
def on_app_initializing(_event)
|
|
109
|
-
info "Initializing Karafka
|
|
109
|
+
info "Initializing Karafka framework #{::Process.pid}"
|
|
110
110
|
end
|
|
111
111
|
|
|
112
112
|
# Logs info that we're running Karafka app
|
data/lib/karafka/setup/config.rb
CHANGED
|
@@ -97,6 +97,9 @@ module Karafka
|
|
|
97
97
|
setting :max_bytes_per_partition, 1_048_576
|
|
98
98
|
# whether to consume messages starting at the beginning or to just consume new messages
|
|
99
99
|
setting :start_from_beginning, true
|
|
100
|
+
# option resolve_seed_brokers [Boolean] whether to resolve each hostname of the seed
|
|
101
|
+
# brokers
|
|
102
|
+
setting :resolve_seed_brokers, false
|
|
100
103
|
# option min_bytes [Integer] the minimum number of bytes to read before
|
|
101
104
|
# returning messages from the server; if `max_wait_time` is reached, this
|
|
102
105
|
# is ignored.
|
|
@@ -54,7 +54,7 @@ class KarafkaApp < Karafka::App
|
|
|
54
54
|
# listen to only what you really need for given environment.
|
|
55
55
|
Karafka.monitor.subscribe(WaterDrop::Instrumentation::StdoutListener.new)
|
|
56
56
|
Karafka.monitor.subscribe(Karafka::Instrumentation::StdoutListener.new)
|
|
57
|
-
Karafka.monitor.subscribe(Karafka::Instrumentation::ProctitleListener.new)
|
|
57
|
+
# Karafka.monitor.subscribe(Karafka::Instrumentation::ProctitleListener.new)
|
|
58
58
|
|
|
59
59
|
# Uncomment that in order to achieve code reload in development mode
|
|
60
60
|
# Be aware, that this might have some side-effects. Please refer to the wiki
|
data/lib/karafka/version.rb
CHANGED
data.tar.gz.sig
CHANGED
|
Binary file
|
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.4.
|
|
4
|
+
version: 1.4.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Maciej Mensfeld
|
|
@@ -13,30 +13,30 @@ cert_chain:
|
|
|
13
13
|
- |
|
|
14
14
|
-----BEGIN CERTIFICATE-----
|
|
15
15
|
MIIEODCCAqCgAwIBAgIBATANBgkqhkiG9w0BAQsFADAjMSEwHwYDVQQDDBhtYWNp
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
16
|
+
ZWovREM9bWVuc2ZlbGQvREM9cGwwHhcNMjEwODExMTQxNTEzWhcNMjIwODExMTQx
|
|
17
|
+
NTEzWjAjMSEwHwYDVQQDDBhtYWNpZWovREM9bWVuc2ZlbGQvREM9cGwwggGiMA0G
|
|
18
|
+
CSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQDV2jKH4Ti87GM6nyT6D+ESzTI0MZDj
|
|
19
|
+
ak2/TEwnxvijMJyCCPKT/qIkbW4/f0VHM4rhPr1nW73sb5SZBVFCLlJcOSKOBdUY
|
|
20
|
+
TMY+SIXN2EtUaZuhAOe8LxtxjHTgRHvHcqUQMBENXTISNzCo32LnUxweu66ia4Pd
|
|
21
|
+
1mNRhzOqNv9YiBZvtBf7IMQ+sYdOCjboq2dlsWmJiwiDpY9lQBTnWORnT3mQxU5x
|
|
22
|
+
vPSwnLB854cHdCS8fQo4DjeJBRZHhEbcE5sqhEMB3RZA3EtFVEXOxlNxVTS3tncI
|
|
23
|
+
qyNXiWDaxcipaens4ObSY1C2HTV7OWb7OMqSCIybeYTSfkaSdqmcl4S6zxXkjH1J
|
|
24
|
+
tnjayAVzD+QVXGijsPLE2PFnJAh9iDET2cMsjabO1f6l1OQNyAtqpcyQcgfnyW0z
|
|
25
|
+
g7tGxTYD+6wJHffM9d9txOUw6djkF6bDxyqB8lo4Z3IObCx18AZjI9XPS9QG7w6q
|
|
26
|
+
LCWuMG2lkCcRgASqaVk9fEf9yMc2xxz5o3kCAwEAAaN3MHUwCQYDVR0TBAIwADAL
|
|
27
|
+
BgNVHQ8EBAMCBLAwHQYDVR0OBBYEFBqUFCKCOe5IuueUVqOB991jyCLLMB0GA1Ud
|
|
28
28
|
EQQWMBSBEm1hY2llakBtZW5zZmVsZC5wbDAdBgNVHRIEFjAUgRJtYWNpZWpAbWVu
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
29
|
+
c2ZlbGQucGwwDQYJKoZIhvcNAQELBQADggGBADD0/UuTTFgW+CGk2U0RDw2RBOca
|
|
30
|
+
W2LTF/G7AOzuzD0Tc4voc7WXyrgKwJREv8rgBimLnNlgmFJLmtUCh2U/MgxvcilH
|
|
31
|
+
yshYcbseNvjkrtYnLRlWZR4SSB6Zei5AlyGVQLPkvdsBpNegcG6w075YEwzX/38a
|
|
32
|
+
8V9B/Yri2OGELBz8ykl7BsXUgNoUPA/4pHF6YRLz+VirOaUIQ4JfY7xGj6fSOWWz
|
|
33
|
+
/rQ/d77r6o1mfJYM/3BRVg73a3b7DmRnE5qjwmSaSQ7u802pJnLesmArch0xGCT/
|
|
34
|
+
fMmRli1Qb+6qOTl9mzD6UDMAyFR4t6MStLm0mIEqM0nBO5nUdUWbC7l9qXEf8XBE
|
|
35
|
+
2DP28p3EqSuS+lKbAWKcqv7t0iRhhmaod+Yn9mcrLN1sa3q3KSQ9BCyxezCD4Mk2
|
|
36
|
+
R2P11bWoCtr70BsccVrN8jEhzwXngMyI2gVt750Y+dbTu1KgRqZKp/ECe7ZzPzXj
|
|
37
|
+
pIy9vHxTANKYVyI4qj8OrFdEM5BQNu8oQpL0iQ==
|
|
38
38
|
-----END CERTIFICATE-----
|
|
39
|
-
date: 2021-
|
|
39
|
+
date: 2021-09-04 00:00:00.000000000 Z
|
|
40
40
|
dependencies:
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: dry-configurable
|
|
@@ -122,34 +122,20 @@ dependencies:
|
|
|
122
122
|
- - "~>"
|
|
123
123
|
- !ruby/object:Gem::Version
|
|
124
124
|
version: '1.0'
|
|
125
|
-
- !ruby/object:Gem::Dependency
|
|
126
|
-
name: rake
|
|
127
|
-
requirement: !ruby/object:Gem::Requirement
|
|
128
|
-
requirements:
|
|
129
|
-
- - ">="
|
|
130
|
-
- !ruby/object:Gem::Version
|
|
131
|
-
version: '11.3'
|
|
132
|
-
type: :runtime
|
|
133
|
-
prerelease: false
|
|
134
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
135
|
-
requirements:
|
|
136
|
-
- - ">="
|
|
137
|
-
- !ruby/object:Gem::Version
|
|
138
|
-
version: '11.3'
|
|
139
125
|
- !ruby/object:Gem::Dependency
|
|
140
126
|
name: ruby-kafka
|
|
141
127
|
requirement: !ruby/object:Gem::Requirement
|
|
142
128
|
requirements:
|
|
143
129
|
- - ">="
|
|
144
130
|
- !ruby/object:Gem::Version
|
|
145
|
-
version: 1.
|
|
131
|
+
version: 1.3.0
|
|
146
132
|
type: :runtime
|
|
147
133
|
prerelease: false
|
|
148
134
|
version_requirements: !ruby/object:Gem::Requirement
|
|
149
135
|
requirements:
|
|
150
136
|
- - ">="
|
|
151
137
|
- !ruby/object:Gem::Version
|
|
152
|
-
version: 1.
|
|
138
|
+
version: 1.3.0
|
|
153
139
|
- !ruby/object:Gem::Dependency
|
|
154
140
|
name: thor
|
|
155
141
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -313,14 +299,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
313
299
|
requirements:
|
|
314
300
|
- - ">="
|
|
315
301
|
- !ruby/object:Gem::Version
|
|
316
|
-
version: 2.
|
|
302
|
+
version: 2.6.0
|
|
317
303
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
318
304
|
requirements:
|
|
319
305
|
- - ">="
|
|
320
306
|
- !ruby/object:Gem::Version
|
|
321
307
|
version: '0'
|
|
322
308
|
requirements: []
|
|
323
|
-
rubygems_version: 3.2.
|
|
309
|
+
rubygems_version: 3.2.26
|
|
324
310
|
signing_key:
|
|
325
311
|
specification_version: 4
|
|
326
312
|
summary: Ruby based framework for working with Apache Kafka
|
metadata.gz.sig
CHANGED
|
Binary file
|