karafka-rdkafka 0.22.2 → 0.23.0.beta1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 55452495e893994b59a65b61624482ab87bedee6a2ac148f03b165c966e061d7
4
- data.tar.gz: a923fd7cb7e92c8b3eaa0b01ac65f7b37fc57a06685ea83b256957ae725f0613
3
+ metadata.gz: e49c4c3b8d7e123a0ae478a01e0f5e8c1727d90b1231cc02a0eb7df3074602e1
4
+ data.tar.gz: 055d556b7899946c2ca2f41359f42d866ad11fbd6abaf802fd4715e6a696b0b6
5
5
  SHA512:
6
- metadata.gz: 304cede0d983218a18303b324c9e1ecd7cd306fe3ba91d38c2524638d43416ce5f3464c1f7a83eae1371e144a054e705e325ab0d9e382133f0fc34d78bc1ddff
7
- data.tar.gz: 6d63b2d5dc40aa74ffd50b8ef51a9fd4cccd084b3b80adb39d0256d8b6d3d62b23b66b8346f71a89a1fcd115275c6e167da9b96efe9e0e6dd6f37bd59f326db8
6
+ metadata.gz: '0229a1de4aaf1de66e4a024ef7ca5d614848cfd225229b8a04f89f22812e77bfea10dea89638d1ed0becb2f422eac79fcb9d0933025cfd1259b5eee0aa269609'
7
+ data.tar.gz: 16bf3cecfa2eae1262472d62a57f45eeba5e0feb39949587fbba3835c211f5009f17a9fa2853c99c2bfbeed70d348235d782b7e20494042164985b7218a513bf
data/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Rdkafka Changelog
2
2
 
3
+ ## 0.23.0 (Unreleased)
4
+ - [Enhancement] Bump librdkafka to 2.12.0.
5
+
3
6
  ## 0.22.2 (2025-10-09)
4
7
  - [Fix] Fix Github Action Ruby reference preventing non-compiled releases.
5
8
 
data/README.md CHANGED
@@ -63,6 +63,7 @@ Contributions should generally be made to the upstream [rdkafka-ruby repository]
63
63
 
64
64
  | rdkafka-ruby | librdkafka | patches |
65
65
  |-|-|-|
66
+ | 0.23.x (Unreleased) | 2.12.0 (2025-10-09) | yes |
66
67
  | 0.22.x (2025-09-26) | 2.11.1 (2025-08-18) | yes |
67
68
  | 0.21.x (2025-08-18) | 2.11.0 (2025-07-03) | yes |
68
69
  | 0.20.x (2025-07-17) | 2.8.0 (2025-01-07) | yes |
@@ -1,7 +1,7 @@
1
1
  services:
2
2
  kafka:
3
3
  container_name: kafka
4
- image: confluentinc/cp-kafka:8.0.1
4
+ image: confluentinc/cp-kafka:8.1.0
5
5
  ports:
6
6
  - 9092:9092 # Support PLAINTEXT so we can run one docker setup for SSL and PLAINTEXT
7
7
  - 9093:9093
data/docker-compose.yml CHANGED
@@ -1,7 +1,7 @@
1
1
  services:
2
2
  kafka:
3
3
  container_name: kafka
4
- image: confluentinc/cp-kafka:8.0.1
4
+ image: confluentinc/cp-kafka:8.1.0
5
5
 
6
6
  ports:
7
7
  - 9092:9092
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Rdkafka
4
- VERSION = "0.22.2"
5
- LIBRDKAFKA_VERSION = "2.11.1"
6
- LIBRDKAFKA_SOURCE_SHA256 = "a2c87186b081e2705bb7d5338d5a01bc88d43273619b372ccb7bb0d264d0ca9f"
4
+ VERSION = "0.23.0.beta1"
5
+ LIBRDKAFKA_VERSION = "2.12.0"
6
+ LIBRDKAFKA_SOURCE_SHA256 = "1355d81091d13643aed140ba0fe62437c02d9434b44e90975aaefab84c2bf237"
7
7
  end
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.22.2
4
+ version: 0.23.0.beta1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thijs Cadier
@@ -178,7 +178,7 @@ files:
178
178
  - README.md
179
179
  - Rakefile
180
180
  - bin/verify_kafka_warnings
181
- - dist/librdkafka-2.11.1.tar.gz
181
+ - dist/librdkafka-2.12.0.tar.gz
182
182
  - dist/patches/rdkafka_global_init.patch
183
183
  - docker-compose-ssl.yml
184
184
  - docker-compose.yml