Skip to content

Releases: blackbeam/mysql_async

v0.26.1

20 Feb 08:48

Choose a tag to compare

Fixes

  • Backports #149 from v0.27.x

v0.27.0

06 Feb 19:40

Choose a tag to compare

Breaking

  • Now the StatementLike trait is usable in more contexts;

Fixes

v0.25.1

11 Jan 05:48

Choose a tag to compare

Backport fixes from v0.26.0.

v0.26.0

10 Jan 09:19

Choose a tag to compare

Breaking changes

  • mysql_common bumped to v0.26
  • tokio bumped to v1
  • named pipes are temporary disabled (see tokio-rs/tokio#3388)

Improvements

  • lru updated to v0.6.0
  • multiple pem certs are now allowed in SslOpts::with_root_cert_path

Fixes

Thanks

v0.25.0

01 Oct 06:06

Choose a tag to compare

Changes and fixes:

v0.24.2

28 Aug 07:59

Choose a tag to compare

v0.24.1

24 Aug 19:27

Choose a tag to compare

v0.24.0

23 Jul 20:35

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

Choose a tag to compare

  • Ignore NotConnected (ENOTCONN) in Stream::close

v0.23.0

29 Mar 09:38

Choose a tag to compare

Breaking changes:

Fixes: