Skip to content

Commit

Permalink
Release tokio-postgres v0.7.11
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Jul 22, 2024
1 parent 6b4566b commit 9226618
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 7 deletions.
2 changes: 1 addition & 1 deletion postgres-native-tls/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ runtime = ["tokio-postgres/runtime"]
native-tls = "0.2"
tokio = "1.0"
tokio-native-tls = "0.3"
tokio-postgres = { version = "0.7.0", path = "../tokio-postgres", default-features = false }
tokio-postgres = { version = "0.7.11", path = "../tokio-postgres", default-features = false }

[dev-dependencies]
futures-util = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion postgres-openssl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ runtime = ["tokio-postgres/runtime"]
openssl = "0.10"
tokio = "1.0"
tokio-openssl = "0.6"
tokio-postgres = { version = "0.7.0", path = "../tokio-postgres", default-features = false }
tokio-postgres = { version = "0.7.11", path = "../tokio-postgres", default-features = false }

[dev-dependencies]
futures-util = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion postgres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ bytes = "1.0"
fallible-iterator = "0.2"
futures-util = { version = "0.3.14", features = ["sink"] }
log = "0.4"
tokio-postgres = { version = "0.7.10", path = "../tokio-postgres" }
tokio-postgres = { version = "0.7.11", path = "../tokio-postgres" }
tokio = { version = "1.0", features = ["rt", "time"] }

[dev-dependencies]
Expand Down
24 changes: 21 additions & 3 deletions tokio-postgres/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,28 @@

## Unreleased

## v0.7.11 - 2024-07-21

### Fixed

* Fixed handling of non-UTF8 error fields which can be sent after failed handshakes.
* Fixed cancellation handling of `TransactionBuilder::start` futures.

### Added

* Added `table_oid` and `field_id` fields to `Columns` struct of prepared statements.
* Added `GenericClient::simple_query`.
* Added `#[track_caller]` to `Row::get` and `SimpleQueryRow::get`.
* Added `TargetSessionAttrs::ReadOnly`.
* Added `Debug` implementation for `Statement`.
* Added `Clone` implementation for `Row`.
* Added `SimpleQueryMessage::RowDescription`.
* Added `{Client, Transaction, GenericClient}::query_typed`.

### Changed

* Disable `rustc-serialize` compatibility of `eui48-1` dependency
* Remove tests for `eui48-04`
* Add `table_oid` and `field_id` fields to `Columns` struct of prepared statements.
* Add `GenericClient::simple_query`.
* Config setters now take `impl Into<String>`.

## v0.7.10 - 2023-08-25

Expand Down
2 changes: 1 addition & 1 deletion tokio-postgres/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tokio-postgres"
version = "0.7.10"
version = "0.7.11"
authors = ["Steven Fackler <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down

0 comments on commit 9226618

Please sign in to comment.