packages feed

hasql-backend 0.4.2 → 0.4.3

raw patch · 1 files changed

+5/−4 lines, 1 filesdep +basedep ~base-preludedep ~transformersPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependencies added: base

Dependency ranges changed: base-prelude, transformers

API changes (from Hackage documentation)

- Hasql.Backend: instance Functor (TxF c)
- Hasql.Backend: stmtParams :: Stmt c -> !(Vector (StmtParam c))
- Hasql.Backend: stmtPreparable :: Stmt c -> !Bool
- Hasql.Backend: stmtTemplate :: Stmt c -> !Text
+ Hasql.Backend: [stmtParams] :: Stmt c -> !(Vector (StmtParam c))
+ Hasql.Backend: [stmtPreparable] :: Stmt c -> !Bool
+ Hasql.Backend: [stmtTemplate] :: Stmt c -> !Text
+ Hasql.Backend: instance GHC.Base.Functor (Hasql.Backend.TxF c)
+ Hasql.Backend: type family TxError c;
+ Hasql.Backend: }
- Hasql.Backend: class Cx c where type family CxSettings c type family CxError c
+ Hasql.Backend: class Cx c where type CxSettings c type CxError c where {
- Hasql.Backend: class CxTx c where type family TxError c
+ Hasql.Backend: class CxTx c where type TxError c where {

Files

hasql-backend.cabal view
@@ -1,7 +1,7 @@ name:   hasql-backend version:-  0.4.2+  0.4.3 synopsis:   API for backends of "hasql" description:@@ -53,10 +53,11 @@     either >= 4.3 && < 5,     free >= 4.6 && < 5,     list-t < 0.5,-    transformers >= 0.3 && < 0.5,+    transformers >= 0.3 && < 0.6,     -- general:-    base-prelude < 0.2+    base-prelude < 2,+    base == 4.*   default-extensions:-    Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFunctor, DeriveGeneric, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, ImpredicativeTypes, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators, UnboxedTuples+    Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFoldable, DeriveFunctor, DeriveGeneric, DeriveTraversable, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators, UnboxedTuples   default-language:     Haskell2010