amazonka-route53 1.3.0 → 1.3.1
raw patch · 4 files changed
+10/−10 lines, 4 filesdep ~amazonka-coredep ~amazonka-route53dep ~amazonka-testPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: amazonka-core, amazonka-route53, amazonka-test
API changes (from Hackage documentation)
Files
- README.md +1/−1
- amazonka-route53.cabal +5/−5
- gen/Network/AWS/Route53/ListHealthChecks.hs +2/−2
- gen/Network/AWS/Route53/ListHostedZones.hs +2/−2
README.md view
@@ -8,7 +8,7 @@ ## Version -`1.3.0`+`1.3.1` ## Description
amazonka-route53.cabal view
@@ -1,5 +1,5 @@ name: amazonka-route53-version: 1.3.0+version: 1.3.1 synopsis: Amazon Route 53 SDK. homepage: https://github.com/brendanhay/amazonka bug-reports: https://github.com/brendanhay/amazonka/issues@@ -85,7 +85,7 @@ , Network.AWS.Route53.Types.Sum build-depends:- amazonka-core == 1.3.0.*+ amazonka-core == 1.3.1.* , base >= 4.7 && < 5 test-suite amazonka-route53-test@@ -105,9 +105,9 @@ , Test.AWS.Route53.Internal build-depends:- amazonka-core == 1.3.0.*- , amazonka-test == 1.3.0.*- , amazonka-route53 == 1.3.0.*+ amazonka-core == 1.3.1.*+ , amazonka-test == 1.3.1.*+ , amazonka-route53 == 1.3.1.* , base , bytestring , lens
gen/Network/AWS/Route53/ListHealthChecks.hs view
@@ -105,8 +105,8 @@ instance AWSPager ListHealthChecks where page rq rs- | stop (rs ^. lhcrsNextMarker) = Nothing- | stop (rs ^. lhcrsHealthChecks) = Nothing+ | stop (rs ^. lhcrsIsTruncated) = Nothing+ | isNothing (rs ^. lhcrsNextMarker) = Nothing | otherwise = Just $ rq & lhcMarker .~ rs ^. lhcrsNextMarker
gen/Network/AWS/Route53/ListHostedZones.hs view
@@ -117,8 +117,8 @@ instance AWSPager ListHostedZones where page rq rs- | stop (rs ^. lhzrsNextMarker) = Nothing- | stop (rs ^. lhzrsHostedZones) = Nothing+ | stop (rs ^. lhzrsIsTruncated) = Nothing+ | isNothing (rs ^. lhzrsNextMarker) = Nothing | otherwise = Just $ rq & lhzMarker .~ rs ^. lhzrsNextMarker