rust-rdkafka v0.11.0 Release Notes

Release Date: 2017-06-20 // almost 7 years ago
  • ๐Ÿ”‹ Features

    • The topic partition list object from librdkafka is now completely accessible from Rust.
    • โœ… The test suite will now run both unit tests and integration tests in valgrind, and it will also check for memory leaks.
    • rdkafka-sys will use the system librdkafka if it's already installed.
    • rdkafka-sys will verify that the crate version corresponds to the librdkafka version during the build.
    • Timestamp is now Copy.
    • Message has been renamed to BorrowedMessage. Borrowed messages can be transformed into owned messages. Both implement the new Message trait.
    • ๐Ÿ‘Œ Improved error enumerations.

    ๐Ÿ› Bugs

    • ๐Ÿ›  Fix memory access bug in statistics callback.
    • ๐Ÿ›  Fix memory leak in topic partition list.
    • Messages lifetime is now explicit (issue #48)