packages feed

amazonka-dynamodb 1.3.4 → 1.3.5

raw patch · 4 files changed

+10/−6 lines, 4 filesdep ~amazonka-coredep ~amazonka-dynamodbdep ~amazonka-testPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: amazonka-core, amazonka-dynamodb, amazonka-test

API changes (from Hackage documentation)

Files

README.md view
@@ -8,7 +8,7 @@  ## Version -`1.3.4`+`1.3.5`   ## Description
amazonka-dynamodb.cabal view
@@ -1,5 +1,5 @@ name:                  amazonka-dynamodb-version:               1.3.4+version:               1.3.5 synopsis:              Amazon DynamoDB SDK. homepage:              https://github.com/brendanhay/amazonka bug-reports:           https://github.com/brendanhay/amazonka/issues@@ -176,7 +176,7 @@         , Network.AWS.DynamoDB.Types.Sum      build-depends:-          amazonka-core == 1.3.4.*+          amazonka-core == 1.3.5.*         , base          >= 4.7     && < 5  test-suite amazonka-dynamodb-test@@ -196,9 +196,9 @@         , Test.AWS.DynamoDB.Internal      build-depends:-          amazonka-core == 1.3.4.*-        , amazonka-test == 1.3.4.*-        , amazonka-dynamodb == 1.3.4.*+          amazonka-core == 1.3.5.*+        , amazonka-test == 1.3.5.*+        , amazonka-dynamodb == 1.3.5.*         , base         , bytestring         , lens
gen/Network/AWS/DynamoDB/Query.hs view
@@ -702,6 +702,8 @@         page rq rs           | stop (rs ^. qrsLastEvaluatedKey) = Nothing           | stop (rs ^. qrsItems) = Nothing+          | stop (rs ^. qrsCount) = Nothing+          | stop (rs ^. qrsScannedCount) = Nothing           | otherwise =             Just $ rq &               qExclusiveStartKey .~ rs ^. qrsLastEvaluatedKey
gen/Network/AWS/DynamoDB/Scan.hs view
@@ -474,6 +474,8 @@         page rq rs           | stop (rs ^. srsLastEvaluatedKey) = Nothing           | stop (rs ^. srsItems) = Nothing+          | stop (rs ^. srsCount) = Nothing+          | stop (rs ^. srsScannedCount) = Nothing           | otherwise =             Just $ rq &               sExclusiveStartKey .~ rs ^. srsLastEvaluatedKey