karafka-rdkafka 0.28.2 → 0.29.0

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: bade2b0fd568e3141cf8f6eae85d0c8a047a50c20be28b6702a437ff2e1a01f5
4
- data.tar.gz: bc6ae32429e7a8152e29edd606d88e6a8252218ba3d3abfe650442eef406a731
3
+ metadata.gz: 5c14ac2b8e2474a4823811f9a61cf7da21345d41f2a9fa08931b9549c0a67798
4
+ data.tar.gz: 31196228e2d00eb211c529c6daade3b378c3b707bc39aea8dc93bad5902b1fff
5
5
  SHA512:
6
- metadata.gz: 7d17df3c107fe98ab8bf8fcb594ddf34ad2f06338b03c35e909b677246c1588763ccc19abc66f8a0c18ae9a36c840840758d6522aa55d155218a347ff33cf169
7
- data.tar.gz: 56646addb2619b3e837be8a6d11e32fd0ce99ceee0662bd28b842ae22c3038208d5a69ad5ab702b7d5ec24621bae2cd3d495728a9ac68fa88b5fbed99577b34b
6
+ metadata.gz: 4aca7ee63fdbc488e15c712c80ba94fd4b8a7ef7e82cd5a0923cb0dfe9170a742bd0c9bb98d0c31a431f0d39900c466012c09497514eb5a9a05d5545ddd6b0c8
7
+ data.tar.gz: ad04a75550357443f46710f5884f56b95cccd6d9ac635e50768dcef33146944bb84e2a7f7fabf5870a48d3442b0f51c2d11f3eadda4251bd2880a0d602fe5477
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 |
@@ -248,7 +248,7 @@
248
248
 
249
249
  /* Increase in steps of 64 as needed.
250
250
  * This must be larger than sizeof(rd_kafka_[topic_]conf_t) */
251
- -#define RD_KAFKA_CONF_PROPS_IDX_MAX (64 * 35)
251
+ -#define RD_KAFKA_CONF_PROPS_IDX_MAX (64 * 36)
252
252
  +#define RD_KAFKA_CONF_PROPS_IDX_MAX (64 * 40)
253
253
 
254
254
  /**
@@ -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: ruby
6
6
  authors:
7
7
  - Thijs Cadier
@@ -93,7 +93,7 @@ files:
93
93
  - README.md
94
94
  - Rakefile
95
95
  - bin/verify_kafka_warnings
96
- - dist/librdkafka-2.14.2.tar.gz
96
+ - dist/librdkafka-2.15.0.tar.gz
97
97
  - dist/patches/rdkafka_global_init.patch
98
98
  - dist/patches/rdkafka_stats_filter.patch
99
99
  - docker-compose-ssl.yml