rdkafka 0.22.2-x86_64-linux-gnu → 0.23.0-x86_64-linux-gnu
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/CHANGELOG.md +10 -0
- data/README.md +15 -14
- data/docker-compose-ssl.yml +35 -0
- data/ext/librdkafka.so +0 -0
- data/lib/rdkafka/admin.rb +0 -1
- data/lib/rdkafka/config.rb +1 -4
- data/lib/rdkafka/consumer/topic_partition_list.rb +5 -1
- data/lib/rdkafka/consumer.rb +2 -2
- data/lib/rdkafka/producer.rb +3 -3
- data/lib/rdkafka/version.rb +3 -3
- data/rdkafka.gemspec +35 -6
- data/renovate.json +5 -17
- metadata +32 -52
- data/.github/CODEOWNERS +0 -3
- data/.github/FUNDING.yml +0 -1
- data/.github/workflows/ci_linux_x86_64_gnu.yml +0 -271
- data/.github/workflows/ci_linux_x86_64_musl.yml +0 -194
- data/.github/workflows/ci_macos_arm64.yml +0 -284
- data/.github/workflows/push_linux_x86_64_gnu.yml +0 -65
- data/.github/workflows/push_linux_x86_64_musl.yml +0 -79
- data/.github/workflows/push_macos_arm64.yml +0 -54
- data/.github/workflows/push_ruby.yml +0 -37
- data/.github/workflows/verify-action-pins.yml +0 -16
- data/.gitignore +0 -14
- data/.rspec +0 -2
- data/.ruby-gemset +0 -1
- data/.ruby-version +0 -1
- data/.yardopts +0 -2
- data/ext/README.md +0 -19
- data/ext/Rakefile +0 -131
- data/ext/build_common.sh +0 -361
- data/ext/build_linux_x86_64_gnu.sh +0 -306
- data/ext/build_linux_x86_64_musl.sh +0 -763
- data/ext/build_macos_arm64.sh +0 -550
- data/spec/rdkafka/abstract_handle_spec.rb +0 -117
- data/spec/rdkafka/admin/create_acl_handle_spec.rb +0 -56
- data/spec/rdkafka/admin/create_acl_report_spec.rb +0 -18
- data/spec/rdkafka/admin/create_topic_handle_spec.rb +0 -52
- data/spec/rdkafka/admin/create_topic_report_spec.rb +0 -16
- data/spec/rdkafka/admin/delete_acl_handle_spec.rb +0 -85
- data/spec/rdkafka/admin/delete_acl_report_spec.rb +0 -72
- data/spec/rdkafka/admin/delete_topic_handle_spec.rb +0 -52
- data/spec/rdkafka/admin/delete_topic_report_spec.rb +0 -16
- data/spec/rdkafka/admin/describe_acl_handle_spec.rb +0 -85
- data/spec/rdkafka/admin/describe_acl_report_spec.rb +0 -73
- data/spec/rdkafka/admin_spec.rb +0 -971
- data/spec/rdkafka/bindings_spec.rb +0 -199
- data/spec/rdkafka/callbacks_spec.rb +0 -20
- data/spec/rdkafka/config_spec.rb +0 -258
- data/spec/rdkafka/consumer/headers_spec.rb +0 -73
- data/spec/rdkafka/consumer/message_spec.rb +0 -139
- data/spec/rdkafka/consumer/partition_spec.rb +0 -57
- data/spec/rdkafka/consumer/topic_partition_list_spec.rb +0 -248
- data/spec/rdkafka/consumer_spec.rb +0 -1274
- data/spec/rdkafka/error_spec.rb +0 -89
- data/spec/rdkafka/metadata_spec.rb +0 -79
- data/spec/rdkafka/native_kafka_spec.rb +0 -130
- data/spec/rdkafka/producer/delivery_handle_spec.rb +0 -45
- data/spec/rdkafka/producer/delivery_report_spec.rb +0 -25
- data/spec/rdkafka/producer/partitions_count_cache_spec.rb +0 -359
- data/spec/rdkafka/producer_spec.rb +0 -1345
- data/spec/spec_helper.rb +0 -195
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5f3fc7c3631529ff2f24d9e1d408894724bc29639918d7799490838111fa0f35
|
4
|
+
data.tar.gz: 44d5b55df47aa52bfcfed16b2c073d8efb6e7450caedabc83d805f0973073c52
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1f1250c50e8b8dbf3e9b09d83679c56fe9a1c700b70ac2143dfdc822cafabcd9a10b860fd68f420673ac04dea2b34c50037effb9208bc71041fd23f32b32e73d
|
7
|
+
data.tar.gz: 62c2d87103d0ba172b4462e5f8401c34cfb473a63558c8a2523512d79dec5cc7598d409aa704bdc6d099c4cea8495692d5c74c5581bb8feea88c222157159fa4
|
data/CHANGELOG.md
CHANGED
@@ -1,9 +1,19 @@
|
|
1
1
|
# Rdkafka Changelog
|
2
2
|
|
3
|
+
## 0.23.0 (2025-09-04)
|
4
|
+
- **[Breaking]** Drop support for Ruby 3.1 to move forward with the fiber scheduler work.
|
5
|
+
- [Enhancement] Bump librdkafka to `2.11.0`
|
6
|
+
- [Enhancement] Support explicit Debian testing due to lib issues.
|
7
|
+
- [Enhancement] Support ARM64 Gnu precompilation.
|
8
|
+
- [Enhancement] Improve what symbols are exposed outside of the precompiled extensions.
|
9
|
+
- [Enhancement] Introduce an integration suite layer for non RSpec specs execution.
|
10
|
+
- [Fix] Add `json` gem as a dependency (was missing but used).
|
11
|
+
|
3
12
|
## 0.22.2 (2025-07-21)
|
4
13
|
- [Enhancement] Drastically increase number of platforms in the integration suite
|
5
14
|
- [Fix] Support Ubuntu `22.04` and older Alpine precompiled versions
|
6
15
|
- [Fix] FFI::DynamicLibrary.load_library': Could not open library
|
16
|
+
- [Change] Add new CI action to trigger auto-doc refresh.
|
7
17
|
|
8
18
|
## 0.22.1 (2025-07-17)
|
9
19
|
- [Fix] Fix `Rakefile` being available in the precompiled versions causing build failures.
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Rdkafka
|
2
2
|
|
3
|
-
[](https://github.com/karafka/rdkafka-ruby/actions/workflows/ci_linux_x86_64_gnu.yml)
|
4
4
|
[](https://badge.fury.io/rb/rdkafka)
|
5
5
|
[](https://slack.karafka.io)
|
6
6
|
|
@@ -163,16 +163,17 @@ bundle exec rake produce_messages
|
|
163
163
|
|
164
164
|
| rdkafka-ruby | librdkafka | patches |
|
165
165
|
|-|-|-|
|
166
|
-
| 0.
|
167
|
-
| 0.
|
168
|
-
| 0.
|
169
|
-
| 0.
|
170
|
-
| 0.
|
171
|
-
| 0.
|
172
|
-
| 0.
|
173
|
-
| 0.
|
174
|
-
| 0.
|
175
|
-
| 0.
|
176
|
-
| 0.
|
177
|
-
| 0.
|
178
|
-
| 0.
|
166
|
+
| 0.23.x (2025-09-04) | 2.11.0 (2025-07-03) | yes |
|
167
|
+
| 0.22.x (2025-07-17) | 2.8.0 (2025-01-07) | yes |
|
168
|
+
| 0.21.x (2025-02-13) | 2.8.0 (2025-01-07) | yes |
|
169
|
+
| 0.20.0 (2025-01-07) | 2.6.1 (2024-11-18) | yes |
|
170
|
+
| 0.19.0 (2024-10-01) | 2.5.3 (2024-09-02) | yes |
|
171
|
+
| 0.18.0 (2024-09-02) | 2.5.0 (2024-06-10) | yes |
|
172
|
+
| 0.17.0 (2024-08-03) | 2.4.0 (2024-05-07) | no |
|
173
|
+
| 0.16.0 (2024-06-13) | 2.3.0 (2023-10-25) | no |
|
174
|
+
| 0.15.0 (2023-12-03) | 2.3.0 (2023-10-25) | no |
|
175
|
+
| 0.14.0 (2023-11-21) | 2.2.0 (2023-07-12) | no |
|
176
|
+
| 0.13.0 (2023-07-24) | 2.0.2 (2023-01-20) | no |
|
177
|
+
| 0.12.0 (2022-06-17) | 1.9.0 (2022-06-16) | no |
|
178
|
+
| 0.11.0 (2021-11-17) | 1.8.2 (2021-10-18) | no |
|
179
|
+
| 0.10.0 (2021-09-07) | 1.5.0 (2020-07-20) | no |
|
@@ -0,0 +1,35 @@
|
|
1
|
+
services:
|
2
|
+
kafka:
|
3
|
+
container_name: kafka
|
4
|
+
image: confluentinc/cp-kafka:8.0.0
|
5
|
+
ports:
|
6
|
+
- 9092:9092 # Support PLAINTEXT so we can run one docker setup for SSL and PLAINTEXT
|
7
|
+
- 9093:9093
|
8
|
+
volumes:
|
9
|
+
- ./ssl:/etc/kafka/secrets
|
10
|
+
environment:
|
11
|
+
CLUSTER_ID: kafka-docker-cluster-1
|
12
|
+
KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT
|
13
|
+
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
|
14
|
+
KAFKA_PROCESS_ROLES: broker,controller
|
15
|
+
KAFKA_CONTROLLER_LISTENER_NAMES: CONTROLLER
|
16
|
+
KAFKA_LISTENERS: PLAINTEXT://:9092,SSL://:9093,CONTROLLER://:9094
|
17
|
+
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: CONTROLLER:PLAINTEXT,PLAINTEXT:PLAINTEXT,SSL:SSL
|
18
|
+
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://127.0.0.1:9092,SSL://127.0.0.1:9093
|
19
|
+
KAFKA_BROKER_ID: 1
|
20
|
+
KAFKA_CONTROLLER_QUORUM_VOTERS: 1@127.0.0.1:9094
|
21
|
+
ALLOW_PLAINTEXT_LISTENER: 'yes'
|
22
|
+
KAFKA_AUTO_CREATE_TOPICS_ENABLE: 'true'
|
23
|
+
KAFKA_TRANSACTION_STATE_LOG_REPLICATION_FACTOR: 1
|
24
|
+
KAFKA_TRANSACTION_STATE_LOG_MIN_ISR: 1
|
25
|
+
KAFKA_ALLOW_EVERYONE_IF_NO_ACL_FOUND: "true"
|
26
|
+
KAFKA_AUTHORIZER_CLASS_NAME: org.apache.kafka.metadata.authorizer.StandardAuthorizer
|
27
|
+
|
28
|
+
# SSL Configuration
|
29
|
+
KAFKA_SSL_KEYSTORE_FILENAME: kafka.server.keystore.jks
|
30
|
+
KAFKA_SSL_KEYSTORE_CREDENTIALS: kafka_keystore_creds
|
31
|
+
KAFKA_SSL_KEY_CREDENTIALS: kafka_ssl_key_creds
|
32
|
+
KAFKA_SSL_TRUSTSTORE_FILENAME: kafka.server.truststore.jks
|
33
|
+
KAFKA_SSL_TRUSTSTORE_CREDENTIALS: kafka_truststore_creds
|
34
|
+
KAFKA_SSL_CLIENT_AUTH: none
|
35
|
+
KAFKA_SSL_ENDPOINT_IDENTIFICATION_ALGORITHM: ""
|
data/ext/librdkafka.so
CHANGED
Binary file
|
data/lib/rdkafka/admin.rb
CHANGED
data/lib/rdkafka/config.rb
CHANGED
@@ -129,10 +129,7 @@ module Rdkafka
|
|
129
129
|
end
|
130
130
|
|
131
131
|
# Default config that can be overwritten.
|
132
|
-
DEFAULT_CONFIG = {
|
133
|
-
# Request api version so advanced features work
|
134
|
-
:"api.version.request" => true
|
135
|
-
}.freeze
|
132
|
+
DEFAULT_CONFIG = {}.freeze
|
136
133
|
|
137
134
|
# Required config that cannot be overwritten.
|
138
135
|
REQUIRED_CONFIG = {
|
@@ -66,10 +66,14 @@ module Rdkafka
|
|
66
66
|
#
|
67
67
|
# @param topic [String] The topic's name
|
68
68
|
# @param partitions_with_offsets [Hash<Integer, Integer>] The topic's partitions and offsets
|
69
|
+
# @param partitions_with_offsets [Array<Consumer::Partition>] The topic's partitions with offsets
|
70
|
+
# and metadata (if any)
|
69
71
|
#
|
70
72
|
# @return [nil]
|
71
73
|
def add_topic_and_partitions_with_offsets(topic, partitions_with_offsets)
|
72
|
-
@data[topic.to_s] = partitions_with_offsets.map
|
74
|
+
@data[topic.to_s] = partitions_with_offsets.map do |p, o|
|
75
|
+
p.is_a?(Partition) ? p : Partition.new(p, o)
|
76
|
+
end
|
73
77
|
end
|
74
78
|
|
75
79
|
# Return a `Hash` with the topics as keys and and an array of partition information as the value if present.
|
data/lib/rdkafka/consumer.rb
CHANGED
@@ -246,7 +246,7 @@ module Rdkafka
|
|
246
246
|
# @param timeout_ms [Integer] The timeout for fetching this information.
|
247
247
|
# @return [TopicPartitionList]
|
248
248
|
# @raise [RdkafkaError] When getting the committed positions fails.
|
249
|
-
def committed(list=nil, timeout_ms=
|
249
|
+
def committed(list=nil, timeout_ms=2_000)
|
250
250
|
closed_consumer_check(__method__)
|
251
251
|
|
252
252
|
if list.nil?
|
@@ -350,7 +350,7 @@ module Rdkafka
|
|
350
350
|
topic_out = {}
|
351
351
|
partitions.each do |p|
|
352
352
|
next if p.offset.nil?
|
353
|
-
|
353
|
+
_low, high = query_watermark_offsets(
|
354
354
|
topic,
|
355
355
|
p.partition,
|
356
356
|
watermark_timeout_ms
|
data/lib/rdkafka/producer.rb
CHANGED
@@ -6,9 +6,6 @@ module Rdkafka
|
|
6
6
|
include Helpers::Time
|
7
7
|
include Helpers::OAuth
|
8
8
|
|
9
|
-
# Empty hash used as a default
|
10
|
-
EMPTY_HASH = {}.freeze
|
11
|
-
|
12
9
|
# @private
|
13
10
|
@@partitions_count_cache = PartitionsCountCache.new
|
14
11
|
|
@@ -30,6 +27,9 @@ module Rdkafka
|
|
30
27
|
@@partitions_count_cache = partitions_count_cache
|
31
28
|
end
|
32
29
|
|
30
|
+
# Empty hash used as a default
|
31
|
+
EMPTY_HASH = {}.freeze
|
32
|
+
|
33
33
|
private_constant :EMPTY_HASH
|
34
34
|
|
35
35
|
# Raised when there was a critical issue when invoking rd_kafka_topic_new
|
data/lib/rdkafka/version.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
module Rdkafka
|
4
|
-
VERSION = "0.
|
5
|
-
LIBRDKAFKA_VERSION = "2.
|
6
|
-
LIBRDKAFKA_SOURCE_SHA256 = "
|
4
|
+
VERSION = "0.23.0"
|
5
|
+
LIBRDKAFKA_VERSION = "2.11.0"
|
6
|
+
LIBRDKAFKA_SOURCE_SHA256 = "592a823dc7c09ad4ded1bc8f700da6d4e0c88ffaf267815c6f25e7450b9395ca"
|
7
7
|
end
|
data/rdkafka.gemspec
CHANGED
@@ -13,17 +13,31 @@ Gem::Specification.new do |gem|
|
|
13
13
|
gem.name = 'rdkafka'
|
14
14
|
gem.require_paths = ['lib']
|
15
15
|
gem.version = Rdkafka::VERSION
|
16
|
-
gem.required_ruby_version = '>= 3.
|
16
|
+
gem.required_ruby_version = '>= 3.2'
|
17
|
+
|
18
|
+
files = `git ls-files`.split($\)
|
19
|
+
files = files.reject do |file|
|
20
|
+
next true if file.start_with?('.')
|
21
|
+
next true if file.start_with?('spec/')
|
22
|
+
next true if file.start_with?('ext/README.md')
|
23
|
+
|
24
|
+
false
|
25
|
+
end
|
17
26
|
|
18
27
|
if ENV['RUBY_PLATFORM']
|
19
28
|
gem.platform = ENV['RUBY_PLATFORM']
|
20
|
-
gem.files = `git ls-files`.split($\)
|
21
29
|
|
22
30
|
# Do not include the source code for librdkafka as it should be precompiled already per
|
23
31
|
# platform. Same applies to any possible patches.
|
24
|
-
|
25
|
-
|
26
|
-
file.
|
32
|
+
# Do not include github actions details in RubyGems releases
|
33
|
+
gem.files = files.reject do |file|
|
34
|
+
next true if file.start_with?('dist/')
|
35
|
+
next true if file.start_with?('ext/build_')
|
36
|
+
next true if file.start_with?('ext/ci_')
|
37
|
+
next true if file.start_with?('ext/Rakefile')
|
38
|
+
next true if file.start_with?('ext/generate-')
|
39
|
+
|
40
|
+
false
|
27
41
|
end
|
28
42
|
|
29
43
|
# Add the compiled extensions that exist (not in git)
|
@@ -36,11 +50,25 @@ Gem::Specification.new do |gem|
|
|
36
50
|
end
|
37
51
|
else
|
38
52
|
gem.platform = Gem::Platform::RUBY
|
39
|
-
|
53
|
+
|
54
|
+
# Do not include code used for building native extensions
|
55
|
+
# Do not include github actions details in RubyGems releases
|
56
|
+
gem.files = files.reject do |file|
|
57
|
+
next true if file.start_with?('ext/build_')
|
58
|
+
next true if file.start_with?('ext/ci_')
|
59
|
+
next true if file.start_with?('ext/generate-')
|
60
|
+
next false unless file.start_with?('dist/')
|
61
|
+
next false if file.start_with?('dist/patches')
|
62
|
+
next false if file.start_with?('dist/librdkafka-')
|
63
|
+
|
64
|
+
true
|
65
|
+
end
|
66
|
+
|
40
67
|
gem.extensions = %w(ext/Rakefile)
|
41
68
|
end
|
42
69
|
|
43
70
|
gem.add_dependency 'ffi', '~> 1.15'
|
71
|
+
gem.add_dependency 'json', '> 2.0'
|
44
72
|
gem.add_dependency 'logger'
|
45
73
|
gem.add_dependency 'mini_portile2', '~> 2.6'
|
46
74
|
gem.add_dependency 'rake', '> 12'
|
@@ -50,6 +78,7 @@ Gem::Specification.new do |gem|
|
|
50
78
|
gem.add_development_dependency 'rspec', '~> 3.5'
|
51
79
|
gem.add_development_dependency 'rake'
|
52
80
|
gem.add_development_dependency 'simplecov'
|
81
|
+
gem.add_development_dependency 'warning'
|
53
82
|
|
54
83
|
gem.metadata = {
|
55
84
|
'funding_uri' => 'https://karafka.io/#become-pro',
|
data/renovate.json
CHANGED
@@ -19,7 +19,7 @@
|
|
19
19
|
{
|
20
20
|
"customType": "regex",
|
21
21
|
"managerFilePatterns": [
|
22
|
-
"
|
22
|
+
"/ext/build_common.sh/"
|
23
23
|
],
|
24
24
|
"matchStrings": [
|
25
25
|
"readonly OPENSSL_VERSION=\"(?<currentValue>.*)\""
|
@@ -31,7 +31,7 @@
|
|
31
31
|
{
|
32
32
|
"customType": "regex",
|
33
33
|
"managerFilePatterns": [
|
34
|
-
"
|
34
|
+
"/ext/build_common.sh/"
|
35
35
|
],
|
36
36
|
"matchStrings": [
|
37
37
|
"readonly CYRUS_SASL_VERSION=\"(?<currentValue>.*)\""
|
@@ -43,7 +43,7 @@
|
|
43
43
|
{
|
44
44
|
"customType": "regex",
|
45
45
|
"managerFilePatterns": [
|
46
|
-
"
|
46
|
+
"/ext/build_common.sh/"
|
47
47
|
],
|
48
48
|
"matchStrings": [
|
49
49
|
"readonly ZLIB_VERSION=\"(?<currentValue>.*)\""
|
@@ -55,7 +55,7 @@
|
|
55
55
|
{
|
56
56
|
"customType": "regex",
|
57
57
|
"managerFilePatterns": [
|
58
|
-
"
|
58
|
+
"/ext/build_common.sh/"
|
59
59
|
],
|
60
60
|
"matchStrings": [
|
61
61
|
"readonly ZSTD_VERSION=\"(?<currentValue>.*)\""
|
@@ -67,7 +67,7 @@
|
|
67
67
|
{
|
68
68
|
"customType": "regex",
|
69
69
|
"managerFilePatterns": [
|
70
|
-
"
|
70
|
+
"/ext/build_common.sh/"
|
71
71
|
],
|
72
72
|
"matchStrings": [
|
73
73
|
"readonly KRB5_VERSION=\"(?<currentValue>.*)\""
|
@@ -75,18 +75,6 @@
|
|
75
75
|
"depNameTemplate": "krb5/krb5",
|
76
76
|
"datasourceTemplate": "github-releases",
|
77
77
|
"extractVersionTemplate": "^krb5-(?<version>.*)$"
|
78
|
-
},
|
79
|
-
{
|
80
|
-
"customType": "regex",
|
81
|
-
"managerFilePatterns": [
|
82
|
-
"/^ext/build_common\\.sh$/"
|
83
|
-
],
|
84
|
-
"matchStrings": [
|
85
|
-
"readonly LIBRDKAFKA_VERSION=\"(?<currentValue>.*)\""
|
86
|
-
],
|
87
|
-
"depNameTemplate": "confluentinc/librdkafka",
|
88
|
-
"datasourceTemplate": "github-releases",
|
89
|
-
"extractVersionTemplate": "^v(?<version>.*)$"
|
90
78
|
}
|
91
79
|
]
|
92
80
|
}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rdkafka
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.23.0
|
5
5
|
platform: x86_64-linux-gnu
|
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
|
@@ -143,33 +171,13 @@ executables: []
|
|
143
171
|
extensions: []
|
144
172
|
extra_rdoc_files: []
|
145
173
|
files:
|
146
|
-
- ".github/CODEOWNERS"
|
147
|
-
- ".github/FUNDING.yml"
|
148
|
-
- ".github/workflows/ci_linux_x86_64_gnu.yml"
|
149
|
-
- ".github/workflows/ci_linux_x86_64_musl.yml"
|
150
|
-
- ".github/workflows/ci_macos_arm64.yml"
|
151
|
-
- ".github/workflows/push_linux_x86_64_gnu.yml"
|
152
|
-
- ".github/workflows/push_linux_x86_64_musl.yml"
|
153
|
-
- ".github/workflows/push_macos_arm64.yml"
|
154
|
-
- ".github/workflows/push_ruby.yml"
|
155
|
-
- ".github/workflows/verify-action-pins.yml"
|
156
|
-
- ".gitignore"
|
157
|
-
- ".rspec"
|
158
|
-
- ".ruby-gemset"
|
159
|
-
- ".ruby-version"
|
160
|
-
- ".yardopts"
|
161
174
|
- CHANGELOG.md
|
162
175
|
- Gemfile
|
163
176
|
- MIT-LICENSE
|
164
177
|
- README.md
|
165
178
|
- Rakefile
|
179
|
+
- docker-compose-ssl.yml
|
166
180
|
- docker-compose.yml
|
167
|
-
- ext/README.md
|
168
|
-
- ext/Rakefile
|
169
|
-
- ext/build_common.sh
|
170
|
-
- ext/build_linux_x86_64_gnu.sh
|
171
|
-
- ext/build_linux_x86_64_musl.sh
|
172
|
-
- ext/build_macos_arm64.sh
|
173
181
|
- ext/librdkafka.so
|
174
182
|
- lib/rdkafka.rb
|
175
183
|
- lib/rdkafka/abstract_handle.rb
|
@@ -215,34 +223,6 @@ files:
|
|
215
223
|
- lib/rdkafka/version.rb
|
216
224
|
- rdkafka.gemspec
|
217
225
|
- renovate.json
|
218
|
-
- spec/rdkafka/abstract_handle_spec.rb
|
219
|
-
- spec/rdkafka/admin/create_acl_handle_spec.rb
|
220
|
-
- spec/rdkafka/admin/create_acl_report_spec.rb
|
221
|
-
- spec/rdkafka/admin/create_topic_handle_spec.rb
|
222
|
-
- spec/rdkafka/admin/create_topic_report_spec.rb
|
223
|
-
- spec/rdkafka/admin/delete_acl_handle_spec.rb
|
224
|
-
- spec/rdkafka/admin/delete_acl_report_spec.rb
|
225
|
-
- spec/rdkafka/admin/delete_topic_handle_spec.rb
|
226
|
-
- spec/rdkafka/admin/delete_topic_report_spec.rb
|
227
|
-
- spec/rdkafka/admin/describe_acl_handle_spec.rb
|
228
|
-
- spec/rdkafka/admin/describe_acl_report_spec.rb
|
229
|
-
- spec/rdkafka/admin_spec.rb
|
230
|
-
- spec/rdkafka/bindings_spec.rb
|
231
|
-
- spec/rdkafka/callbacks_spec.rb
|
232
|
-
- spec/rdkafka/config_spec.rb
|
233
|
-
- spec/rdkafka/consumer/headers_spec.rb
|
234
|
-
- spec/rdkafka/consumer/message_spec.rb
|
235
|
-
- spec/rdkafka/consumer/partition_spec.rb
|
236
|
-
- spec/rdkafka/consumer/topic_partition_list_spec.rb
|
237
|
-
- spec/rdkafka/consumer_spec.rb
|
238
|
-
- spec/rdkafka/error_spec.rb
|
239
|
-
- spec/rdkafka/metadata_spec.rb
|
240
|
-
- spec/rdkafka/native_kafka_spec.rb
|
241
|
-
- spec/rdkafka/producer/delivery_handle_spec.rb
|
242
|
-
- spec/rdkafka/producer/delivery_report_spec.rb
|
243
|
-
- spec/rdkafka/producer/partitions_count_cache_spec.rb
|
244
|
-
- spec/rdkafka/producer_spec.rb
|
245
|
-
- spec/spec_helper.rb
|
246
226
|
licenses:
|
247
227
|
- MIT
|
248
228
|
metadata:
|
@@ -260,14 +240,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
260
240
|
requirements:
|
261
241
|
- - ">="
|
262
242
|
- !ruby/object:Gem::Version
|
263
|
-
version: '3.
|
243
|
+
version: '3.2'
|
264
244
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
265
245
|
requirements:
|
266
246
|
- - ">="
|
267
247
|
- !ruby/object:Gem::Version
|
268
248
|
version: '0'
|
269
249
|
requirements: []
|
270
|
-
rubygems_version: 3.6.
|
250
|
+
rubygems_version: 3.6.9
|
271
251
|
specification_version: 4
|
272
252
|
summary: The rdkafka gem is a modern Kafka client library for Ruby based on librdkafka.
|
273
253
|
It wraps the production-ready C client using the ffi gem and targets Kafka 1.0+
|
data/.github/CODEOWNERS
DELETED
data/.github/FUNDING.yml
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
custom: ['https://karafka.io/#become-pro']
|