Releases: blackbeam/rust-mysql-simple
Releases · blackbeam/rust-mysql-simple
v14.0.0
Support of caching_sha2_password
authentication plugin added.
v13.0.0
- compression support was added. Use the
compress
function on OptsBuilder
or the compress
parameter of a connection URL (fixes #130).
- added a way to set additional capabilities for connection. See docs on
OptsBuilder::additional_capabilities
(fixes #142)
v12.2.0
- @jonhoo found and fixed #132. Note that now
TCP_NODELAY
is enabled by default. Please look into #132 and #134 for more info.
v12.0.4
- @kjmrknsn fixed version check against `TRANSACTION READ ONLY/WRITE".
v12.0.3
mysql_common
version bumped
- unnecessary
mut
removed from Row::{get, get_opt}
.
v12.0.1
params!
macro improved.
// now this:
params! { "foo" => foo, "bar" => baz };
// is equal to this:
params! { foo, "bar" => baz };
v12.0.0
- switch to
mysql_common
crate.