karafka-rdkafka 0.25.0-aarch64-linux-gnu → 0.26.0-aarch64-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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1fc68ea9e1153d48f0385af08a7e3f181eecc58ec8fdcb1799d6df91b62794be
4
- data.tar.gz: 780de63d72bce253081b6c8dbea38c59ba47749fa28b190e21e6b93833179757
3
+ metadata.gz: ad9d2d2175395ecc174e0ae513db335c01f866bb0d241b11c3b2e6cf0fd9e0aa
4
+ data.tar.gz: 5a3a373ac001b4f73c758d30f69c8b7f82272e65db16bccda0240c3529606539
5
5
  SHA512:
6
- metadata.gz: 3186a7ffd882a2ca7cce415b0211ec8204d2800eba1fc8768fb2985b7cf42c5c8b6c49e7e11bee3637dfc56efdc9511cfa94820631539dc98a782b44c33b0afe
7
- data.tar.gz: 648ee9517e2d8377dd0adccc9a94f058734c76e71c79716d6c7c681d45abb437fccb46f56c5c48a86cf544d9756805ab099e07482d8727fd46a84c35f54c1e10
6
+ metadata.gz: 55010dbdc16f9d0e415d6dc0bcf25763f2b641aaa2bbc1eef3079da195fc3916860ac01bbe735d1c9d1451972ef986331d6a43b2ab82a0e7fd2db7fc709a8cd0
7
+ data.tar.gz: 13b30111dd2f6bfb5cc876c8f1ee82f245deb39a6cc9021bf5f4f71787760bb998067184fe46611ad90bde1f1155d3b8ab83e91b9e734324124f24735d1bd2cf
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Rdkafka Changelog
2
2
 
3
+ ## 0.26.0 (2026-04-11)
4
+ - [Enhancement] Bump librdkafka to `2.14.0`.
5
+ - [Enhancement] Add `advertised.listeners` to macOS ARM64 CI KRaft broker config to fix flaky tests (from upstream).
6
+
3
7
  ## 0.25.0 (2026-04-02)
4
8
  - **[Feature]** Support `rd_kafka_ListOffsets` admin API for querying partition offsets by specification (earliest, latest, max_timestamp, or by timestamp) without requiring a consumer group (from upstream).
5
9
  - **[Feature]** Extend `Rdkafka::RdkafkaError` with `instance_name` attribute containing the `rd_kafka_name` for tying errors back to specific native Kafka instances (from upstream).
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.26.x (2026-04-11) | 2.14.0 (2026-04-01) | yes |
66
67
  | 0.25.x (2026-04-02) | 2.13.2 (2026-03-30) | yes |
67
68
  | 0.24.x (2026-02-25) | 2.13.0 (2026-01-05) | yes |
68
69
  | 0.23.x (2025-11-01) | 2.12.1 (2025-10-16) | yes |
data/ext/librdkafka.so CHANGED
Binary file
@@ -2,9 +2,9 @@
2
2
 
3
3
  module Rdkafka
4
4
  # Current rdkafka-ruby gem version
5
- VERSION = "0.25.0"
5
+ VERSION = "0.26.0"
6
6
  # Target librdkafka version to be used
7
- LIBRDKAFKA_VERSION = "2.13.2"
7
+ LIBRDKAFKA_VERSION = "2.14.0"
8
8
  # SHA256 hash of the librdkafka source tarball for verification
9
- LIBRDKAFKA_SOURCE_SHA256 = "14972092e4115f6e99f798a7cb420cbf6daa0c73502b3c52ae42fb5b418eea8f"
9
+ LIBRDKAFKA_SOURCE_SHA256 = "c05c03ef00a13a8463fac3e8918c04843c416f11ced58c889d806a88ca92cf99"
10
10
  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.25.0
4
+ version: 0.26.0
5
5
  platform: aarch64-linux-gnu
6
6
  authors:
7
7
  - Thijs Cadier