karafka-rdkafka 0.22.2-arm64-darwin → 0.23.0.beta1-arm64-darwin

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: '01863358da518bb47c1968e180fec030796bce50e3937639ee89dc12d0cb6940'
4
- data.tar.gz: 4632ea1b03758de2dc30513de1a307bf9156d9e0c6b991923a8796be960fbce3
3
+ metadata.gz: aa839879a176c3ccf93164d24863cf61a5b1cc1683c48d37d300a243f510fdc4
4
+ data.tar.gz: 6b8fd48fba44f0ac190ab99300da60ee885f6708a3de56e2a7309240b7ab753e
5
5
  SHA512:
6
- metadata.gz: ccce9ca8f4b836d9a8ba04746cf37e4935d92b5db2415ab92ce4a222da91391f0c869d1f912af9186cf18bcee00148b0325a96fd1d28cda6a7b3a9197bb9e5ca
7
- data.tar.gz: 60eb76b49de733a4d5d37be650c919e854ca2cf2395cfd41cefa6f7c2e29aade667b54994a86e5ea5b1c5fdda596d0d05dc909431757a50ebe3dfdd09d57eeef
6
+ metadata.gz: 52827f3c28d42fa1bea53ebd9dc65956346b4b53d2745767886b2db416785f9200eb9a071e1048080a598d7a04455430c14f4aee9f74e9c216f931fb147aec80
7
+ data.tar.gz: 256691bdc7e48f36672b4f5c0295ea2bd630e8d8a0ade6ae3c6040f560e631b8d7e5dcaaf424df6a2fb8bf4adebb9a24a067d1876fa8e318e0125ba4331f23d7
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
data/ext/librdkafka.dylib CHANGED
Binary file
@@ -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: arm64-darwin
6
6
  authors:
7
7
  - Thijs Cadier