packages feed

aws 0.7.5 → 0.7.6

raw patch · 3 files changed

+10/−5 lines, 3 filesdep ~cryptohashdep ~failurePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: cryptohash, failure

API changes (from Hackage documentation)

Files

Aws/SimpleDb/Core.hs view
@@ -144,7 +144,7 @@               = do let requestId' = listToMaybe $ cursor $// elContent "RequestID"                    let boxUsage' = listToMaybe $ cursor $// elContent "BoxUsage"                    tellMetadata $ SdbMetadata requestId' boxUsage'-                   case cursor $/ Cu.laxElement "Error" of+                   case cursor $// Cu.laxElement "Error" of                      []      -> inner cursor                      (err:_) -> fromError err           fromError cursor = do errCode <- force "Missing Error Code" $ cursor $// elCont "Code"
README.org view
@@ -93,6 +93,11 @@  ** 0.7 series +- 0.7.6+  - Parsing of SimpleDB error responses was too strict, fixed+  - Support for cryptohash 0.8+  - Failure 0.1 does not work with aws, stricter lower bound+ - 0.7.5   - Support for http-conduit 1.7 and 1.8 
aws.cabal view
@@ -1,5 +1,5 @@ Name:                aws-Version:             0.7.5+Version:             0.7.6 Synopsis:            Amazon Web Services (AWS) for Haskell Description:         Bindings for Amazon Web Services (AWS), with the aim of supporting all AWS services. To see a high level overview of the library, see the README at <https://github.com/aristidb/aws/blob/master/README.org>. Homepage:            http://github.com/aristidb/aws@@ -20,7 +20,7 @@ Source-repository this   type: git   location: https://github.com/aristidb/aws.git-  tag: 0.7.5+  tag: 0.7.6  Source-repository head   type: git@@ -74,9 +74,9 @@                        conduit              >= 0.5     && < 0.6,                        containers           >= 0.4,                        crypto-api           >= 0.9,-                       cryptohash           >= 0.6     && < 0.8,+                       cryptohash           >= 0.6     && < 0.9,                        directory            >= 1.0     && < 1.3,-                       failure              >= 0.1.0.1 && < 0.3,+                       failure              >= 0.2.0.1 && < 0.3,                        filepath             >= 1.1     && < 1.4,                        http-conduit         >= 1.6     && < 1.9,                        http-types           >= 0.7     && < 0.8,