1.6 KiB
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
0.2.0 - 2020-01-15
Fixed
Added
-
Support Tokio through an optional
runtime-tokiofeature. -
Support SQL transactions. You may now use the
begin()function onPoolorConnectionto start a new SQL transaction. This returnssqlx::Transactionwhich willROLLBACKonDropor can be explicitlyCOMMITusingcommit(). -
Support TLS connections.
0.1.4 - 2020-01-11
Fixed
Added
-
Support for
SCRAM-SHA-256authentication in Postgres #37 @danielakhterov -
Implement
Debugfor Pool #42 @prettynatty
0.1.3 - 2020-01-06
Fixed
0.1.2 - 2020-01-03
Added
-
Support for Authentication in MySQL 5+ including the newer authentication schemes now default in MySQL 8:
mysql_native_password,sha256_password, andcaching_sha2_password. -
Chronosupport for MySQL was only partially implemented (was missingNaiveTimeandDateTime<Utc>). -
Vec<u8>(and[u8]) support for MySQL (BLOB) and Postgres (BYTEA).