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 +4 -4
- data/CHANGELOG.md +3 -0
- data/README.md +1 -0
- data/ext/librdkafka.so +0 -0
- data/lib/rdkafka/version.rb +3 -3
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ea2d7fb9beb825037de9cb1d26d412acf27c152933a95ec3fd6aa1f0a2c848ba
|
|
4
|
+
data.tar.gz: 32dc66787486ac13621c26bb288e4116375e66794aaf184e6b68e505f983b812
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
data/lib/rdkafka/version.rb
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
module Rdkafka
|
|
4
4
|
# Current rdkafka-ruby gem version
|
|
5
|
-
VERSION = "0.
|
|
5
|
+
VERSION = "0.29.0"
|
|
6
6
|
# Target librdkafka version to be used
|
|
7
|
-
LIBRDKAFKA_VERSION = "2.
|
|
7
|
+
LIBRDKAFKA_VERSION = "2.15.0"
|
|
8
8
|
# SHA256 hash of the librdkafka source tarball for verification
|
|
9
|
-
LIBRDKAFKA_SOURCE_SHA256 = "
|
|
9
|
+
LIBRDKAFKA_SOURCE_SHA256 = "259015220cdca708afe838b5aa79ebf1a5fb710fb4179cf918d390aed85d5dbc"
|
|
10
10
|
end
|