hasql-pool 0.4.3.1 → 0.5
raw patch · 2 files changed
+4/−4 lines, 2 filesdep ~hasqlPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: hasql
API changes (from Hackage documentation)
- Hasql.Pool: ConnectionError :: !ConnectionError -> UsageError
+ Hasql.Pool: ConnectionError :: ConnectionError -> UsageError
- Hasql.Pool: SessionError :: !Error -> UsageError
+ Hasql.Pool: SessionError :: QueryError -> UsageError
Files
- hasql-pool.cabal +2/−2
- library/Hasql/Pool.hs +2/−2
hasql-pool.cabal view
@@ -1,7 +1,7 @@ name: hasql-pool version:- 0.4.3.1+ 0.5 category: Hasql, Database, PostgreSQL synopsis:@@ -49,7 +49,7 @@ -- resources: resource-pool >= 0.2 && < 0.3, -- database:- hasql >= 0.19 && < 0.20 || >= 1 && < 1.2,+ hasql >= 1.3 && < 1.4, -- data: time >= 1.5 && < 2, -- general:
library/Hasql/Pool.hs view
@@ -58,8 +58,8 @@ -- | -- A union over the connection establishment error and the session error. data UsageError =- ConnectionError !Hasql.Connection.ConnectionError |- SessionError !Hasql.Session.Error+ ConnectionError Hasql.Connection.ConnectionError |+ SessionError Hasql.Session.QueryError deriving (Show, Eq) -- |