All Versions
20
Latest Version
Avg Release Cycle
58 days
Latest Release
1039 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v20.1.0 Changes
November 20, 2020 -
v20.0.1 Changes
October 04, 2020๐ This release removes some obvious inefficiencies in client-server communication (5-40 % improvement in diesel-rs/diesel#2507)
-
v20.0.0 Changes
September 28, 2020 -
v19.0.0 Changes
August 24, 2020- โก๏ธ
mysql_common
was updated to v0.22.2, - tests for blackbeam/mysql_async#107 was added,
- ๐ pool exhaustion was fixed by @SpaceManiac (#226),
- ๐ the
net2
crate was removed in favor of thesocket2
crate (#233), - the
Protocol
trait was exported by @mguillemot-elt (#235), - ๐ various fixes in documentation (thanks to @dbanty, @nbrady-techempower, @Elykz, @eldad)
- ๐ #244 and related issues were fixed (hopefully)
- โก๏ธ
-
v18.2.0 Changes
April 07, 2020๐ New APIs:
- a set of non-panicking methods (named
*_opt
) was added toQueryable
,TextQuery
andBinQuery
traits.
- a set of non-panicking methods (named
-
v18.1.0 Changes
March 25, 2020โ Additions:
- new methods
Transaction::{last_insert_id, affected_rows, warnings, info_ref, info_str}
,Conn::{warnings, info_ref, info_str}
(see #211)
Internal improvements:
Conn
size reduced to 8 bytes.
- new methods
-
v18.0.0 Changes
March 01, 2020๐ฅ Breaking changes:
- ๐
Conn::{query, first, *_exec, ...}
were removed in favor ofQueryable
trait (see crate level docs); - ๐
Pool::{prepare, *_exec, ...}
were removed in favor ofTextQuery
andBinQuery
traits (see crate level docs); - ๐ helpers for batch statement execution were added in forms of
Queryable::batch_exec
method andBatchQuery
trait (see crate level docs); - ๐
Stmt
was removed in favor of the newStatement
structure, which is a thin wrapper around statement identifier. There are few caveats, please consult the corresponding section in the crate docs; OptsBuilder
andSslOpts
methods now takes self by value;QueryResult
interface was altered;start_transaction
now takes newTxOpts
structure;
- ๐
-
v17.0.0 Changes
November 04, 2019 -
v16.1.0 Changes
August 18, 2019- ๐ @killme2008 found and fixed #176
- ๐
rustc-serialize
support was removed (#184) - ๐ #182 was fixed
socket
parameter was added to connection URL (#181)