packages feed

esqueleto 0.2.3 → 0.2.4

raw patch · 3 files changed

+4/−4 lines, 3 filesdep ~transformersPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: transformers

API changes (from Hackage documentation)

Files

esqueleto.cabal view
@@ -1,5 +1,5 @@ name:                esqueleto-version:             0.2.3+version:             0.2.4 synopsis:            Bare bones, type-safe EDSL for SQL queries on persistent backends. homepage:            https://github.com/meteficha/esqueleto license:             BSD3@@ -58,7 +58,7 @@       base                 == 4.5.*     , text                 == 0.11.*     , persistent           >= 1.0.1  && < 1.1-    , transformers         == 0.3.*+    , transformers         >= 0.2     , unordered-containers >= 0.2      , monad-logger
src/Database/Esqueleto.hs view
@@ -269,7 +269,7 @@ -- order because that helps composability (see the documentation -- of 'on' for more details). ----- We also currently supports @UPDATE@ and @DELETE@ statements.+-- We also currently support @UPDATE@ and @DELETE@ statements. -- For example: -- -- @
src/Database/Esqueleto/Internal/Language.hs view
@@ -138,7 +138,7 @@   -- | Execute a subquery @SELECT@ in an expression.   sub_select :: PersistField a => query (expr (Value a)) -> expr (Value a) -  -- | Execute a subquery @SELECT_DISTINCT@ in an expression.+  -- | Execute a subquery @SELECT DISTINCT@ in an expression.   sub_selectDistinct :: PersistField a => query (expr (Value a)) -> expr (Value a)    -- | Project a field of an entity.