File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/
66
77## [ Unreleased]
88
9+ ## [ 0.5.0] - 2024-07-19
10+
911* Added type ` diesel_async::pooled_connection::mobc::PooledConnection `
1012* MySQL/MariaDB now use ` CLIENT_FOUND_ROWS ` capability to allow consistent behaviour with PostgreSQL regarding return value of UPDATe commands.
1113* The minimal supported rust version is now 1.78.0
@@ -61,7 +63,6 @@ in the pool should be checked if they are still valid
6163
6264* Fix prepared statement leak for the mysql backend implementation
6365
64-
6566## 0.1.0 - 2022-09-27
6667
6768* Initial release
@@ -75,4 +76,5 @@ in the pool should be checked if they are still valid
7576[ 0.3.2 ] : https://github.com/weiznich/diesel_async/compare/v0.3.1...v0.3.2
7677[ 0.4.0 ] : https://github.com/weiznich/diesel_async/compare/v0.3.2...v0.4.0
7778[ 0.4.1 ] : https://github.com/weiznich/diesel_async/compare/v0.4.0...v0.4.1
78- [ Unreleased ] : https://github.com/weiznich/diesel_async/compare/v0.4.1...main
79+ [ 0.5.0 ] : https://github.com/weiznich/diesel_async/compare/v0.4.0...v0.5.0
80+ [ Unreleased ] : https://github.com/weiznich/diesel_async/compare/v0.5.0...main
Original file line number Diff line number Diff line change @@ -61,6 +61,9 @@ sqlite = ["diesel/sqlite", "sync-connection-wrapper"]
6161sync-connection-wrapper = [" tokio/rt" ]
6262async-connection-wrapper = [" tokio/net" ]
6363r2d2 = [" diesel/r2d2" ]
64+ bb8 = [" dep:bb8" ]
65+ mobc = [" dep:mobc" ]
66+ deadpool = [" dep:deadpool" ]
6467
6568[[test ]]
6669name = " integration_tests"
Original file line number Diff line number Diff line change 1919//!
2020//! * [`AsyncMysqlConnection`] (enabled by the `mysql` feature)
2121//! * [`AsyncPgConnection`] (enabled by the `postgres` feature)
22- //! * [`SyncConnectionWrapper`] (enabled by the `sync-connection-wrapper` feature)
22+ //! * [`SyncConnectionWrapper`] (enabled by the `sync-connection-wrapper`/`sqlite` feature)
2323//!
2424//! Ordinary usage of `diesel-async` assumes that you just replace the corresponding sync trait
2525//! method calls and connections with their async counterparts.
You can’t perform that action at this time.
0 commit comments