Skip to content

Releases: blackbeam/mysql_async

v0.16.0

19 Dec 20:46
Compare
Choose a tag to compare

Fixed issues:

  • New methods: QueryResult::columns(..) and QueryResult::columns_ref(..) (fix #31)
  • Ssl identity is now optional in SslOpts (fix #32)

Improvements:

  • tokio-core removed in favor of tokio
  • tokio-codec now used for packet parsing

v0.15.1

10 Oct 18:56
Compare
Choose a tag to compare

v0.15.0

05 Aug 11:49
Compare
Choose a tag to compare
  • caching_sha2_password support was implemented;
  • library switched to the tokio crate.

v0.14.2

22 May 22:18
Compare
Choose a tag to compare
  • Packet parsing was cleaned up by @yjh0502 (see #25)
  • Also empty result sets now handled correctly

v0.14.1

27 Mar 19:42
Compare
Choose a tag to compare

v0.14.0

22 Mar 20:10
Compare
Choose a tag to compare

#17 fixed in colaborative work with @jonhoo

v0.13.0

21 Mar 14:51
Compare
Choose a tag to compare

v0.12.1

06 Oct 14:37
Compare
Choose a tag to compare
  • SslOpts::set_root_cert_path added.

v0.11.1

15 Jul 09:06
Compare
Choose a tag to compare
  • Stmt, TextProtocol and BinaryProtocol reexported by @tomc1998 (see #12)

v0.11.0

30 Jun 20:02
Compare
Choose a tag to compare
  • Capped client side statement cache added as well as new stmt_cache_size option and connection url parameter.
  • Stmt::batch and Queryable::batch_exec now takes IntoIter<P> where Params: From<P> instead of Vec<Into<Params>>
  • Stmt::unwrap() removed and Stmt::close() added as a part of stmt_cache_size implementation.