cassandra-rs v0.12.0 Release Notes

Release Date: 2018-12-04 // over 5 years ago
  • ๐Ÿ›  Fixed

    • No longer leaks all CassResults. ### ๐Ÿ”„ Changed
    • โšก๏ธ Updated cassandra-cpp-sys to 0.12.
    • โšก๏ธ Updated cassandra-cpp-driver to 2.10.0
    • ๐Ÿ‘ cql protocol version 2 is no longer supported.
    • ๐Ÿ’ฅ Breaking changes: The Cassandra WriteType UKNOWN is now called UNKNOWN There is a new Cassandra error code LIB_EXECUTION_PROFILE_INVALID There is a new Cassandra value type: DURATION
    • ResultIterator now has a lifetime parameter. The underlying CassResult must live for at least as long as the iterator.
    • CassResult is no longer IntoIterator; instead &CassResult is. You must change code like for row in result to for row in &result and ensure result lives long enough.