Releases: blackbeam/mysql_async
Releases · blackbeam/mysql_async
v0.25.0
v0.24.2
- #124 was reported and fixed in #125 (thanks to @glyphpoch);
- #126 was reported and fixed (thanks to @nemosupremo);
- blackbeam/rust-mysql-simple#248 was ported to mysql_async
v0.24.1
v0.24.0
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.
UseQueryable::query_iter
andQueryable::exec_iter
if you need more flexibility. -
Query
trait was introduced. It allows you to run queries directly on a Pool and to create 'staticQueryResult
s -
Thick
Stmt
structure was removed in favor of theStatement
structure, which is a thin wrapper over raw statement identifier and metadata.