amazonka-s3 0.3.4 → 0.3.5
raw patch · 2 files changed
+3/−3 lines, 2 filesdep ~amazonka-corePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: amazonka-core
API changes (from Hackage documentation)
Files
- amazonka-s3.cabal +2/−2
- gen/Network/AWS/S3/Types.hs +1/−1
amazonka-s3.cabal view
@@ -1,5 +1,5 @@ name: amazonka-s3-version: 0.3.4+version: 0.3.5 synopsis: Amazon Simple Storage Service SDK. homepage: https://github.com/brendanhay/amazonka license: OtherLicense@@ -100,5 +100,5 @@ Network.AWS.S3.Internal build-depends:- amazonka-core == 0.3.4.*+ amazonka-core == 0.3.5.* , base >= 4.7 && < 5
gen/Network/AWS/S3/Types.hs view
@@ -523,7 +523,7 @@ -> RESTError -> Bool check (statusCode -> s) (awsErrorCode -> e)- | s == 400 && "RequestTimeout" == e = True -- Timeouts+ | s == 400 && (Just "RequestTimeout") == e = True -- Timeouts | s == 500 = True -- General Server Error | s == 509 = True -- Limit Exceeded | s == 503 = True -- Service Unavailable