karafka-rdkafka 0.28.2-aarch64-linux-gnu → 0.29.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: c55da5cc4ca09c9f37305039ff4e042da143270bbd2ca7be3e32821c2bab06c9
4
- data.tar.gz: 06b1da56a0467dfecd246c9b32916875eac10f1adb050332a58da7063f02d169
3
+ metadata.gz: ea2d7fb9beb825037de9cb1d26d412acf27c152933a95ec3fd6aa1f0a2c848ba
4
+ data.tar.gz: 32dc66787486ac13621c26bb288e4116375e66794aaf184e6b68e505f983b812
5
5
  SHA512:
6
- metadata.gz: 68dada1abf386a99173495683243015e6910c1e9fdb06009f6496251aeefd7007395c199d50f48c17968ce982d03b8acc41dff5779fa14a28b822a6dabb0daab
7
- data.tar.gz: 406ba779b17fb15d8384979ac9f58d666e020848ae973366905e37794c6e3bec3b2935e589ded09cf4fee40d3d1eb135fe9e0e82e9620311d87335c050db5760
6
+ metadata.gz: 0bc5ee4a6683b608cc89547f7c634ce48568976881dc768dbd0c2bca0f6585bff8502657db7194712d05f857481177a55186fb60b9ba9516fe7977cfbc19fe02
7
+ data.tar.gz: fdf6499c0f85f8586a94f6ab3e5b0e8cf61de546d010afa5e3a8b2dbf6b6ea87228811ad3c15fa78b88a97153c405fa60c3182ce8f582342f05620e973c0979f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Rdkafka Changelog
2
2
 
3
+ ## 0.29.0 (2026-09-13)
4
+ - [Enhancement] Bump librdkafka to `2.15.0` (staying on `2.15.0` rather than `2.15.1` so users hitting a regression in `2.15.1` have a stable fallback). The karafka-only statistics filter patch was rebased onto `2.15.0` (upstream grew the config property index from `64 * 35` to `64 * 36`; the patch keeps extending it to `64 * 40`). Ported from rdkafka-ruby (#970).
5
+
3
6
  ## 0.28.2 (2026-09-11)
4
7
  - [Fix] Close live clients from an `at_exit` hook before Ruby's shutdown finalization, so librdkafka is no longer `dlclose`d while its native threads are still running (which could segfault on exit). Ported from rdkafka-ruby (#964, Alex Selesse).
5
8
  - [Fix] Make client construction exception-safe and destroy the native handle when setup fails after `rd_kafka_new`, so a later error no longer orphans the native client. Ported from rdkafka-ruby (#964, Alex Selesse).
data/README.md CHANGED
@@ -63,6 +63,7 @@ Contributions should generally be made to the upstream [rdkafka-ruby repository]
63
63
 
64
64
  | karafka-rdkafka | librdkafka | patches |
65
65
  |-|-|-|
66
+ | 0.29.x (2026-09-13) | 2.15.0 (2026-06-30) | yes |
66
67
  | 0.28.x (2026-07-12) | 2.14.2 (2026-06-03) | yes |
67
68
  | 0.27.x (2026-05-08) | 2.14.1 (2026-04-15) | yes |
68
69
  | 0.26.x (2026-04-11) | 2.14.0 (2026-04-01) | 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.28.2"
5
+ VERSION = "0.29.0"
6
6
  # Target librdkafka version to be used
7
- LIBRDKAFKA_VERSION = "2.14.2"
7
+ LIBRDKAFKA_VERSION = "2.15.0"
8
8
  # SHA256 hash of the librdkafka source tarball for verification
9
- LIBRDKAFKA_SOURCE_SHA256 = "d7eec9c31c817fa44402f679c252dfbf97e4c338a849a25c3579a31fd127beb8"
9
+ LIBRDKAFKA_SOURCE_SHA256 = "259015220cdca708afe838b5aa79ebf1a5fb710fb4179cf918d390aed85d5dbc"
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.28.2
4
+ version: 0.29.0
5
5
  platform: aarch64-linux-gnu
6
6
  authors:
7
7
  - Thijs Cadier