karafka 1.4.11 → 1.4.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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data/.github/workflows/ci.yml +5 -3
- data/.ruby-version +1 -1
- data/CHANGELOG.md +8 -0
- data/Gemfile.lock +17 -24
- data/karafka.gemspec +6 -3
- data/lib/karafka/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +5 -18
- 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: 8799d5854288a36f4af9e7688241a0df2719a7d982fe4940d9d7acec80ec8389
|
|
4
|
+
data.tar.gz: 7d17c4de581aa08467c8c810f8a2977a8e7cffa1f0f68f2ff369e39bc15f888b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f43dc6e07e61671aff52a9200333945e93b3641e63a44ff5d877456278553040f5ba2e6dbf69f30570d974bcaa6010312b66da5aee478f7d356b3268a62428a2
|
|
7
|
+
data.tar.gz: 87f1ed908bfc5f3076c42bec507c916900881e7536f23822d38fd8cd0214b0fdedb58a6d6920e8f11dd0e035c6ec301bfb217f906d129873b2b5a8df20d18e53
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/.github/workflows/ci.yml
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
name: ci
|
|
2
2
|
|
|
3
|
+
concurrency: ci-${{ github.ref }}
|
|
4
|
+
|
|
3
5
|
on:
|
|
4
6
|
pull_request:
|
|
5
7
|
push:
|
|
@@ -14,11 +16,11 @@ jobs:
|
|
|
14
16
|
fail-fast: false
|
|
15
17
|
matrix:
|
|
16
18
|
ruby:
|
|
19
|
+
- '3.1'
|
|
17
20
|
- '3.0'
|
|
18
21
|
- '2.7'
|
|
19
|
-
- '2.6'
|
|
20
22
|
include:
|
|
21
|
-
- ruby: '3.
|
|
23
|
+
- ruby: '3.1'
|
|
22
24
|
coverage: 'true'
|
|
23
25
|
steps:
|
|
24
26
|
- uses: actions/checkout@v2
|
|
@@ -54,7 +56,7 @@ jobs:
|
|
|
54
56
|
- name: Set up Ruby
|
|
55
57
|
uses: ruby/setup-ruby@v1
|
|
56
58
|
with:
|
|
57
|
-
ruby-version: 3.
|
|
59
|
+
ruby-version: 3.1
|
|
58
60
|
- name: Install latest bundler
|
|
59
61
|
run: gem install bundler --no-document
|
|
60
62
|
- name: Install Diffend plugin
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0
|
|
1
|
+
3.1.0
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Karafka framework changelog
|
|
2
2
|
|
|
3
|
+
## 1.4.13 (2022-02-19)
|
|
4
|
+
- Drop support for ruby 2.6
|
|
5
|
+
- Add mfa requirement
|
|
6
|
+
|
|
7
|
+
## 1.4.12 (2022-01-13)
|
|
8
|
+
- Ruby 3.1 support
|
|
9
|
+
- `irb` dependency removal (vbyno)
|
|
10
|
+
|
|
3
11
|
## 1.4.11 (2021-12-04)
|
|
4
12
|
- Source code metadata url added to the gemspec
|
|
5
13
|
- Gem bump
|
data/Gemfile.lock
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
karafka (1.4.
|
|
4
|
+
karafka (1.4.13)
|
|
5
5
|
dry-configurable (~> 0.13)
|
|
6
6
|
dry-inflector (~> 0.2)
|
|
7
7
|
dry-monitor (~> 0.5)
|
|
8
8
|
dry-validation (~> 1.7)
|
|
9
9
|
envlogic (~> 1.1)
|
|
10
|
-
irb (~> 1.3)
|
|
11
10
|
ruby-kafka (>= 1.3.0)
|
|
12
11
|
thor (>= 1.1)
|
|
13
12
|
waterdrop (~> 1.4)
|
|
@@ -16,22 +15,21 @@ PATH
|
|
|
16
15
|
GEM
|
|
17
16
|
remote: https://rubygems.org/
|
|
18
17
|
specs:
|
|
19
|
-
activesupport (
|
|
18
|
+
activesupport (7.0.1)
|
|
20
19
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
21
20
|
i18n (>= 1.6, < 2)
|
|
22
21
|
minitest (>= 5.1)
|
|
23
22
|
tzinfo (~> 2.0)
|
|
24
|
-
zeitwerk (~> 2.3)
|
|
25
23
|
byebug (11.1.3)
|
|
26
24
|
concurrent-ruby (1.1.9)
|
|
27
25
|
delivery_boy (1.1.0)
|
|
28
26
|
king_konf (~> 1.0)
|
|
29
27
|
ruby-kafka (~> 1.0)
|
|
30
|
-
diff-lcs (1.
|
|
28
|
+
diff-lcs (1.5.0)
|
|
31
29
|
digest-crc (0.6.4)
|
|
32
30
|
rake (>= 12.0.0, < 14.0.0)
|
|
33
31
|
docile (1.4.0)
|
|
34
|
-
dry-configurable (0.
|
|
32
|
+
dry-configurable (0.14.0)
|
|
35
33
|
concurrent-ruby (~> 1.0)
|
|
36
34
|
dry-core (~> 0.6)
|
|
37
35
|
dry-container (0.9.0)
|
|
@@ -43,7 +41,7 @@ GEM
|
|
|
43
41
|
concurrent-ruby (~> 1.0)
|
|
44
42
|
dry-core (~> 0.5, >= 0.5)
|
|
45
43
|
dry-inflector (0.2.1)
|
|
46
|
-
dry-initializer (3.
|
|
44
|
+
dry-initializer (3.1.1)
|
|
47
45
|
dry-logic (1.2.0)
|
|
48
46
|
concurrent-ruby (~> 1.0)
|
|
49
47
|
dry-core (~> 0.5, >= 0.5)
|
|
@@ -51,7 +49,7 @@ GEM
|
|
|
51
49
|
dry-configurable (~> 0.13, >= 0.13.0)
|
|
52
50
|
dry-core (~> 0.5, >= 0.5)
|
|
53
51
|
dry-events (~> 0.2)
|
|
54
|
-
dry-schema (1.
|
|
52
|
+
dry-schema (1.9.1)
|
|
55
53
|
concurrent-ruby (~> 1.0)
|
|
56
54
|
dry-configurable (~> 0.13, >= 0.13.0)
|
|
57
55
|
dry-core (~> 0.5, >= 0.5)
|
|
@@ -64,36 +62,31 @@ GEM
|
|
|
64
62
|
dry-core (~> 0.5, >= 0.5)
|
|
65
63
|
dry-inflector (~> 0.1, >= 0.1.2)
|
|
66
64
|
dry-logic (~> 1.0, >= 1.0.2)
|
|
67
|
-
dry-validation (1.
|
|
65
|
+
dry-validation (1.8.0)
|
|
68
66
|
concurrent-ruby (~> 1.0)
|
|
69
67
|
dry-container (~> 0.7, >= 0.7.1)
|
|
70
68
|
dry-core (~> 0.5, >= 0.5)
|
|
71
69
|
dry-initializer (~> 3.0)
|
|
72
|
-
dry-schema (~> 1.
|
|
73
|
-
envlogic (1.1.
|
|
70
|
+
dry-schema (~> 1.9, >= 1.9.1)
|
|
71
|
+
envlogic (1.1.4)
|
|
74
72
|
dry-inflector (~> 0.1)
|
|
75
73
|
factory_bot (6.2.0)
|
|
76
74
|
activesupport (>= 5.0.0)
|
|
77
|
-
i18n (1.
|
|
75
|
+
i18n (1.9.1)
|
|
78
76
|
concurrent-ruby (~> 1.0)
|
|
79
|
-
io-console (0.5.9)
|
|
80
|
-
irb (1.3.7)
|
|
81
|
-
reline (>= 0.2.7)
|
|
82
77
|
king_konf (1.0.0)
|
|
83
|
-
minitest (5.
|
|
78
|
+
minitest (5.15.0)
|
|
84
79
|
rake (13.0.6)
|
|
85
|
-
reline (0.2.7)
|
|
86
|
-
io-console (~> 0.5)
|
|
87
80
|
rspec (3.10.0)
|
|
88
81
|
rspec-core (~> 3.10.0)
|
|
89
82
|
rspec-expectations (~> 3.10.0)
|
|
90
83
|
rspec-mocks (~> 3.10.0)
|
|
91
|
-
rspec-core (3.10.
|
|
84
|
+
rspec-core (3.10.2)
|
|
92
85
|
rspec-support (~> 3.10.0)
|
|
93
|
-
rspec-expectations (3.10.
|
|
86
|
+
rspec-expectations (3.10.2)
|
|
94
87
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
95
88
|
rspec-support (~> 3.10.0)
|
|
96
|
-
rspec-mocks (3.10.
|
|
89
|
+
rspec-mocks (3.10.3)
|
|
97
90
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
98
91
|
rspec-support (~> 3.10.0)
|
|
99
92
|
rspec-support (3.10.3)
|
|
@@ -105,7 +98,7 @@ GEM
|
|
|
105
98
|
simplecov_json_formatter (~> 0.1)
|
|
106
99
|
simplecov-html (0.12.3)
|
|
107
100
|
simplecov_json_formatter (0.1.3)
|
|
108
|
-
thor (1.1
|
|
101
|
+
thor (1.2.1)
|
|
109
102
|
tzinfo (2.0.4)
|
|
110
103
|
concurrent-ruby (~> 1.0)
|
|
111
104
|
waterdrop (1.4.4)
|
|
@@ -115,7 +108,7 @@ GEM
|
|
|
115
108
|
dry-validation (~> 1.7)
|
|
116
109
|
ruby-kafka (>= 1.3.0)
|
|
117
110
|
zeitwerk (~> 2.4)
|
|
118
|
-
zeitwerk (2.5.
|
|
111
|
+
zeitwerk (2.5.4)
|
|
119
112
|
|
|
120
113
|
PLATFORMS
|
|
121
114
|
x86_64-darwin
|
|
@@ -129,4 +122,4 @@ DEPENDENCIES
|
|
|
129
122
|
simplecov
|
|
130
123
|
|
|
131
124
|
BUNDLED WITH
|
|
132
|
-
2.
|
|
125
|
+
2.3.6
|
data/karafka.gemspec
CHANGED
|
@@ -22,13 +22,12 @@ Gem::Specification.new do |spec|
|
|
|
22
22
|
spec.add_dependency 'dry-monitor', '~> 0.5'
|
|
23
23
|
spec.add_dependency 'dry-validation', '~> 1.7'
|
|
24
24
|
spec.add_dependency 'envlogic', '~> 1.1'
|
|
25
|
-
spec.add_dependency 'irb', '~> 1.3'
|
|
26
25
|
spec.add_dependency 'ruby-kafka', '>= 1.3.0'
|
|
27
26
|
spec.add_dependency 'thor', '>= 1.1'
|
|
28
27
|
spec.add_dependency 'waterdrop', '~> 1.4'
|
|
29
28
|
spec.add_dependency 'zeitwerk', '~> 2.4'
|
|
30
29
|
|
|
31
|
-
spec.required_ruby_version = '>= 2.
|
|
30
|
+
spec.required_ruby_version = '>= 2.7'
|
|
32
31
|
|
|
33
32
|
if $PROGRAM_NAME.end_with?('gem')
|
|
34
33
|
spec.signing_key = File.expand_path('~/.ssh/gem-private_key.pem')
|
|
@@ -38,6 +37,10 @@ Gem::Specification.new do |spec|
|
|
|
38
37
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(spec)/}) }
|
|
39
38
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
40
39
|
spec.require_paths = %w[lib]
|
|
41
|
-
|
|
40
|
+
|
|
41
|
+
spec.metadata = {
|
|
42
|
+
'source_code_uri' => 'https://github.com/karafka/karafka',
|
|
43
|
+
'rubygems_mfa_required' => 'true'
|
|
44
|
+
}
|
|
42
45
|
end
|
|
43
46
|
# rubocop:enable Metrics/BlockLength
|
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.13
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Maciej Mensfeld
|
|
@@ -36,7 +36,7 @@ cert_chain:
|
|
|
36
36
|
R2P11bWoCtr70BsccVrN8jEhzwXngMyI2gVt750Y+dbTu1KgRqZKp/ECe7ZzPzXj
|
|
37
37
|
pIy9vHxTANKYVyI4qj8OrFdEM5BQNu8oQpL0iQ==
|
|
38
38
|
-----END CERTIFICATE-----
|
|
39
|
-
date:
|
|
39
|
+
date: 2022-02-19 00:00:00.000000000 Z
|
|
40
40
|
dependencies:
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: dry-configurable
|
|
@@ -108,20 +108,6 @@ dependencies:
|
|
|
108
108
|
- - "~>"
|
|
109
109
|
- !ruby/object:Gem::Version
|
|
110
110
|
version: '1.1'
|
|
111
|
-
- !ruby/object:Gem::Dependency
|
|
112
|
-
name: irb
|
|
113
|
-
requirement: !ruby/object:Gem::Requirement
|
|
114
|
-
requirements:
|
|
115
|
-
- - "~>"
|
|
116
|
-
- !ruby/object:Gem::Version
|
|
117
|
-
version: '1.3'
|
|
118
|
-
type: :runtime
|
|
119
|
-
prerelease: false
|
|
120
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
121
|
-
requirements:
|
|
122
|
-
- - "~>"
|
|
123
|
-
- !ruby/object:Gem::Version
|
|
124
|
-
version: '1.3'
|
|
125
111
|
- !ruby/object:Gem::Dependency
|
|
126
112
|
name: ruby-kafka
|
|
127
113
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -291,6 +277,7 @@ licenses:
|
|
|
291
277
|
- MIT
|
|
292
278
|
metadata:
|
|
293
279
|
source_code_uri: https://github.com/karafka/karafka
|
|
280
|
+
rubygems_mfa_required: 'true'
|
|
294
281
|
post_install_message:
|
|
295
282
|
rdoc_options: []
|
|
296
283
|
require_paths:
|
|
@@ -299,14 +286,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
299
286
|
requirements:
|
|
300
287
|
- - ">="
|
|
301
288
|
- !ruby/object:Gem::Version
|
|
302
|
-
version: 2.
|
|
289
|
+
version: '2.7'
|
|
303
290
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
304
291
|
requirements:
|
|
305
292
|
- - ">="
|
|
306
293
|
- !ruby/object:Gem::Version
|
|
307
294
|
version: '0'
|
|
308
295
|
requirements: []
|
|
309
|
-
rubygems_version: 3.
|
|
296
|
+
rubygems_version: 3.3.3
|
|
310
297
|
signing_key:
|
|
311
298
|
specification_version: 4
|
|
312
299
|
summary: Ruby based framework for working with Apache Kafka
|
metadata.gz.sig
CHANGED
|
Binary file
|