squeal-postgresql 0.1.1.1 → 0.1.1.2
raw patch · 2 files changed
+3/−3 lines, 2 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- Squeal.PostgreSQL.PQ: forPrepared_ :: (MonadPQ schema pq, ToParams x params, Traversable list) => list x -> Manipulation schema params '[] -> pq ()
+ Squeal.PostgreSQL.PQ: forPrepared_ :: (MonadPQ schema pq, ToParams x params, Foldable list) => list x -> Manipulation schema params '[] -> pq ()
Files
squeal-postgresql.cabal view
@@ -1,5 +1,5 @@ name: squeal-postgresql-version: 0.1.1.1+version: 0.1.1.2 synopsis: Squeal PostgreSQL Library description: Squeal is a type-safe embedding of PostgreSQL in Haskell homepage: https://github.com/morphismtech/squeal
src/Squeal/PostgreSQL/PQ.hs view
@@ -199,7 +199,7 @@ -- | Run a `Definition` with `LibPQ.exec`, we expect that libpq obeys the law ----- @pqThen (define statement2) statement1 = define (statement2 . statement1)@+-- @define statement1 & thenDefine statement2 = define (statement1 >>> statement2)@ define :: MonadBase IO io => Definition schema0 schema1@@ -317,7 +317,7 @@ traversePrepared_ manipulation params forPrepared_- :: (ToParams x params, Traversable list)+ :: (ToParams x params, Foldable list) => list x -> Manipulation schema params '[] -- ^ `insertInto`, `update` or `deleteFrom`