packages feed

amazonka-s3 1.3.0 → 1.3.1

raw patch · 5 files changed

+12/−11 lines, 5 filesdep ~amazonka-coredep ~amazonka-s3dep ~amazonka-testPVP ok

version bump matches the API change (PVP)

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

API changes (from Hackage documentation)

Files

README.md view
@@ -8,7 +8,7 @@  ## Version -`1.3.0`+`1.3.1`   ## Description
amazonka-s3.cabal view
@@ -1,5 +1,5 @@ name:                  amazonka-s3-version:               1.3.0+version:               1.3.1 synopsis:              Amazon Simple Storage Service SDK. homepage:              https://github.com/brendanhay/amazonka bug-reports:           https://github.com/brendanhay/amazonka/issues@@ -108,7 +108,7 @@         , Network.AWS.S3.Types.Sum      build-depends:-          amazonka-core == 1.3.0.*+          amazonka-core == 1.3.1.*         , base          >= 4.7     && < 5         , lens >= 4.4         , text >= 1.1@@ -130,9 +130,9 @@         , Test.AWS.S3.Internal      build-depends:-          amazonka-core == 1.3.0.*-        , amazonka-test == 1.3.0.*-        , amazonka-s3 == 1.3.0.*+          amazonka-core == 1.3.1.*+        , amazonka-test == 1.3.1.*+        , amazonka-s3 == 1.3.1.*         , base         , bytestring         , lens
fixture/CopyObjectResponse.proto view
@@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> <CopyObjectResult>-  <LastModified>2009-10-28T22:32:00</LastModified>+  <LastModified>2009-10-28T22:32:00Z</LastModified>   <ETag>"9b2cf535f27731c974343645a3985328"</ETag> </CopyObjectResult>
gen/Network/AWS/S3/ListObjects.hs view
@@ -127,12 +127,12 @@  instance AWSPager ListObjects where         page rq rs-          | stop+          | stop (rs ^. lorsIsTruncated) = Nothing+          | isNothing               (rs ^.                  choice (^. lorsNextMarker)                    (^? (lorsContents . _last . oKey)))             = Nothing-          | stop (rs ^. lorsContents) = Nothing           | otherwise =             Just $ rq &               loMarker .~
gen/Network/AWS/S3/ListParts.hs view
@@ -129,8 +129,9 @@  instance AWSPager ListParts where         page rq rs-          | stop (rs ^. lprsNextPartNumberMarker) = Nothing-          | stop (rs ^. lprsParts) = Nothing+          | stop (rs ^. lprsIsTruncated) = Nothing+          | isNothing (rs ^. lprsNextPartNumberMarker) =+            Nothing           | otherwise =             Just $ rq &               lpPartNumberMarker .~ rs ^. lprsNextPartNumberMarker