Releases: sfackler/rust-postgres
Releases · sfackler/rust-postgres
postgres-openssl v0.1.0
- Initial release
postgres-native-tls v0.1.0
- Initial release
postgres-shared v0.4.2
postgres-shared-v0.4.2 Release postgres-shared 0.4.2
postgres v0.15.2
- TCP connect timeouts are now supported via the
connect_timeout
parameter. For example, thepostgresql://postgres@my_db?connect_timeout=10
will apply a 10 second timeout. - Fixed handling of DB errors when listening for notifications.
Cow<str>
now implementsToSql
.
postgres-shared v0.4.1
postgres-shared-v0.4.1 Release postgres-shared v0.4.1
postgres-protocol v0.3.2
- Upgraded dependencies.
tokio-postgres v0.3.0
- The connection/transaction is unconditionally returned along with an error, which should greatly simplify error handling.
postgres-protocol v0.3.1
- Upgrade dependencies.
postgres v0.15.1
- Expose
accepts!
andto_sql_checked!
macros in postgres.
postgres v0.15.0
- Upgrade chrono to 0.5.
- Upgrade eui48 to 0.3.
- Make
SqlState
an opaque type rather than an enum. Const instances of defined error codes are provided for matching. - Make
Type
an opaque type rather than an enum. Const instances of known types are provided for matching. - Remove
ConnectError
and makeError
an opaque type. Accessor methods are provided to introspect the internal error.