Changelog for postgresql-simple-0.5.3.0
For the full changelog, see https://github.com/lpsmith/postgresql-simple/blob/master/CHANGES.md
Version 0.5.3.0 (2017-05-15)
-
Refactored some rudimentary cursor handling code out of the implementation of the fold operators, into a new
Database.PostgreSQL.Simple.Cursor
module, thanks to Bardur Arantsson. -
Made the
FromField
instance forChar
compatible with postgresql'sbpchar
type. Thanks to Ivan Lazar Miljenovic for reporting the issue. -
Added
Show
andEq
instances forNotification
, thanks to Matvey Aksenov. -
Fixed some example code, thanks to Matvey Aksenov.
-
Fixed a problem with using
conversionError
to throw exceptions of typeSomeException
. Previously, the exception would be wrapped in a secondSomeException
dynamic constructor which would cause normal GHC typecase idioms overSomeException
to fail.