karafka-rdkafka 0.21.0.rc1 → 0.21.0.rc2
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/.github/workflows/{ci_linux_x86_64_musl.yml → ci_linux_alpine_x86_64_musl.yml} +12 -9
- data/.github/workflows/ci_linux_alpine_x86_64_musl_complementary.yml +264 -0
- data/.github/workflows/ci_linux_debian_x86_64_gnu.yml +271 -0
- data/.github/workflows/ci_linux_debian_x86_64_gnu_complementary.yml +334 -0
- data/.github/workflows/{ci_linux_x86_64_gnu.yml → ci_linux_ubuntu_aarch64_gnu.yml} +15 -15
- data/.github/workflows/ci_linux_ubuntu_aarch64_gnu_complementary.yml +295 -0
- data/.github/workflows/ci_linux_ubuntu_x86_64_gnu.yml +281 -0
- data/.github/workflows/ci_linux_ubuntu_x86_64_gnu_complementary.yml +294 -0
- data/.github/workflows/ci_macos_arm64.yml +5 -5
- data/.github/workflows/push_linux_aarch64_gnu.yml +65 -0
- data/.github/workflows/push_linux_x86_64_gnu.yml +2 -2
- data/.github/workflows/push_linux_x86_64_musl.yml +3 -3
- data/.github/workflows/push_macos_arm64.yml +2 -2
- data/.github/workflows/push_ruby.yml +1 -1
- data/.github/workflows/trigger-wiki-refresh.yml +30 -0
- data/.github/workflows/verify-action-pins.yml +1 -1
- data/.gitignore +1 -0
- data/.rspec +1 -0
- data/CHANGELOG.md +7 -1
- data/README.md +34 -134
- data/dist/cyrus-sasl-2.1.28.tar.gz +0 -0
- data/dist/krb5-1.21.3.tar.gz +0 -0
- data/dist/openssl-3.0.16.tar.gz +0 -0
- data/dist/zlib-1.3.1.tar.gz +0 -0
- data/dist/zstd-1.5.7.tar.gz +0 -0
- data/docker-compose-ssl.yml +35 -0
- data/ext/build_common.sh +16 -1
- data/ext/build_linux_aarch64_gnu.sh +326 -0
- data/ext/build_linux_x86_64_gnu.sh +12 -1
- data/ext/build_linux_x86_64_musl.sh +18 -8
- data/ext/build_macos_arm64.sh +7 -0
- data/ext/generate-ssl-certs.sh +109 -0
- data/karafka-rdkafka.gemspec +2 -0
- data/lib/rdkafka/bindings.rb +0 -1
- data/lib/rdkafka/consumer.rb +1 -1
- data/lib/rdkafka/version.rb +1 -1
- data/spec/integrations/ssl_stress_spec.rb +121 -0
- data/spec/{rdkafka → lib/rdkafka}/admin_spec.rb +16 -4
- data/spec/{rdkafka → lib/rdkafka}/consumer_spec.rb +50 -3
- data/spec/{rdkafka → lib/rdkafka}/metadata_spec.rb +2 -2
- data/spec/{rdkafka → lib/rdkafka}/producer/delivery_report_spec.rb +1 -1
- data/spec/{rdkafka → lib/rdkafka}/producer_spec.rb +6 -5
- data/spec/spec_helper.rb +45 -8
- metadata +75 -30
- /data/spec/{rdkafka → lib/rdkafka}/abstract_handle_spec.rb +0 -0
- /data/spec/{rdkafka → lib/rdkafka}/admin/create_acl_handle_spec.rb +0 -0
- /data/spec/{rdkafka → lib/rdkafka}/admin/create_acl_report_spec.rb +0 -0
- /data/spec/{rdkafka → lib/rdkafka}/admin/create_topic_handle_spec.rb +0 -0
- /data/spec/{rdkafka → lib/rdkafka}/admin/create_topic_report_spec.rb +0 -0
- /data/spec/{rdkafka → lib/rdkafka}/admin/delete_acl_handle_spec.rb +0 -0
- /data/spec/{rdkafka → lib/rdkafka}/admin/delete_acl_report_spec.rb +0 -0
- /data/spec/{rdkafka → lib/rdkafka}/admin/delete_topic_handle_spec.rb +0 -0
- /data/spec/{rdkafka → lib/rdkafka}/admin/delete_topic_report_spec.rb +0 -0
- /data/spec/{rdkafka → lib/rdkafka}/admin/describe_acl_handle_spec.rb +0 -0
- /data/spec/{rdkafka → lib/rdkafka}/admin/describe_acl_report_spec.rb +0 -0
- /data/spec/{rdkafka → lib/rdkafka}/bindings_spec.rb +0 -0
- /data/spec/{rdkafka → lib/rdkafka}/callbacks_spec.rb +0 -0
- /data/spec/{rdkafka → lib/rdkafka}/config_spec.rb +0 -0
- /data/spec/{rdkafka → lib/rdkafka}/consumer/headers_spec.rb +0 -0
- /data/spec/{rdkafka → lib/rdkafka}/consumer/message_spec.rb +0 -0
- /data/spec/{rdkafka → lib/rdkafka}/consumer/partition_spec.rb +0 -0
- /data/spec/{rdkafka → lib/rdkafka}/consumer/topic_partition_list_spec.rb +0 -0
- /data/spec/{rdkafka → lib/rdkafka}/error_spec.rb +0 -0
- /data/spec/{rdkafka → lib/rdkafka}/native_kafka_spec.rb +0 -0
- /data/spec/{rdkafka → lib/rdkafka}/producer/delivery_handle_spec.rb +0 -0
- /data/spec/{rdkafka → lib/rdkafka}/producer/partitions_count_cache_spec.rb +0 -0
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: karafka-rdkafka
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.21.0.
|
4
|
+
version: 0.21.0.rc2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Thijs Cadier
|
@@ -24,6 +24,20 @@ dependencies:
|
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '1.15'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: json
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '2.0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '2.0'
|
27
41
|
- !ruby/object:Gem::Dependency
|
28
42
|
name: logger
|
29
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -136,6 +150,20 @@ dependencies:
|
|
136
150
|
- - ">="
|
137
151
|
- !ruby/object:Gem::Version
|
138
152
|
version: '0'
|
153
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
name: warning
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - ">="
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: '0'
|
160
|
+
type: :development
|
161
|
+
prerelease: false
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
163
|
+
requirements:
|
164
|
+
- - ">="
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: '0'
|
139
167
|
description: Modern Kafka client library for Ruby based on librdkafka
|
140
168
|
email:
|
141
169
|
- contact@karafka.io
|
@@ -146,13 +174,21 @@ extra_rdoc_files: []
|
|
146
174
|
files:
|
147
175
|
- ".github/CODEOWNERS"
|
148
176
|
- ".github/FUNDING.yml"
|
149
|
-
- ".github/workflows/
|
150
|
-
- ".github/workflows/
|
177
|
+
- ".github/workflows/ci_linux_alpine_x86_64_musl.yml"
|
178
|
+
- ".github/workflows/ci_linux_alpine_x86_64_musl_complementary.yml"
|
179
|
+
- ".github/workflows/ci_linux_debian_x86_64_gnu.yml"
|
180
|
+
- ".github/workflows/ci_linux_debian_x86_64_gnu_complementary.yml"
|
181
|
+
- ".github/workflows/ci_linux_ubuntu_aarch64_gnu.yml"
|
182
|
+
- ".github/workflows/ci_linux_ubuntu_aarch64_gnu_complementary.yml"
|
183
|
+
- ".github/workflows/ci_linux_ubuntu_x86_64_gnu.yml"
|
184
|
+
- ".github/workflows/ci_linux_ubuntu_x86_64_gnu_complementary.yml"
|
151
185
|
- ".github/workflows/ci_macos_arm64.yml"
|
186
|
+
- ".github/workflows/push_linux_aarch64_gnu.yml"
|
152
187
|
- ".github/workflows/push_linux_x86_64_gnu.yml"
|
153
188
|
- ".github/workflows/push_linux_x86_64_musl.yml"
|
154
189
|
- ".github/workflows/push_macos_arm64.yml"
|
155
190
|
- ".github/workflows/push_ruby.yml"
|
191
|
+
- ".github/workflows/trigger-wiki-refresh.yml"
|
156
192
|
- ".github/workflows/verify-action-pins.yml"
|
157
193
|
- ".gitignore"
|
158
194
|
- ".rspec"
|
@@ -164,15 +200,23 @@ files:
|
|
164
200
|
- MIT-LICENSE
|
165
201
|
- README.md
|
166
202
|
- Rakefile
|
203
|
+
- dist/cyrus-sasl-2.1.28.tar.gz
|
204
|
+
- dist/krb5-1.21.3.tar.gz
|
167
205
|
- dist/librdkafka-2.11.0.tar.gz
|
206
|
+
- dist/openssl-3.0.16.tar.gz
|
168
207
|
- dist/patches/rdkafka_global_init.patch
|
208
|
+
- dist/zlib-1.3.1.tar.gz
|
209
|
+
- dist/zstd-1.5.7.tar.gz
|
210
|
+
- docker-compose-ssl.yml
|
169
211
|
- docker-compose.yml
|
170
212
|
- ext/README.md
|
171
213
|
- ext/Rakefile
|
172
214
|
- ext/build_common.sh
|
215
|
+
- ext/build_linux_aarch64_gnu.sh
|
173
216
|
- ext/build_linux_x86_64_gnu.sh
|
174
217
|
- ext/build_linux_x86_64_musl.sh
|
175
218
|
- ext/build_macos_arm64.sh
|
219
|
+
- ext/generate-ssl-certs.sh
|
176
220
|
- karafka-rdkafka.gemspec
|
177
221
|
- lib/rdkafka.rb
|
178
222
|
- lib/rdkafka/abstract_handle.rb
|
@@ -217,33 +261,34 @@ files:
|
|
217
261
|
- lib/rdkafka/producer/partitions_count_cache.rb
|
218
262
|
- lib/rdkafka/version.rb
|
219
263
|
- renovate.json
|
220
|
-
- spec/
|
221
|
-
- spec/rdkafka/
|
222
|
-
- spec/rdkafka/admin/
|
223
|
-
- spec/rdkafka/admin/
|
224
|
-
- spec/rdkafka/admin/
|
225
|
-
- spec/rdkafka/admin/
|
226
|
-
- spec/rdkafka/admin/
|
227
|
-
- spec/rdkafka/admin/
|
228
|
-
- spec/rdkafka/admin/
|
229
|
-
- spec/rdkafka/admin/
|
230
|
-
- spec/rdkafka/admin/
|
231
|
-
- spec/rdkafka/
|
232
|
-
- spec/rdkafka/
|
233
|
-
- spec/rdkafka/
|
234
|
-
- spec/rdkafka/
|
235
|
-
- spec/rdkafka/
|
236
|
-
- spec/rdkafka/consumer/
|
237
|
-
- spec/rdkafka/consumer/
|
238
|
-
- spec/rdkafka/consumer/
|
239
|
-
- spec/rdkafka/
|
240
|
-
- spec/rdkafka/
|
241
|
-
- spec/rdkafka/
|
242
|
-
- spec/rdkafka/
|
243
|
-
- spec/rdkafka/
|
244
|
-
- spec/rdkafka/producer/
|
245
|
-
- spec/rdkafka/producer/
|
246
|
-
- spec/rdkafka/
|
264
|
+
- spec/integrations/ssl_stress_spec.rb
|
265
|
+
- spec/lib/rdkafka/abstract_handle_spec.rb
|
266
|
+
- spec/lib/rdkafka/admin/create_acl_handle_spec.rb
|
267
|
+
- spec/lib/rdkafka/admin/create_acl_report_spec.rb
|
268
|
+
- spec/lib/rdkafka/admin/create_topic_handle_spec.rb
|
269
|
+
- spec/lib/rdkafka/admin/create_topic_report_spec.rb
|
270
|
+
- spec/lib/rdkafka/admin/delete_acl_handle_spec.rb
|
271
|
+
- spec/lib/rdkafka/admin/delete_acl_report_spec.rb
|
272
|
+
- spec/lib/rdkafka/admin/delete_topic_handle_spec.rb
|
273
|
+
- spec/lib/rdkafka/admin/delete_topic_report_spec.rb
|
274
|
+
- spec/lib/rdkafka/admin/describe_acl_handle_spec.rb
|
275
|
+
- spec/lib/rdkafka/admin/describe_acl_report_spec.rb
|
276
|
+
- spec/lib/rdkafka/admin_spec.rb
|
277
|
+
- spec/lib/rdkafka/bindings_spec.rb
|
278
|
+
- spec/lib/rdkafka/callbacks_spec.rb
|
279
|
+
- spec/lib/rdkafka/config_spec.rb
|
280
|
+
- spec/lib/rdkafka/consumer/headers_spec.rb
|
281
|
+
- spec/lib/rdkafka/consumer/message_spec.rb
|
282
|
+
- spec/lib/rdkafka/consumer/partition_spec.rb
|
283
|
+
- spec/lib/rdkafka/consumer/topic_partition_list_spec.rb
|
284
|
+
- spec/lib/rdkafka/consumer_spec.rb
|
285
|
+
- spec/lib/rdkafka/error_spec.rb
|
286
|
+
- spec/lib/rdkafka/metadata_spec.rb
|
287
|
+
- spec/lib/rdkafka/native_kafka_spec.rb
|
288
|
+
- spec/lib/rdkafka/producer/delivery_handle_spec.rb
|
289
|
+
- spec/lib/rdkafka/producer/delivery_report_spec.rb
|
290
|
+
- spec/lib/rdkafka/producer/partitions_count_cache_spec.rb
|
291
|
+
- spec/lib/rdkafka/producer_spec.rb
|
247
292
|
- spec/spec_helper.rb
|
248
293
|
licenses:
|
249
294
|
- MIT
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|