Releases · rust-postgres/rust-postgres

tokio-postgres v0.7.17

Added

  • Added Client::execute_typed method.
  • Added Client::query_typed_one and Client::query_typed_opt methods.
  • Added GenericClient::execute_typed, GenericClient::query_typed_one, and GenericClient::query_typed_opt methods.
  • Added Transaction::execute_typed, Transaction::query_typed_one, and Transaction::query_typed_opt methods.
  • Added support for bit-vec 0.9 via the with-bit-vec-0_9 feature.

Changed

  • Upgraded rand to 0.10.
  • Upgraded to Rust edition 2024, minimum Rust version 1.85.

postgres v0.19.13

Added

  • Added Client::execute_typed method.
  • Added Client::query_typed_one and Client::query_typed_opt methods.
  • Added GenericClient::execute_typed, GenericClient::query_typed_one, and GenericClient::query_typed_opt methods.
  • Added Transaction::execute_typed, Transaction::query_typed_one, and Transaction::query_typed_opt methods.
  • Added support for bit-vec 0.9 via the with-bit-vec-0_9 feature.

Changed

  • Upgraded to Rust edition 2024, minimum Rust version 1.85.

postgres-types v0.2.13

Added

  • Added support for bit-vec 0.9 via the with-bit-vec-0_9 feature.

Changed

  • Upgraded to Rust edition 2024, minimum Rust version 1.85.

postgres-protocol v0.6.11

Changed

  • Upgraded hmac to 0.13.
  • Upgraded md-5 to 0.11.
  • Upgraded sha2 to 0.11.
  • Upgraded rand to 0.10.
  • Upgraded to Rust edition 2024, minimum Rust version 1.85.

postgres-openssl v0.5.3

Changed

  • Upgraded to Rust edition 2024, minimum Rust version 1.85.

postgres-native-tls v0.5.3

Changed

  • Upgraded to Rust edition 2024, minimum Rust version 1.85.

postgres-derive v0.4.8

Changed

  • Upgraded to Rust edition 2024, minimum Rust version 1.85.

tokio-postgres v0.7.16

Added

  • Added Client::query_scalar, Client::query_one_scalar, and Client::query_opt_scalar methods.
  • Added Row::raw_size_bytes method.
  • Added Column::type_modifier method.

Changed

  • Upgraded whoami to v2.

postgres-types v0.2.12

Added

  • Added ToSql implementation for Box<T> where T: ToSql.

postgres-protocol v0.6.10

Added

  • Implemented FallibleIterator::size_hint for Fields.

Fixed

  • Increased bind parameter limit from i16::MAX to u16::MAX.