Update changelog

pull/1281/head v5.0.0-alpha.4
Jack Christensen 2022-06-25 18:11:39 -05:00
parent 03da9fcec6
commit 585022440b
1 changed files with 6 additions and 0 deletions

View File

@ -10,6 +10,12 @@ release work due to releasing multiple packages, and less clear changelogs.
`CommandTag` is now an opaque type instead of directly exposing an underlying `[]byte`.
`Trace()` method adds low level message tracing similar to the `PQtrace` function in `libpq`.
pgconn now uses non-blocking IO. This is a significant internal restructuring, but it should not cause any visible changes on its own. However, it is important in implementing other new features.
`CheckConn()` checks a connection's liveness by doing a non-blocking read. This can be used to detect database restarts or network interruptions without executing a query or a ping.
## pgtype
The `pgtype` package has been significantly changed.