Skip to content

Releases: blackbeam/mysql_async

v0.25.1

11 Jan 05:48
Compare
Choose a tag to compare

Backport fixes from v0.26.0.

v0.26.0

10 Jan 09:19
Compare
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
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