All Versions
15
Latest Version
Avg Release Cycle
29 days
Latest Release
1296 days ago

Changelog History
Page 1

  • v0.25.0 Changes

    October 01, 2020

    ๐Ÿ”„ Changes and fixes:

  • v0.24.2 Changes

    August 28, 2020
  • v0.24.1 Changes

    August 24, 2020
  • v0.24.0 Changes

    July 23, 2020

    API changes

    library switched to non-consuming API:

    // pre 0.24.0:let conn = conn.query\_drop("DO 1").await?;// 0.24.0:conn.query\_drop("DO 1").await?;
    

    โšก๏ธ Queryable trait was updated and now it is more convenient to work with usual single-result sets.
    Use Queryable::query_iter and Queryable::exec_iter if you need more flexibility.

    Query trait was introduced. It allows you to run queries directly on a Pool and to create 'static QueryResults

    ๐Ÿ“‡ Thick Stmt structure was removed in favor of the Statement structure, which is a thin wrapper over raw statement identifier and metadata.

    ๐Ÿ›  Fixes

  • v0.23.1 Changes

    June 19, 2020
    • Ignore NotConnected (ENOTCONN) in Stream::close
  • v0.23.0 Changes

    March 29, 2020

    ๐Ÿ’ฅ Breaking changes:

    ๐Ÿ›  Fixes:

  • v0.22.2 Changes

    March 23, 2020
    • ๐Ÿ›  #105 was fixed;
  • v0.22.1 Changes

    March 10, 2020
    • ๐Ÿ›  #100 was fixed;
  • v0.22.0 Changes

    March 02, 2020
    • pool was simplified by @jonhoo (see #92, #97);
    • the info field of mysql ok packet was exposed (see #93, #98);
    • ๐Ÿ‘€ ipv6 parsing for URLs was fixed by @HarveyHunt (see #95);
  • v0.21.1 Changes

    December 15, 2019
    • ๐Ÿ›  #88 was fixed