amazonka-kinesis 0.0.6 → 0.0.7
raw patch · 5 files changed
+6/−6 lines, 5 filesdep ~amazonka-corePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: amazonka-core
API changes (from Hackage documentation)
Files
- amazonka-kinesis.cabal +2/−2
- gen/Network/AWS/Kinesis/GetRecords.hs +1/−1
- gen/Network/AWS/Kinesis/ListStreams.hs +1/−1
- gen/Network/AWS/Kinesis/ListTagsForStream.hs +1/−1
- gen/Network/AWS/Kinesis/Types.hs +1/−1
amazonka-kinesis.cabal view
@@ -1,5 +1,5 @@ name: amazonka-kinesis-version: 0.0.6+version: 0.0.7 synopsis: Amazon Kinesis SDK. homepage: https://github.com/brendanhay/amazonka license: OtherLicense@@ -53,5 +53,5 @@ other-modules: build-depends:- amazonka-core == 0.0.6.*+ amazonka-core == 0.0.7.* , base >= 4.7 && < 5
gen/Network/AWS/Kinesis/GetRecords.hs view
@@ -174,4 +174,4 @@ instance FromJSON GetRecordsResponse where parseJSON = withObject "GetRecordsResponse" $ \o -> GetRecordsResponse <$> o .:? "NextShardIterator"- <*> o .: "Records"+ <*> o .:? "Records" .!= mempty
gen/Network/AWS/Kinesis/ListStreams.hs view
@@ -142,7 +142,7 @@ instance FromJSON ListStreamsResponse where parseJSON = withObject "ListStreamsResponse" $ \o -> ListStreamsResponse <$> o .: "HasMoreStreams"- <*> o .: "StreamNames"+ <*> o .:? "StreamNames" .!= mempty instance AWSPager ListStreams where page rq rs
gen/Network/AWS/Kinesis/ListTagsForStream.hs view
@@ -144,4 +144,4 @@ instance FromJSON ListTagsForStreamResponse where parseJSON = withObject "ListTagsForStreamResponse" $ \o -> ListTagsForStreamResponse <$> o .: "HasMoreTags"- <*> o .: "Tags"+ <*> o .:? "Tags" .!= mempty
gen/Network/AWS/Kinesis/Types.hs view
@@ -287,7 +287,7 @@ instance FromJSON StreamDescription where parseJSON = withObject "StreamDescription" $ \o -> StreamDescription <$> o .: "HasMoreShards"- <*> o .: "Shards"+ <*> o .:? "Shards" .!= mempty <*> o .: "StreamARN" <*> o .: "StreamName" <*> o .: "StreamStatus"