karafka 1.2.5 → 1.2.6
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
- data/.travis.yml +13 -5
- data/CHANGELOG.md +5 -1
- data/Gemfile +3 -0
- data/Gemfile.lock +19 -18
- data/karafka.gemspec +2 -2
- data/lib/karafka/version.rb +1 -1
- metadata +8 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3327b1b3a49a3eadc7025fc2b535751fe0b570bf89fa7d07974a46acf08211eb
|
|
4
|
+
data.tar.gz: a38bc966ef37793493d919a1234f66dc22b88f32c451c41129bd4c597a054085
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 17fb07e91a88cbdfb91f2daec190df48039adcfebc6e2fa2ca480da4d41e1cf95a7d474593133550a2aceca9fde6be6df29ddfbb76bac14e142aab63310ef7f8
|
|
7
|
+
data.tar.gz: f3350067e8028b7394dd1bc238fc517597ecb9b1266d6513b0a8a03db283a3d4807f5d4eefdef74dc7d540cf18511328a4bc146039aba1b1df26dbfd30f9e149
|
data/.travis.yml
CHANGED
|
@@ -1,13 +1,21 @@
|
|
|
1
|
-
|
|
1
|
+
dist: trusty
|
|
2
2
|
sudo: false
|
|
3
|
+
language: ruby
|
|
4
|
+
cache: bundler
|
|
5
|
+
|
|
3
6
|
rvm:
|
|
4
7
|
- 2.3.7
|
|
5
|
-
- 2.4.
|
|
8
|
+
- 2.4.4
|
|
6
9
|
- 2.5.1
|
|
7
10
|
- ruby-head
|
|
8
|
-
- jruby-
|
|
9
|
-
|
|
11
|
+
- jruby-9.2.0.0
|
|
12
|
+
|
|
10
13
|
env:
|
|
11
14
|
global:
|
|
12
15
|
- JRUBY_OPTS='--debug'
|
|
13
|
-
|
|
16
|
+
|
|
17
|
+
before_install:
|
|
18
|
+
- gem install bundler
|
|
19
|
+
- gem update --system
|
|
20
|
+
|
|
21
|
+
script: bundle exec rspec
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
# Karafka framework changelog
|
|
2
2
|
|
|
3
|
-
## 1.2.
|
|
3
|
+
## 1.2.6
|
|
4
|
+
- Lock WaterDrop to 1.2.3
|
|
5
|
+
- Lock Ruby-Kafka to 0.6.x (support for 0.7 will be added in Karafka 1.3)
|
|
6
|
+
|
|
7
|
+
## 1.2.5
|
|
4
8
|
- #354 - Expose consumer heartbeat
|
|
5
9
|
- #373 - Async producer not working properly with responders
|
|
6
10
|
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
karafka (1.2.
|
|
4
|
+
karafka (1.2.6)
|
|
5
5
|
activesupport (>= 4.0)
|
|
6
6
|
dry-configurable (~> 0.7)
|
|
7
7
|
dry-inflector (~> 0.1.1)
|
|
@@ -11,14 +11,14 @@ PATH
|
|
|
11
11
|
multi_json (>= 1.12)
|
|
12
12
|
rake (>= 11.3)
|
|
13
13
|
require_all (>= 1.4)
|
|
14
|
-
ruby-kafka (
|
|
14
|
+
ruby-kafka (~> 0.6.8)
|
|
15
15
|
thor (~> 0.19)
|
|
16
|
-
waterdrop (~> 1.2)
|
|
16
|
+
waterdrop (~> 1.2.3)
|
|
17
17
|
|
|
18
18
|
GEM
|
|
19
19
|
remote: https://rubygems.org/
|
|
20
20
|
specs:
|
|
21
|
-
activesupport (5.2.
|
|
21
|
+
activesupport (5.2.1)
|
|
22
22
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
23
23
|
i18n (>= 0.7, < 2)
|
|
24
24
|
minitest (~> 5.1)
|
|
@@ -68,7 +68,7 @@ GEM
|
|
|
68
68
|
dry-types (~> 0.13.1)
|
|
69
69
|
envlogic (1.1.0)
|
|
70
70
|
dry-inflector (~> 0.1)
|
|
71
|
-
i18n (1.0
|
|
71
|
+
i18n (1.1.0)
|
|
72
72
|
concurrent-ruby (~> 1.0)
|
|
73
73
|
json (2.1.0)
|
|
74
74
|
king_konf (0.3.6)
|
|
@@ -78,20 +78,20 @@ GEM
|
|
|
78
78
|
rake (12.3.1)
|
|
79
79
|
require_all (2.0.0)
|
|
80
80
|
rouge (2.2.1)
|
|
81
|
-
rspec (3.
|
|
82
|
-
rspec-core (~> 3.
|
|
83
|
-
rspec-expectations (~> 3.
|
|
84
|
-
rspec-mocks (~> 3.
|
|
85
|
-
rspec-core (3.
|
|
86
|
-
rspec-support (~> 3.
|
|
87
|
-
rspec-expectations (3.
|
|
81
|
+
rspec (3.8.0)
|
|
82
|
+
rspec-core (~> 3.8.0)
|
|
83
|
+
rspec-expectations (~> 3.8.0)
|
|
84
|
+
rspec-mocks (~> 3.8.0)
|
|
85
|
+
rspec-core (3.8.0)
|
|
86
|
+
rspec-support (~> 3.8.0)
|
|
87
|
+
rspec-expectations (3.8.1)
|
|
88
88
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
89
|
-
rspec-support (~> 3.
|
|
90
|
-
rspec-mocks (3.
|
|
89
|
+
rspec-support (~> 3.8.0)
|
|
90
|
+
rspec-mocks (3.8.0)
|
|
91
91
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
92
|
-
rspec-support (~> 3.
|
|
93
|
-
rspec-support (3.
|
|
94
|
-
ruby-kafka (0.6.
|
|
92
|
+
rspec-support (~> 3.8.0)
|
|
93
|
+
rspec-support (3.8.0)
|
|
94
|
+
ruby-kafka (0.6.8)
|
|
95
95
|
simplecov (0.16.1)
|
|
96
96
|
docile (~> 1.1)
|
|
97
97
|
json (>= 1.8, < 3)
|
|
@@ -102,12 +102,13 @@ GEM
|
|
|
102
102
|
timecop (0.9.1)
|
|
103
103
|
tzinfo (1.2.5)
|
|
104
104
|
thread_safe (~> 0.1)
|
|
105
|
-
waterdrop (1.2.
|
|
105
|
+
waterdrop (1.2.3)
|
|
106
106
|
delivery_boy (~> 0.2)
|
|
107
107
|
dry-configurable (~> 0.7)
|
|
108
108
|
dry-monitor (~> 0.1)
|
|
109
109
|
dry-validation (~> 0.11)
|
|
110
110
|
null-logger (~> 0.1)
|
|
111
|
+
ruby-kafka (~> 0.6.8)
|
|
111
112
|
|
|
112
113
|
PLATFORMS
|
|
113
114
|
ruby
|
data/karafka.gemspec
CHANGED
|
@@ -25,9 +25,9 @@ Gem::Specification.new do |spec|
|
|
|
25
25
|
spec.add_dependency 'multi_json', '>= 1.12'
|
|
26
26
|
spec.add_dependency 'rake', '>= 11.3'
|
|
27
27
|
spec.add_dependency 'require_all', '>= 1.4'
|
|
28
|
-
spec.add_dependency 'ruby-kafka', '
|
|
28
|
+
spec.add_dependency 'ruby-kafka', '~> 0.6.8'
|
|
29
29
|
spec.add_dependency 'thor', '~> 0.19'
|
|
30
|
-
spec.add_dependency 'waterdrop', '~> 1.2'
|
|
30
|
+
spec.add_dependency 'waterdrop', '~> 1.2.3'
|
|
31
31
|
|
|
32
32
|
spec.required_ruby_version = '>= 2.3.0'
|
|
33
33
|
|
data/lib/karafka/version.rb
CHANGED
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.
|
|
4
|
+
version: 1.2.6
|
|
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: 2018-
|
|
13
|
+
date: 2018-08-16 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: activesupport
|
|
@@ -142,16 +142,16 @@ dependencies:
|
|
|
142
142
|
name: ruby-kafka
|
|
143
143
|
requirement: !ruby/object:Gem::Requirement
|
|
144
144
|
requirements:
|
|
145
|
-
- - "
|
|
145
|
+
- - "~>"
|
|
146
146
|
- !ruby/object:Gem::Version
|
|
147
|
-
version: 0.6.
|
|
147
|
+
version: 0.6.8
|
|
148
148
|
type: :runtime
|
|
149
149
|
prerelease: false
|
|
150
150
|
version_requirements: !ruby/object:Gem::Requirement
|
|
151
151
|
requirements:
|
|
152
|
-
- - "
|
|
152
|
+
- - "~>"
|
|
153
153
|
- !ruby/object:Gem::Version
|
|
154
|
-
version: 0.6.
|
|
154
|
+
version: 0.6.8
|
|
155
155
|
- !ruby/object:Gem::Dependency
|
|
156
156
|
name: thor
|
|
157
157
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -172,14 +172,14 @@ dependencies:
|
|
|
172
172
|
requirements:
|
|
173
173
|
- - "~>"
|
|
174
174
|
- !ruby/object:Gem::Version
|
|
175
|
-
version:
|
|
175
|
+
version: 1.2.3
|
|
176
176
|
type: :runtime
|
|
177
177
|
prerelease: false
|
|
178
178
|
version_requirements: !ruby/object:Gem::Requirement
|
|
179
179
|
requirements:
|
|
180
180
|
- - "~>"
|
|
181
181
|
- !ruby/object:Gem::Version
|
|
182
|
-
version:
|
|
182
|
+
version: 1.2.3
|
|
183
183
|
description: Framework used to simplify Apache Kafka based Ruby applications development
|
|
184
184
|
email:
|
|
185
185
|
- maciej@coditsu.io
|