redis-rs v0.14.0 Release Notes

Release Date: 2020-01-08 // over 4 years ago
  • ๐Ÿ›  Fixes and improvements

    • ๐Ÿ›  Fix the command verb being sent to redis for zremrangebyrank (#240)
    • Add get_connection_with_timeout to Client (#243)
    • ๐Ÿ’ฅ Breaking change: Add Cmd::get, Cmd::set and remove PipelineCommands (#253)
    • Async-ify the API (#232)
    • โฌ†๏ธ Bump minimal required Rust version to 1.39 (required for the async/await API)
    • โž• Add async/await examples (#261, #263)
    • โž• Added support for PSETEX and PTTL commands. (#259)

    ๐Ÿ’ฅ Breaking changes

    โž• Add Cmd::get, Cmd::set and remove PipelineCommands (#253)

    ๐Ÿšš If you are using pipelines and were importing the PipelineCommands trait you can now remove that import and only use the Commands trait.

    Old:

    use redis::{Commands, PipelineCommands};
    

    ๐Ÿ†• New:

    use redis::Commands;