karafka-core 2.3.0 → 2.4.0.alpha1
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 +3 -13
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +21 -23
- data/karafka-core.gemspec +2 -2
- data/lib/karafka/core/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +7 -7
- 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: a3de9b38d2174d98986ab231f0fe8ef7eccb063cb0830fbbe91a626dd0ec2ca2
|
|
4
|
+
data.tar.gz: 321f5d6d5a6064c63342e0a73c5d210018df37bc799583aca97f3844f963e4e5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8df3988501f83e1eea5b700078dc63d836536fa997f732d262f41498107308bffdfb59fa416493324113b27233f90461b1b279118e87efdb4d3f815b9210549b
|
|
7
|
+
data.tar.gz: 149f8833c9d0031902bb4a2b01c87b9465b540ed4971d17fcdc8a1e6ae639b61adcfaa3acbad3762826692d98fd086d467492a6327787ffeaf8499be4a8e12cd
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/.github/workflows/ci.yml
CHANGED
|
@@ -22,7 +22,6 @@ jobs:
|
|
|
22
22
|
- '3.2'
|
|
23
23
|
- '3.1'
|
|
24
24
|
- '3.0'
|
|
25
|
-
- '2.7'
|
|
26
25
|
include:
|
|
27
26
|
- ruby: '3.3'
|
|
28
27
|
coverage: 'true'
|
|
@@ -37,25 +36,16 @@ jobs:
|
|
|
37
36
|
bundler: 'latest'
|
|
38
37
|
- name: Install latest bundler
|
|
39
38
|
run: |
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
gem update --system 3.4.22 --no-document
|
|
43
|
-
else
|
|
44
|
-
gem install bundler --no-document
|
|
45
|
-
gem update --system --no-document
|
|
46
|
-
fi
|
|
39
|
+
gem install bundler --no-document
|
|
40
|
+
gem update --system --no-document
|
|
47
41
|
|
|
48
42
|
bundle config set without 'tools benchmarks docs'
|
|
49
43
|
|
|
50
44
|
- name: Bundle install
|
|
51
45
|
run: |
|
|
52
46
|
bundle config set without development
|
|
47
|
+
bundle install --jobs 4 --retry 3
|
|
53
48
|
|
|
54
|
-
if [[ "$(ruby -v | awk '{print $2}')" == 2.7.8* ]]; then
|
|
55
|
-
BUNDLER_VERSION=2.4.22 bundle install --jobs 4 --retry 3
|
|
56
|
-
else
|
|
57
|
-
bundle install --jobs 4 --retry 3
|
|
58
|
-
fi
|
|
59
49
|
- name: Run all tests
|
|
60
50
|
env:
|
|
61
51
|
GITHUB_COVERAGE: ${{matrix.coverage}}
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Karafka core changelog
|
|
2
2
|
|
|
3
|
+
## 2.4.0 (Unreleased)
|
|
4
|
+
- **[Breaking]** Drop Ruby `2.7` support.
|
|
5
|
+
- [Change] Set minimum `karafka-rdkafka` on `0.15.0` to support new features.
|
|
6
|
+
|
|
3
7
|
## 2.3.0 (2024-01-26)
|
|
4
8
|
- [Change] Set minimum `karafka-rdkafka` on `0.14.8` to support new features.
|
|
5
9
|
- [Change] Remove `concurrent-ruby` usage.
|
data/Gemfile.lock
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
karafka-core (2.
|
|
5
|
-
karafka-rdkafka (>= 0.
|
|
4
|
+
karafka-core (2.4.0.alpha1)
|
|
5
|
+
karafka-rdkafka (>= 0.15.0.alpha1, < 0.16.0)
|
|
6
6
|
|
|
7
7
|
GEM
|
|
8
8
|
remote: https://rubygems.org/
|
|
9
9
|
specs:
|
|
10
|
-
activesupport (7.1.3)
|
|
10
|
+
activesupport (7.1.3.2)
|
|
11
11
|
base64
|
|
12
12
|
bigdecimal
|
|
13
13
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
@@ -22,37 +22,35 @@ GEM
|
|
|
22
22
|
byebug (11.1.3)
|
|
23
23
|
concurrent-ruby (1.2.3)
|
|
24
24
|
connection_pool (2.4.1)
|
|
25
|
-
diff-lcs (1.5.
|
|
25
|
+
diff-lcs (1.5.1)
|
|
26
26
|
docile (1.4.0)
|
|
27
|
-
drb (2.2.
|
|
28
|
-
|
|
29
|
-
factory_bot (6.4.5)
|
|
27
|
+
drb (2.2.1)
|
|
28
|
+
factory_bot (6.4.6)
|
|
30
29
|
activesupport (>= 5.0.0)
|
|
31
30
|
ffi (1.16.3)
|
|
32
|
-
i18n (1.14.
|
|
31
|
+
i18n (1.14.4)
|
|
33
32
|
concurrent-ruby (~> 1.0)
|
|
34
|
-
karafka-rdkafka (0.
|
|
33
|
+
karafka-rdkafka (0.15.0.alpha1)
|
|
35
34
|
ffi (~> 1.15)
|
|
36
35
|
mini_portile2 (~> 2.6)
|
|
37
36
|
rake (> 12)
|
|
38
37
|
mini_portile2 (2.8.5)
|
|
39
|
-
minitest (5.
|
|
38
|
+
minitest (5.22.2)
|
|
40
39
|
mutex_m (0.2.0)
|
|
41
40
|
rake (13.1.0)
|
|
42
|
-
rspec (3.
|
|
43
|
-
rspec-core (~> 3.
|
|
44
|
-
rspec-expectations (~> 3.
|
|
45
|
-
rspec-mocks (~> 3.
|
|
46
|
-
rspec-core (3.
|
|
47
|
-
rspec-support (~> 3.
|
|
48
|
-
rspec-expectations (3.
|
|
41
|
+
rspec (3.13.0)
|
|
42
|
+
rspec-core (~> 3.13.0)
|
|
43
|
+
rspec-expectations (~> 3.13.0)
|
|
44
|
+
rspec-mocks (~> 3.13.0)
|
|
45
|
+
rspec-core (3.13.0)
|
|
46
|
+
rspec-support (~> 3.13.0)
|
|
47
|
+
rspec-expectations (3.13.0)
|
|
49
48
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
50
|
-
rspec-support (~> 3.
|
|
51
|
-
rspec-mocks (3.
|
|
49
|
+
rspec-support (~> 3.13.0)
|
|
50
|
+
rspec-mocks (3.13.0)
|
|
52
51
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
53
|
-
rspec-support (~> 3.
|
|
54
|
-
rspec-support (3.
|
|
55
|
-
ruby2_keywords (0.0.5)
|
|
52
|
+
rspec-support (~> 3.13.0)
|
|
53
|
+
rspec-support (3.13.1)
|
|
56
54
|
simplecov (0.22.0)
|
|
57
55
|
docile (~> 1.1)
|
|
58
56
|
simplecov-html (~> 0.11)
|
|
@@ -74,4 +72,4 @@ DEPENDENCIES
|
|
|
74
72
|
simplecov
|
|
75
73
|
|
|
76
74
|
BUNDLED WITH
|
|
77
|
-
2.5.
|
|
75
|
+
2.5.6
|
data/karafka-core.gemspec
CHANGED
|
@@ -16,9 +16,9 @@ Gem::Specification.new do |spec|
|
|
|
16
16
|
spec.description = 'A toolset of small support modules used throughout the Karafka ecosystem'
|
|
17
17
|
spec.licenses = %w[MIT]
|
|
18
18
|
|
|
19
|
-
spec.add_dependency 'karafka-rdkafka', '>= 0.
|
|
19
|
+
spec.add_dependency 'karafka-rdkafka', '>= 0.15.0.alpha1', '< 0.16.0'
|
|
20
20
|
|
|
21
|
-
spec.required_ruby_version = '>=
|
|
21
|
+
spec.required_ruby_version = '>= 3.0.0'
|
|
22
22
|
|
|
23
23
|
if $PROGRAM_NAME.end_with?('gem')
|
|
24
24
|
spec.signing_key = File.expand_path('~/.ssh/gem-private_key.pem')
|
data/lib/karafka/core/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-core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.4.0.alpha1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Maciej Mensfeld
|
|
@@ -35,7 +35,7 @@ cert_chain:
|
|
|
35
35
|
AnG1dJU+yL2BK7vaVytLTstJME5mepSZ46qqIJXMuWob/YPDmVaBF39TDSG9e34s
|
|
36
36
|
msG3BiCqgOgHAnL23+CN3Rt8MsuRfEtoTKpJVcCfoEoNHOkc
|
|
37
37
|
-----END CERTIFICATE-----
|
|
38
|
-
date: 2024-
|
|
38
|
+
date: 2024-03-17 00:00:00.000000000 Z
|
|
39
39
|
dependencies:
|
|
40
40
|
- !ruby/object:Gem::Dependency
|
|
41
41
|
name: karafka-rdkafka
|
|
@@ -43,20 +43,20 @@ dependencies:
|
|
|
43
43
|
requirements:
|
|
44
44
|
- - ">="
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
|
-
version: 0.
|
|
46
|
+
version: 0.15.0.alpha1
|
|
47
47
|
- - "<"
|
|
48
48
|
- !ruby/object:Gem::Version
|
|
49
|
-
version: 0.
|
|
49
|
+
version: 0.16.0
|
|
50
50
|
type: :runtime
|
|
51
51
|
prerelease: false
|
|
52
52
|
version_requirements: !ruby/object:Gem::Requirement
|
|
53
53
|
requirements:
|
|
54
54
|
- - ">="
|
|
55
55
|
- !ruby/object:Gem::Version
|
|
56
|
-
version: 0.
|
|
56
|
+
version: 0.15.0.alpha1
|
|
57
57
|
- - "<"
|
|
58
58
|
- !ruby/object:Gem::Version
|
|
59
|
-
version: 0.
|
|
59
|
+
version: 0.16.0
|
|
60
60
|
description: A toolset of small support modules used throughout the Karafka ecosystem
|
|
61
61
|
email:
|
|
62
62
|
- contact@karafka.io
|
|
@@ -127,7 +127,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
127
127
|
requirements:
|
|
128
128
|
- - ">="
|
|
129
129
|
- !ruby/object:Gem::Version
|
|
130
|
-
version:
|
|
130
|
+
version: 3.0.0
|
|
131
131
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
132
132
|
requirements:
|
|
133
133
|
- - ">="
|
metadata.gz.sig
CHANGED
|
Binary file
|