File tree 5 files changed +25
-7
lines changed
5 files changed +25
-7
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ runtime = ["tokio-postgres/runtime"]
19
19
native-tls = " 0.2"
20
20
tokio = " 1.0"
21
21
tokio-native-tls = " 0.3"
22
- tokio-postgres = { version = " 0.7.0 " , path = " ../tokio-postgres" , default-features = false }
22
+ tokio-postgres = { version = " 0.7.11 " , path = " ../tokio-postgres" , default-features = false }
23
23
24
24
[dev-dependencies ]
25
25
futures-util = " 0.3"
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ runtime = ["tokio-postgres/runtime"]
19
19
openssl = " 0.10"
20
20
tokio = " 1.0"
21
21
tokio-openssl = " 0.6"
22
- tokio-postgres = { version = " 0.7.0 " , path = " ../tokio-postgres" , default-features = false }
22
+ tokio-postgres = { version = " 0.7.11 " , path = " ../tokio-postgres" , default-features = false }
23
23
24
24
[dev-dependencies ]
25
25
futures-util = " 0.3"
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ bytes = "1.0"
40
40
fallible-iterator = " 0.2"
41
41
futures-util = { version = " 0.3.14" , features = [" sink" ] }
42
42
log = " 0.4"
43
- tokio-postgres = { version = " 0.7.10 " , path = " ../tokio-postgres" }
43
+ tokio-postgres = { version = " 0.7.11 " , path = " ../tokio-postgres" }
44
44
tokio = { version = " 1.0" , features = [" rt" , " time" ] }
45
45
46
46
[dev-dependencies ]
Original file line number Diff line number Diff line change 2
2
3
3
## Unreleased
4
4
5
+ ## v0.7.11 - 2024-07-21
6
+
7
+ ### Fixed
8
+
9
+ * Fixed handling of non-UTF8 error fields which can be sent after failed handshakes.
10
+ * Fixed cancellation handling of ` TransactionBuilder::start ` futures.
11
+
12
+ ### Added
13
+
14
+ * Added ` table_oid ` and ` field_id ` fields to ` Columns ` struct of prepared statements.
15
+ * Added ` GenericClient::simple_query ` .
16
+ * Added ` #[track_caller] ` to ` Row::get ` and ` SimpleQueryRow::get ` .
17
+ * Added ` TargetSessionAttrs::ReadOnly ` .
18
+ * Added ` Debug ` implementation for ` Statement ` .
19
+ * Added ` Clone ` implementation for ` Row ` .
20
+ * Added ` SimpleQueryMessage::RowDescription ` .
21
+ * Added ` {Client, Transaction, GenericClient}::query_typed ` .
22
+
23
+ ### Changed
24
+
5
25
* Disable ` rustc-serialize ` compatibility of ` eui48-1 ` dependency
6
- * Remove tests for ` eui48-04 `
7
- * Add ` table_oid ` and ` field_id ` fields to ` Columns ` struct of prepared statements.
8
- * Add ` GenericClient::simple_query ` .
26
+ * Config setters now take ` impl Into<String> ` .
9
27
10
28
## v0.7.10 - 2023-08-25
11
29
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " tokio-postgres"
3
- version = " 0.7.10 "
3
+ version = " 0.7.11 "
4
4
authors = [
" Steven Fackler <[email protected] >" ]
5
5
edition = " 2018"
6
6
license = " MIT OR Apache-2.0"
You can’t perform that action at this time.
0 commit comments