amazonka-dynamodb 1.2.0.1 → 1.2.0.2
raw patch · 29 files changed
+33/−32 lines, 29 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- README.md +1/−1
- amazonka-dynamodb.cabal +6/−5
- fixture/BatchGetItem.yaml +0/−0
- fixture/BatchGetItemResponse.proto +0/−0
- fixture/BatchWriteItem.yaml +0/−0
- fixture/BatchWriteItemResponse.proto +0/−0
- fixture/CreateTable.yaml +0/−0
- fixture/CreateTableResponse.proto +0/−0
- fixture/DeleteItem.yaml +0/−0
- fixture/DeleteItemResponse.proto +0/−0
- fixture/DeleteTable.yaml +0/−0
- fixture/DeleteTableResponse.proto +0/−0
- fixture/DescribeTable.yaml +0/−0
- fixture/DescribeTableResponse.proto +0/−0
- fixture/GetItem.yaml +0/−0
- fixture/GetItemResponse.proto +0/−0
- fixture/ListTables.yaml +0/−0
- fixture/ListTablesResponse.proto +0/−0
- fixture/PutItem.yaml +0/−0
- fixture/PutItemResponse.proto +0/−0
- fixture/Query.yaml +0/−0
- fixture/QueryResponse.proto +0/−0
- fixture/Scan.yaml +0/−0
- fixture/ScanResponse.proto +0/−0
- fixture/UpdateItem.yaml +0/−0
- fixture/UpdateItemResponse.proto +0/−0
- fixture/UpdateTable.yaml +0/−0
- fixture/UpdateTableResponse.proto +0/−0
- test/Test/AWS/Gen/DynamoDB.hs +26/−26
README.md view
@@ -8,7 +8,7 @@ ## Version -`1.2.0.1`+`1.2.0.2` ## Description
amazonka-dynamodb.cabal view
@@ -1,7 +1,8 @@ name: amazonka-dynamodb-version: 1.2.0.1+version: 1.2.0.2 synopsis: Amazon DynamoDB 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 DynamoDB @@ -187,8 +187,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.DynamoDB , Test.AWS.Gen.DynamoDB
+ fixture/BatchGetItem.yaml view
+ fixture/BatchGetItemResponse.proto view
+ fixture/BatchWriteItem.yaml view
+ fixture/BatchWriteItemResponse.proto view
+ fixture/CreateTable.yaml view
+ fixture/CreateTableResponse.proto view
+ fixture/DeleteItem.yaml view
+ fixture/DeleteItemResponse.proto view
+ fixture/DeleteTable.yaml view
+ fixture/DeleteTableResponse.proto view
+ fixture/DescribeTable.yaml view
+ fixture/DescribeTableResponse.proto view
+ fixture/GetItem.yaml view
+ fixture/GetItemResponse.proto view
+ fixture/ListTables.yaml view
+ fixture/ListTablesResponse.proto view
+ fixture/PutItem.yaml view
+ fixture/PutItemResponse.proto view
+ fixture/Query.yaml view
+ fixture/QueryResponse.proto view
+ fixture/Scan.yaml view
+ fixture/ScanResponse.proto view
+ fixture/UpdateItem.yaml view
+ fixture/UpdateItemResponse.proto view
+ fixture/UpdateTable.yaml view
+ fixture/UpdateTableResponse.proto view
test/Test/AWS/Gen/DynamoDB.hs view
@@ -117,157 +117,157 @@ testUpdateItem :: UpdateItem -> TestTree testUpdateItem = req "UpdateItem"- "fixture/UpdateItem"+ "fixture/UpdateItem.yaml" testDeleteItem :: DeleteItem -> TestTree testDeleteItem = req "DeleteItem"- "fixture/DeleteItem"+ "fixture/DeleteItem.yaml" testPutItem :: PutItem -> TestTree testPutItem = req "PutItem"- "fixture/PutItem"+ "fixture/PutItem.yaml" testDeleteTable :: DeleteTable -> TestTree testDeleteTable = req "DeleteTable"- "fixture/DeleteTable"+ "fixture/DeleteTable.yaml" testUpdateTable :: UpdateTable -> TestTree testUpdateTable = req "UpdateTable"- "fixture/UpdateTable"+ "fixture/UpdateTable.yaml" testBatchGetItem :: BatchGetItem -> TestTree testBatchGetItem = req "BatchGetItem"- "fixture/BatchGetItem"+ "fixture/BatchGetItem.yaml" testDescribeTable :: DescribeTable -> TestTree testDescribeTable = req "DescribeTable"- "fixture/DescribeTable"+ "fixture/DescribeTable.yaml" testGetItem :: GetItem -> TestTree testGetItem = req "GetItem"- "fixture/GetItem"+ "fixture/GetItem.yaml" testBatchWriteItem :: BatchWriteItem -> TestTree testBatchWriteItem = req "BatchWriteItem"- "fixture/BatchWriteItem"+ "fixture/BatchWriteItem.yaml" testScan :: Scan -> TestTree testScan = req "Scan"- "fixture/Scan"+ "fixture/Scan.yaml" testListTables :: ListTables -> TestTree testListTables = req "ListTables"- "fixture/ListTables"+ "fixture/ListTables.yaml" testQuery :: Query -> TestTree testQuery = req "Query"- "fixture/Query"+ "fixture/Query.yaml" testCreateTable :: CreateTable -> TestTree testCreateTable = req "CreateTable"- "fixture/CreateTable"+ "fixture/CreateTable.yaml" -- Responses testUpdateItemResponse :: UpdateItemResponse -> TestTree testUpdateItemResponse = res "UpdateItemResponse"- "fixture/UpdateItemResponse"+ "fixture/UpdateItemResponse.proto" dynamoDB (Proxy :: Proxy UpdateItem) testDeleteItemResponse :: DeleteItemResponse -> TestTree testDeleteItemResponse = res "DeleteItemResponse"- "fixture/DeleteItemResponse"+ "fixture/DeleteItemResponse.proto" dynamoDB (Proxy :: Proxy DeleteItem) testPutItemResponse :: PutItemResponse -> TestTree testPutItemResponse = res "PutItemResponse"- "fixture/PutItemResponse"+ "fixture/PutItemResponse.proto" dynamoDB (Proxy :: Proxy PutItem) testDeleteTableResponse :: DeleteTableResponse -> TestTree testDeleteTableResponse = res "DeleteTableResponse"- "fixture/DeleteTableResponse"+ "fixture/DeleteTableResponse.proto" dynamoDB (Proxy :: Proxy DeleteTable) testUpdateTableResponse :: UpdateTableResponse -> TestTree testUpdateTableResponse = res "UpdateTableResponse"- "fixture/UpdateTableResponse"+ "fixture/UpdateTableResponse.proto" dynamoDB (Proxy :: Proxy UpdateTable) testBatchGetItemResponse :: BatchGetItemResponse -> TestTree testBatchGetItemResponse = res "BatchGetItemResponse"- "fixture/BatchGetItemResponse"+ "fixture/BatchGetItemResponse.proto" dynamoDB (Proxy :: Proxy BatchGetItem) testDescribeTableResponse :: DescribeTableResponse -> TestTree testDescribeTableResponse = res "DescribeTableResponse"- "fixture/DescribeTableResponse"+ "fixture/DescribeTableResponse.proto" dynamoDB (Proxy :: Proxy DescribeTable) testGetItemResponse :: GetItemResponse -> TestTree testGetItemResponse = res "GetItemResponse"- "fixture/GetItemResponse"+ "fixture/GetItemResponse.proto" dynamoDB (Proxy :: Proxy GetItem) testBatchWriteItemResponse :: BatchWriteItemResponse -> TestTree testBatchWriteItemResponse = res "BatchWriteItemResponse"- "fixture/BatchWriteItemResponse"+ "fixture/BatchWriteItemResponse.proto" dynamoDB (Proxy :: Proxy BatchWriteItem) testScanResponse :: ScanResponse -> TestTree testScanResponse = res "ScanResponse"- "fixture/ScanResponse"+ "fixture/ScanResponse.proto" dynamoDB (Proxy :: Proxy Scan) testListTablesResponse :: ListTablesResponse -> TestTree testListTablesResponse = res "ListTablesResponse"- "fixture/ListTablesResponse"+ "fixture/ListTablesResponse.proto" dynamoDB (Proxy :: Proxy ListTables) testQueryResponse :: QueryResponse -> TestTree testQueryResponse = res "QueryResponse"- "fixture/QueryResponse"+ "fixture/QueryResponse.proto" dynamoDB (Proxy :: Proxy Query) testCreateTableResponse :: CreateTableResponse -> TestTree testCreateTableResponse = res "CreateTableResponse"- "fixture/CreateTableResponse"+ "fixture/CreateTableResponse.proto" dynamoDB (Proxy :: Proxy CreateTable)