amazonka-route53 1.3.3.1 → 1.3.4
raw patch · 3 files changed
+10/−6 lines, 3 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/Types.hs +4/−0
README.md view
@@ -8,7 +8,7 @@ ## Version -`1.3.3.1`+`1.3.4` ## Description
amazonka-route53.cabal view
@@ -1,5 +1,5 @@ name: amazonka-route53-version: 1.3.3.1+version: 1.3.4 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.3.*+ amazonka-core == 1.3.4.* , base >= 4.7 && < 5 test-suite amazonka-route53-test@@ -105,9 +105,9 @@ , Test.AWS.Route53.Internal build-depends:- amazonka-core == 1.3.3.*- , amazonka-test == 1.3.3.*- , amazonka-route53 == 1.3.3.*+ amazonka-core == 1.3.4.*+ , amazonka-test == 1.3.4.*+ , amazonka-route53 == 1.3.4.* , base , bytestring , lens
gen/Network/AWS/Route53/Types.hs view
@@ -243,9 +243,13 @@ , _retryCheck = check } check e+ | has (hasCode "Throttling" . hasStatus 400) e =+ Just "request_limit_exceeded" | has (hasCode "ThrottlingException" . hasStatus 400) e = Just "throttling_exception" | has (hasCode "Throttling" . hasStatus 400) e = Just "throttling"+ | has (hasCode "PriorRequestNotComplete" . hasStatus 400) e =+ Just "still_processing" | has (hasStatus 503) e = Just "service_unavailable" | has (hasStatus 500) e = Just "general_server_error" | has (hasStatus 509) e = Just "limit_exceeded"