Skip to content

Commit 085e875

Browse files
authored
bump librdkafka to 2.6.1 (#528)
1 parent 9c5dda3 commit 085e875

File tree

7 files changed

+8
-31
lines changed

7 files changed

+8
-31
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# Rdkafka Changelog
22

3-
## 0.19.1 (Unreleased)
3+
## 0.20.0 (Unreleased)
4+
- [Enhancement] Bump librdkafka to 2.6.1
45
- [Enhancement] Expose `rd_kafka_global_init` to mitigate macos forking issues.
6+
- [Patch] Retire no longer needed cooperative-sticky patch.
57

68
## 0.19.0 (2024-10-01)
79
- **[Breaking]** Drop Ruby 3.0 support

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ bundle exec rake produce_messages
163163

164164
| rdkafka-ruby | librdkafka | patches |
165165
|-|-|-|
166+
| 0.20.0 (Unreleased) | 2.6.1 (2024-11-18) | yes |
166167
| 0.19.0 (2024-10-01) | 2.5.3 (2024-09-02) | yes |
167168
| 0.18.0 (2024-09-02) | 2.5.0 (2024-06-10) | yes |
168169
| 0.17.0 (2024-08-03) | 2.4.0 (2024-05-07) | no |

dist/librdkafka-2.6.1.tar.gz

4.52 MB
Binary file not shown.

dist/librdkafka_2.5.3.tar.gz

-4.33 MB
Binary file not shown.

dist/patches/rdkafka_sticky_assignor.c.patch

Lines changed: 0 additions & 26 deletions
This file was deleted.

ext/Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ task :default => :clean do
2626
releases = File.expand_path(File.join(File.dirname(__FILE__), '../dist'))
2727

2828
recipe.files << {
29-
:url => "file://#{releases}/librdkafka_#{Rdkafka::LIBRDKAFKA_VERSION}.tar.gz",
29+
:url => "file://#{releases}/librdkafka-#{Rdkafka::LIBRDKAFKA_VERSION}.tar.gz",
3030
:sha256 => Rdkafka::LIBRDKAFKA_SOURCE_SHA256
3131
}
3232
recipe.configure_options = ["--host=#{recipe.host}"]

lib/rdkafka/version.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
module Rdkafka
4-
VERSION = "0.19.1"
5-
LIBRDKAFKA_VERSION = "2.5.3"
6-
LIBRDKAFKA_SOURCE_SHA256 = "eaa1213fdddf9c43e28834d9a832d9dd732377d35121e42f875966305f52b8ff"
4+
VERSION = "0.20.0"
5+
LIBRDKAFKA_VERSION = "2.6.1"
6+
LIBRDKAFKA_SOURCE_SHA256 = "0ddf205ad8d36af0bc72a2fec20639ea02e1d583e353163bf7f4683d949e901b"
77
end

0 commit comments

Comments
 (0)