Skip to content

Releases: blackbeam/mysql_async

v0.25.0

01 Oct 06:06
Compare
Choose a tag to compare

Changes and fixes:

v0.24.2

28 Aug 07:59
Compare
Choose a tag to compare

v0.24.1

24 Aug 19:27
Compare
Choose a tag to compare

v0.24.0

23 Jul 20:35
Compare
Choose a tag to compare

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

19 Jun 07:46
Compare
Choose a tag to compare
  • Ignore NotConnected (ENOTCONN) in Stream::close

v0.23.0

29 Mar 09:38
Compare
Choose a tag to compare

Breaking changes:

Fixes:

v0.22.2

23 Mar 16:54
Compare
Choose a tag to compare

v0.22.1

10 Mar 05:06
Compare
Choose a tag to compare

v0.22.0

02 Mar 20:32
Compare
Choose a tag to compare
  • 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

15 Dec 17:50
Compare
Choose a tag to compare
  • #88 was fixed