Kafka Rust Client v0.8.0 Release Notes

Release Date: 2019-09-10 // over 4 years ago
    • ๐Ÿ’ฅ Upgrade openssl to v0.10. This may be a breaking change for your application code, since openssl v0.10 is a breaking change. Thanks to @l4l!
    • ๐Ÿ”ง Run integration tests on various configurations with compression and encryption.

Previous changes from v0.7.0

  • ๐Ÿ›  Fixed

    • ๐Ÿ’ฅ [BREAKING] Fixed #101. The Consumer was erroneously committing the offset of the last consumed message instead of the next offset that it should read, which is what the Kafka protocol specifies it should be. This means that:

      • When you upgrade, your consumers will read the last message it consumed again.
      • The consumers will now be committing one offset past where they were before. If you've come to rely on this behavior in any way, you should correct it.