antiope-dynamodb 3.1.0 → 4.0.0
raw patch · 3 files changed
+8/−10 lines, 3 filesdep +antiope-corePVP ok
version bump matches the API change (PVP)
Dependencies added: antiope-core
API changes (from Hackage documentation)
- Antiope.DynamoDB: class FromText a
- Antiope.DynamoDB: class ToText a
- Antiope.DynamoDB: fromText :: FromText a => Text -> Either String a
- Antiope.DynamoDB: parser :: FromText a => Parser a
- Antiope.DynamoDB: toText :: ToText a => a -> Text
- Antiope.DynamoDB.Classy: class FromText a
- Antiope.DynamoDB.Classy: class ToText a
- Antiope.DynamoDB.Classy: fromText :: FromText a => Text -> Either String a
- Antiope.DynamoDB.Classy: parser :: FromText a => Parser a
- Antiope.DynamoDB.Classy: toText :: ToText a => a -> Text
Files
antiope-dynamodb.cabal view
@@ -2,10 +2,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: d6344dfa4d1e0d1bb75a324687e8092b4dee58a3e332717ebfa3b0ac63a64314+-- hash: 13aa05fc6d4d0372f22f9dd34e85badcfb85d2974c3d17b2b816e027d2dd1439 name: antiope-dynamodb-version: 3.1.0+version: 4.0.0 description: Please see the README on Github at <https://github.com/arbor/antiope#readme> category: Services homepage: https://github.com/arbor/antiope#readme@@ -34,6 +34,7 @@ amazonka , amazonka-core , amazonka-dynamodb+ , antiope-core , base >=4.7 && <5 , generic-lens , lens@@ -59,6 +60,7 @@ amazonka , amazonka-core , amazonka-dynamodb+ , antiope-core , antiope-dynamodb , base >=4.7 && <5 , generic-lens
src/Antiope/DynamoDB.hs view
@@ -1,21 +1,19 @@ {-# LANGUAGE ScopedTypeVariables #-} module Antiope.DynamoDB-( FromText(..), fromText-, ToText(..)-, TableName(..)+( TableName(..) , dynamoPutItem , dynamoQuery , module Network.AWS.DynamoDB ) where +import Antiope.Core (ToText (..)) import Antiope.DynamoDB.Types (TableName (TableName)) import Control.Lens import Control.Monad.IO.Unlift (MonadUnliftIO) import Data.HashMap.Strict (HashMap) import Data.Text (Text) import Network.AWS (HasEnv)-import Network.AWS.Data.Text (FromText (..), ToText (..), fromText, toText) import Network.AWS.DynamoDB import qualified Network.AWS as AWS
src/Antiope/DynamoDB/Classy.hs view
@@ -1,20 +1,18 @@ {-# LANGUAGE ScopedTypeVariables #-} module Antiope.DynamoDB.Classy-( FromText(..), fromText-, ToText(..)-, TableName(..)+( TableName(..) , dynamoPutItem , dynamoQuery , module Network.AWS.DynamoDB ) where +import Antiope.Core (ToText (..)) import Antiope.DynamoDB.Types (TableName (TableName)) import Control.Lens import Data.HashMap.Strict (HashMap) import Data.Text (Text) import Network.AWS (MonadAWS)-import Network.AWS.Data.Text (FromText (..), ToText (..), fromText, toText) import Network.AWS.DynamoDB import qualified Network.AWS as AWS