Skip to content

Commit a8e44ae

Browse files
committed
feat: Update bindings to 2.12.1
Mainly want to see an update to to the reconnection issue on 2.10. Changes the test kafka to bitnamilegacy/kafka as all images were moved here. Seems to be a risk that these images will also be removed at some point so finding another source for running kafka for testing would be good. Closes fede1024#789
1 parent 2245ea8 commit a8e44ae

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docker-compose.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
kafka:
3-
image: bitnami/kafka:${KAFKA_VERSION:-4.0}
3+
image: bitnamilegacy/kafka:${KAFKA_VERSION:-4.0}
44
environment:
55
# Enable KRaft mode (combined broker and controller)
66
- KAFKA_CFG_NODE_ID=0
@@ -11,7 +11,7 @@ services:
1111
- KAFKA_CFG_ADVERTISED_LISTENERS=PLAINTEXT://localhost:9092
1212
- KAFKA_CFG_LISTENER_SECURITY_PROTOCOL_MAP=CONTROLLER:PLAINTEXT,PLAINTEXT:PLAINTEXT
1313
- KAFKA_CFG_CONTROLLER_QUORUM_VOTERS=0@localhost:9093
14-
14+
1515
# Bitnami defaults
1616
- KAFKA_CFG_OFFSETS_TOPIC_REPLICATION_FACTOR=1
1717
- KAFKA_CFG_TRANSACTION_STATE_LOG_REPLICATION_FACTOR=1

rdkafka-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rdkafka-sys"
3-
version = "4.9.0+2.11.0"
3+
version = "4.9.0+2.12.1"
44
authors = ["Federico Giraud <[email protected]>"]
55
build = "build.rs"
66
links = "rdkafka"

rdkafka-sys/changelog.md

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

3-
## v4.9.0+2.11.0 (2025-08-27)
4-
* Bump librdkafka to v2.11.0.
3+
## vNEXT+2.12.1 (2025-11-05)
4+
* Bump librdkafka to v2.12.1.
55

66
## v4.9.0+2.10.0
77
* Add cargo enforcement of MSRV of 1.74.

rdkafka-sys/src/bindings.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
/* automatically generated by rust-bindgen 0.72.0 */
1+
/* automatically generated by rust-bindgen 0.72.1 */
22

33
use libc::{c_char, c_int, c_void, sockaddr, FILE};
44
use num_enum::TryFromPrimitive;
55

6-
pub const RD_KAFKA_VERSION: i32 = 34275583;
6+
pub const RD_KAFKA_VERSION: i32 = 34341375;
77
pub const RD_KAFKA_DEBUG_CONTEXTS : & [u8 ; 138] = b"all,generic,broker,topic,metadata,feature,queue,msg,protocol,cgrp,security,fetch,interceptor,plugin,consumer,admin,eos,mock,assignor,conf\0" ;
88
pub const RD_KAFKA_DESTROY_F_NO_CONSUMER_CLOSE: i32 = 8;
99
pub const RD_KAFKA_OFFSET_BEGINNING: i32 = -2;

0 commit comments

Comments
 (0)