Skip to content

Commit 9226618

Browse files
committed
Release tokio-postgres v0.7.11
1 parent 6b4566b commit 9226618

File tree

5 files changed

+25
-7
lines changed

5 files changed

+25
-7
lines changed

postgres-native-tls/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ runtime = ["tokio-postgres/runtime"]
1919
native-tls = "0.2"
2020
tokio = "1.0"
2121
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 }
2323

2424
[dev-dependencies]
2525
futures-util = "0.3"

postgres-openssl/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ runtime = ["tokio-postgres/runtime"]
1919
openssl = "0.10"
2020
tokio = "1.0"
2121
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 }
2323

2424
[dev-dependencies]
2525
futures-util = "0.3"

postgres/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ bytes = "1.0"
4040
fallible-iterator = "0.2"
4141
futures-util = { version = "0.3.14", features = ["sink"] }
4242
log = "0.4"
43-
tokio-postgres = { version = "0.7.10", path = "../tokio-postgres" }
43+
tokio-postgres = { version = "0.7.11", path = "../tokio-postgres" }
4444
tokio = { version = "1.0", features = ["rt", "time"] }
4545

4646
[dev-dependencies]

tokio-postgres/CHANGELOG.md

+21-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,28 @@
22

33
## Unreleased
44

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+
525
* 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>`.
927

1028
## v0.7.10 - 2023-08-25
1129

tokio-postgres/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tokio-postgres"
3-
version = "0.7.10"
3+
version = "0.7.11"
44
authors = ["Steven Fackler <[email protected]>"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)