All Versions
15
Latest Version
Avg Release Cycle
29 days
Latest Release
1630 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v0.25.0 Changes
October 01, 2020๐ Changes and fixes:
- ๐
Deref<Target=Conn>
was implemented forTransaction
(see #127) - ๐ blackbeam/rust-mysql-simple#249 was fixed (breaking)
- ๐
-
v0.24.2 Changes
August 28, 2020- ๐ #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 Changes
August 24, 2020QueryResult::new
is now public (by @IvanChepurnyi in #119)- ๐ #121 was found and fixed in #123 (thanks to @IvanChepurnyi)
- ๐ #96 and related issues were fixed in 4602469 (hopefully)
-
v0.24.0 Changes
July 23, 2020API 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.๐ Fixes
-
v0.23.1 Changes
June 19, 2020- Ignore NotConnected (ENOTCONN) in Stream::close
-
v0.23.0 Changes
March 29, 2020๐ฅ Breaking changes:
- โก๏ธ mysql_common was updated (see breaking changes in mysql_common v0.21.0)
๐ Fixes:
-
v0.22.2 Changes
March 23, 2020- ๐ #105 was fixed;
-
v0.22.1 Changes
March 10, 2020- ๐ #100 was fixed;
-
v0.22.0 Changes
March 02, 2020 -
v0.21.1 Changes
December 15, 2019- ๐ #88 was fixed