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.Cursormodule, thanks to Bardur Arantsson. -
Made the
FromFieldinstance forCharcompatible with postgresql'sbpchartype. Thanks to Ivan Lazar Miljenovic for reporting the issue. -
Added
ShowandEqinstances forNotification, thanks to Matvey Aksenov. -
Fixed some example code, thanks to Matvey Aksenov.
-
Fixed a problem with using
conversionErrorto throw exceptions of typeSomeException. Previously, the exception would be wrapped in a secondSomeExceptiondynamic constructor which would cause normal GHC typecase idioms overSomeExceptionto fail.