amazonka 1.3.3.1 → 1.3.4
raw patch · 5 files changed
+30/−15 lines, 5 filesdep ~amazonka-corePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: amazonka-core
API changes (from Hackage documentation)
Files
- CHANGELOG.md +17/−0
- amazonka.cabal +2/−2
- src/Control/Monad/Trans/AWS.hs +1/−3
- src/Network/AWS.hs +1/−3
- src/Network/AWS/Auth.hs +9/−7
CHANGELOG.md view
@@ -1,5 +1,22 @@ # Change Log +## [1.3.4](https://github.com/brendanhay/amazonka/tree/1.3.4)+Released: **25 October, 2015**, Compare: [1.3.4](https://github.com/brendanhay/amazonka/compare/1.3.3...1.3.4)++### Updated Services Definitions++- AutoScaling: Documentation updates.+- EC2: Paginator updates.+- Glacier: Paginator additions.+- IAM: Paginator, type, and documentation updates.+- KMS: Multiple type, operation, and documentation updates.+- S3: Minor type updates. (Server side encryption related.)++### New Libraries++- `amazonka-iot-dataplane`: Internet of Things Data Plane.++ ## [1.3.3](https://github.com/brendanhay/amazonka/tree/1.3.3) Released: **08 October, 2015**, Compare: [1.3.2.1](https://github.com/brendanhay/amazonka/compare/1.3.2.1...1.3.3)
amazonka.cabal view
@@ -1,5 +1,5 @@ name: amazonka-version: 1.3.3.1+version: 1.3.4 synopsis: Comprehensive Amazon Web Services SDK. homepage: https://github.com/brendanhay/amazonka bug-reports: https://github.com/brendanhay/amazonka/issues@@ -55,7 +55,7 @@ , Network.AWS.Internal.Logger build-depends:- amazonka-core == 1.3.3.*+ amazonka-core == 1.3.4.* , base >= 4.7 && < 5 , bytestring >= 0.9 , conduit >= 1.1
src/Control/Monad/Trans/AWS.hs view
@@ -32,6 +32,7 @@ AWST , AWST' , runAWST+ , runResourceT , AWSConstraint -- * Authentication and Environment@@ -147,9 +148,6 @@ , HashedBody , ChunkedBody , RsBody-- -- * runResourceT- , runResourceT ) where import Control.Applicative
src/Network/AWS.hs view
@@ -30,6 +30,7 @@ AWS , MonadAWS (..) , runAWS+ , runResourceT -- * Authentication and Environment , newEnv@@ -143,9 +144,6 @@ , HashedBody , ChunkedBody , RsBody-- -- * runResourceT- , runResourceT ) where import Control.Applicative
src/Network/AWS/Auth.hs view
@@ -20,9 +20,9 @@ module Network.AWS.Auth ( -- * Authentication- -- ** Retrieving authentication+ -- ** Retrieving Authentication getAuth- , Credentials (..)+ , Credentials (..) , Auth -- ** Defaults@@ -38,6 +38,7 @@ , credProfile , credFile + -- ** Credentials -- $credentials , fromKeys@@ -55,8 +56,8 @@ , SessionToken (..) -- ** Handling Errors- , AsAuthError (..)- , AuthError (..)+ , AsAuthError (..)+ , AuthError (..) ) where import Control.Applicative@@ -160,7 +161,7 @@ | FromProfile Text -- ^ An IAM Profile name to lookup from the local EC2 instance-data.- -- ^ Environment variables to lookup for the access key, secret key and+ -- Environment variables to lookup for the access key, secret key and -- optional session token. | FromFile Text FilePath@@ -168,7 +169,7 @@ -- <http://blogs.aws.amazon.com/security/post/Tx3D6U6WSFGOK2H/A-New-and-Standardized-Way-to-Manage-Credentials-in-the-AWS-SDKs credentials> file. | Discover- -- ^ Attempt to credentials discovery via the following steps:+ -- ^ Attempt credentials discovery via the following steps: -- -- * Read the 'envAccessKey' and 'envSecretKey' from the environment if they are set. --@@ -352,7 +353,8 @@ -> m Auth fromFilePath n f = do p <- liftIO (doesFileExist f)- unless p $ throwM (MissingFileError f)+ unless p $+ throwM (MissingFileError f) i <- liftIO (INI.readIniFile f) >>= either (invalidErr Nothing) return fmap Auth $ AuthEnv <$> (req credAccessKey i <&> AccessKey)