amazonka-lambda 0.1.3 → 0.1.4
raw patch · 2 files changed
+4/−4 lines, 2 filesdep ~amazonka-corePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: amazonka-core
API changes (from Hackage documentation)
Files
amazonka-lambda.cabal view
@@ -1,5 +1,5 @@ name: amazonka-lambda-version: 0.1.3+version: 0.1.4 synopsis: Amazon Lambda SDK. homepage: https://github.com/brendanhay/amazonka license: OtherLicense@@ -59,5 +59,5 @@ other-modules: build-depends:- amazonka-core == 0.1.3.*+ amazonka-core == 0.1.4.* , base >= 4.7 && < 5
gen/Network/AWS/Lambda/Types.hs view
@@ -124,7 +124,7 @@ instance Hashable Runtime instance FromText Runtime where- parser = takeText >>= \case+ parser = takeLowerText >>= \case "nodejs" -> pure Nodejs e -> fail $ "Failure parsing Runtime from " ++ show e@@ -149,7 +149,7 @@ instance Hashable Mode instance FromText Mode where- parser = takeText >>= \case+ parser = takeLowerText >>= \case "event" -> pure Event e -> fail $ "Failure parsing Mode from " ++ show e