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/
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ 0.5.0] - 2024-07-19
10
+
9
11
* Added type ` diesel_async::pooled_connection::mobc::PooledConnection `
10
12
* MySQL/MariaDB now use ` CLIENT_FOUND_ROWS ` capability to allow consistent behaviour with PostgreSQL regarding return value of UPDATe commands.
11
13
* 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
61
63
62
64
* Fix prepared statement leak for the mysql backend implementation
63
65
64
-
65
66
## 0.1.0 - 2022-09-27
66
67
67
68
* Initial release
@@ -75,4 +76,5 @@ in the pool should be checked if they are still valid
75
76
[ 0.3.2 ] : https://github.com/weiznich/diesel_async/compare/v0.3.1...v0.3.2
76
77
[ 0.4.0 ] : https://github.com/weiznich/diesel_async/compare/v0.3.2...v0.4.0
77
78
[ 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"]
61
61
sync-connection-wrapper = [" tokio/rt" ]
62
62
async-connection-wrapper = [" tokio/net" ]
63
63
r2d2 = [" diesel/r2d2" ]
64
+ bb8 = [" dep:bb8" ]
65
+ mobc = [" dep:mobc" ]
66
+ deadpool = [" dep:deadpool" ]
64
67
65
68
[[test ]]
66
69
name = " integration_tests"
Original file line number Diff line number Diff line change 19
19
//!
20
20
//! * [`AsyncMysqlConnection`] (enabled by the `mysql` feature)
21
21
//! * [`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)
23
23
//!
24
24
//! Ordinary usage of `diesel-async` assumes that you just replace the corresponding sync trait
25
25
//! method calls and connections with their async counterparts.
You can’t perform that action at this time.
0 commit comments