Skip to content

Releases: blackbeam/mysql_async

v0.10.1

20 Jun 21:06
Compare
Choose a tag to compare
  • improved documentation for FromRow and panic message in from_row (#10)
  • @boxofrox found and fixed bug in packet parser (#11)

v0.10.0

28 May 19:10
Compare
Choose a tag to compare

Library rewritten for simplicity but migration should be easy.

  1. All of *query and *exec methods now in the Queryable trait which is implemented for Conn and Transaction.
  2. Now there is a single QueryResult type generic over queryable and protocol.
  3. QueryResult got *_and_drop methods for collect, for_each, map and reduce to simplify work for cases when you sure that there is no more result sets in a query result.
  4. For all methods of QueryResult and Queryable order of elements in returned tuples changed and self is now in first place.

v0.9.3

21 May 10:35
Compare
Choose a tag to compare

Changes:

v0.9.2

07 May 14:52
Compare
Choose a tag to compare

Pool::start_transaction added.

v0.9.1

07 May 14:44
Compare
Choose a tag to compare

Transaction::drop_query and Transaction::drop_exec added.

v0.2.0

17 Nov 19:50
Compare
Choose a tag to compare

Changes:

  • fix for send_long_data implementation
  • Conn::reset implementation improved (thanks to @BrunoQC)
  • basic transactions API implemented
  • bug fix for parse_named_params (thanks to @BrunoQC)