amazonka-sdb 1.2.0.1 → 1.2.0.2
raw patch · 23 files changed
+27/−26 lines, 23 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- README.md +1/−1
- amazonka-sdb.cabal +6/−5
- fixture/BatchDeleteAttributes.yaml +0/−0
- fixture/BatchDeleteAttributesResponse.proto +0/−0
- fixture/BatchPutAttributes.yaml +0/−0
- fixture/BatchPutAttributesResponse.proto +0/−0
- fixture/CreateDomain.yaml +0/−0
- fixture/CreateDomainResponse.proto +0/−0
- fixture/DeleteAttributes.yaml +0/−0
- fixture/DeleteAttributesResponse.proto +0/−0
- fixture/DeleteDomain.yaml +0/−0
- fixture/DeleteDomainResponse.proto +0/−0
- fixture/DomainMetadata.yaml +0/−0
- fixture/DomainMetadataResponse.proto +0/−0
- fixture/GetAttributes.yaml +0/−0
- fixture/GetAttributesResponse.proto +0/−0
- fixture/ListDomains.yaml +0/−0
- fixture/ListDomainsResponse.proto +0/−0
- fixture/PutAttributes.yaml +0/−0
- fixture/PutAttributesResponse.proto +0/−0
- fixture/Select.yaml +0/−0
- fixture/SelectResponse.proto +0/−0
- test/Test/AWS/Gen/SDB.hs +20/−20
README.md view
@@ -8,7 +8,7 @@ ## Version -`1.2.0.1`+`1.2.0.2` ## Description
amazonka-sdb.cabal view
@@ -1,7 +1,8 @@ name: amazonka-sdb-version: 1.2.0.1+version: 1.2.0.2 synopsis: Amazon SimpleDB SDK. homepage: https://github.com/brendanhay/amazonka+bug-reports: https://github.com/brendanhay/amazonka/issues license: OtherLicense license-file: LICENSE author: Brendan Hay@@ -9,9 +10,8 @@ copyright: Copyright (c) 2013-2015 Brendan Hay category: Network, AWS, Cloud, Distributed Computing build-type: Simple-extra-source-files: README.md cabal-version: >= 1.10-+extra-source-files: README.md fixture/*.yaml fixture/*.proto description: Amazon SimpleDB is a web service providing the core database functions of data indexing and querying in the cloud. By offloading the time and@@ -86,8 +86,9 @@ ghc-options: -Wall -threaded - -- This is not comprehensive if modules have manually been added.- -- It exists to ensure cabal 'somewhat' detects test module changes.+ -- This section is encoded by the template and any modules added by+ -- hand outside these namespaces will not correctly be added to the+ -- distribution package. other-modules: Test.AWS.SDB , Test.AWS.Gen.SDB
+ fixture/BatchDeleteAttributes.yaml view
+ fixture/BatchDeleteAttributesResponse.proto view
+ fixture/BatchPutAttributes.yaml view
+ fixture/BatchPutAttributesResponse.proto view
+ fixture/CreateDomain.yaml view
+ fixture/CreateDomainResponse.proto view
+ fixture/DeleteAttributes.yaml view
+ fixture/DeleteAttributesResponse.proto view
+ fixture/DeleteDomain.yaml view
+ fixture/DeleteDomainResponse.proto view
+ fixture/DomainMetadata.yaml view
+ fixture/DomainMetadataResponse.proto view
+ fixture/GetAttributes.yaml view
+ fixture/GetAttributesResponse.proto view
+ fixture/ListDomains.yaml view
+ fixture/ListDomainsResponse.proto view
+ fixture/PutAttributes.yaml view
+ fixture/PutAttributesResponse.proto view
+ fixture/Select.yaml view
+ fixture/SelectResponse.proto view
test/Test/AWS/Gen/SDB.hs view
@@ -99,121 +99,121 @@ testBatchDeleteAttributes :: BatchDeleteAttributes -> TestTree testBatchDeleteAttributes = req "BatchDeleteAttributes"- "fixture/BatchDeleteAttributes"+ "fixture/BatchDeleteAttributes.yaml" testBatchPutAttributes :: BatchPutAttributes -> TestTree testBatchPutAttributes = req "BatchPutAttributes"- "fixture/BatchPutAttributes"+ "fixture/BatchPutAttributes.yaml" testGetAttributes :: GetAttributes -> TestTree testGetAttributes = req "GetAttributes"- "fixture/GetAttributes"+ "fixture/GetAttributes.yaml" testCreateDomain :: CreateDomain -> TestTree testCreateDomain = req "CreateDomain"- "fixture/CreateDomain"+ "fixture/CreateDomain.yaml" testDomainMetadata :: DomainMetadata -> TestTree testDomainMetadata = req "DomainMetadata"- "fixture/DomainMetadata"+ "fixture/DomainMetadata.yaml" testSelect :: Select -> TestTree testSelect = req "Select"- "fixture/Select"+ "fixture/Select.yaml" testPutAttributes :: PutAttributes -> TestTree testPutAttributes = req "PutAttributes"- "fixture/PutAttributes"+ "fixture/PutAttributes.yaml" testDeleteAttributes :: DeleteAttributes -> TestTree testDeleteAttributes = req "DeleteAttributes"- "fixture/DeleteAttributes"+ "fixture/DeleteAttributes.yaml" testListDomains :: ListDomains -> TestTree testListDomains = req "ListDomains"- "fixture/ListDomains"+ "fixture/ListDomains.yaml" testDeleteDomain :: DeleteDomain -> TestTree testDeleteDomain = req "DeleteDomain"- "fixture/DeleteDomain"+ "fixture/DeleteDomain.yaml" -- Responses testBatchDeleteAttributesResponse :: BatchDeleteAttributesResponse -> TestTree testBatchDeleteAttributesResponse = res "BatchDeleteAttributesResponse"- "fixture/BatchDeleteAttributesResponse"+ "fixture/BatchDeleteAttributesResponse.proto" sDB (Proxy :: Proxy BatchDeleteAttributes) testBatchPutAttributesResponse :: BatchPutAttributesResponse -> TestTree testBatchPutAttributesResponse = res "BatchPutAttributesResponse"- "fixture/BatchPutAttributesResponse"+ "fixture/BatchPutAttributesResponse.proto" sDB (Proxy :: Proxy BatchPutAttributes) testGetAttributesResponse :: GetAttributesResponse -> TestTree testGetAttributesResponse = res "GetAttributesResponse"- "fixture/GetAttributesResponse"+ "fixture/GetAttributesResponse.proto" sDB (Proxy :: Proxy GetAttributes) testCreateDomainResponse :: CreateDomainResponse -> TestTree testCreateDomainResponse = res "CreateDomainResponse"- "fixture/CreateDomainResponse"+ "fixture/CreateDomainResponse.proto" sDB (Proxy :: Proxy CreateDomain) testDomainMetadataResponse :: DomainMetadataResponse -> TestTree testDomainMetadataResponse = res "DomainMetadataResponse"- "fixture/DomainMetadataResponse"+ "fixture/DomainMetadataResponse.proto" sDB (Proxy :: Proxy DomainMetadata) testSelectResponse :: SelectResponse -> TestTree testSelectResponse = res "SelectResponse"- "fixture/SelectResponse"+ "fixture/SelectResponse.proto" sDB (Proxy :: Proxy Select) testPutAttributesResponse :: PutAttributesResponse -> TestTree testPutAttributesResponse = res "PutAttributesResponse"- "fixture/PutAttributesResponse"+ "fixture/PutAttributesResponse.proto" sDB (Proxy :: Proxy PutAttributes) testDeleteAttributesResponse :: DeleteAttributesResponse -> TestTree testDeleteAttributesResponse = res "DeleteAttributesResponse"- "fixture/DeleteAttributesResponse"+ "fixture/DeleteAttributesResponse.proto" sDB (Proxy :: Proxy DeleteAttributes) testListDomainsResponse :: ListDomainsResponse -> TestTree testListDomainsResponse = res "ListDomainsResponse"- "fixture/ListDomainsResponse"+ "fixture/ListDomainsResponse.proto" sDB (Proxy :: Proxy ListDomains) testDeleteDomainResponse :: DeleteDomainResponse -> TestTree testDeleteDomainResponse = res "DeleteDomainResponse"- "fixture/DeleteDomainResponse"+ "fixture/DeleteDomainResponse.proto" sDB (Proxy :: Proxy DeleteDomain)