packages feed

aws-lambda-haskell-runtime 3.0.4 → 3.0.5

raw patch · 2 files changed

+4/−5 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ Aws.Lambda.Runtime.Common: ApiGatewayDispatcherOptions :: Bool -> ApiGatewayDispatcherOptions
+ Aws.Lambda.Runtime.Common: ApiGatewayLambdaError :: ApiGatewayResponse ApiGatewayResponseBody -> LambdaError
+ Aws.Lambda.Runtime.Common: ApiGatewayResult :: ApiGatewayResponse ApiGatewayResponseBody -> LambdaResult
+ Aws.Lambda.Runtime.Common: DispatcherOptions :: ApiGatewayDispatcherOptions -> DispatcherOptions
+ Aws.Lambda.Runtime.Common: LambdaOptions :: !ByteString -> !String -> !String -> !Context context -> LambdaOptions context
+ Aws.Lambda.Runtime.Common: StandaloneLambda :: DispatcherStrategy
+ Aws.Lambda.Runtime.Common: StandaloneLambdaError :: LambdaResponseBody -> LambdaError
+ Aws.Lambda.Runtime.Common: StandaloneLambdaResult :: LambdaResponseBody -> LambdaResult
+ Aws.Lambda.Runtime.Common: UseWithAPIGateway :: DispatcherStrategy
+ Aws.Lambda.Runtime.Common: [apiGatewayDispatcherOptions] :: DispatcherOptions -> ApiGatewayDispatcherOptions
+ Aws.Lambda.Runtime.Common: [contextObject] :: LambdaOptions context -> !Context context
+ Aws.Lambda.Runtime.Common: [eventObject] :: LambdaOptions context -> !ByteString
+ Aws.Lambda.Runtime.Common: [executionUuid] :: LambdaOptions context -> !String
+ Aws.Lambda.Runtime.Common: [functionHandler] :: LambdaOptions context -> !String
+ Aws.Lambda.Runtime.Common: [propagateImpureExceptions] :: ApiGatewayDispatcherOptions -> Bool
+ Aws.Lambda.Runtime.Common: class ToLambdaResponseBody a
+ Aws.Lambda.Runtime.Common: data DispatcherStrategy
+ Aws.Lambda.Runtime.Common: data LambdaError
+ Aws.Lambda.Runtime.Common: data LambdaOptions context
+ Aws.Lambda.Runtime.Common: data LambdaResult
+ Aws.Lambda.Runtime.Common: defaultDispatcherOptions :: DispatcherOptions
+ Aws.Lambda.Runtime.Common: instance Aws.Lambda.Runtime.Common.ToLambdaResponseBody Data.Text.Internal.Text
+ Aws.Lambda.Runtime.Common: instance Aws.Lambda.Runtime.Common.ToLambdaResponseBody GHC.Base.String
+ Aws.Lambda.Runtime.Common: instance Data.Aeson.Types.FromJSON.FromJSON Aws.Lambda.Runtime.Common.LambdaResponseBody
+ Aws.Lambda.Runtime.Common: instance Data.Aeson.Types.ToJSON.ToJSON Aws.Lambda.Runtime.Common.LambdaResponseBody
+ Aws.Lambda.Runtime.Common: instance Data.Aeson.Types.ToJSON.ToJSON a => Aws.Lambda.Runtime.Common.ToLambdaResponseBody a
+ Aws.Lambda.Runtime.Common: instance GHC.Generics.Generic (Aws.Lambda.Runtime.Common.LambdaOptions context)
+ Aws.Lambda.Runtime.Common: instance Language.Haskell.TH.Syntax.Lift Aws.Lambda.Runtime.Common.ApiGatewayDispatcherOptions
+ Aws.Lambda.Runtime.Common: instance Language.Haskell.TH.Syntax.Lift Aws.Lambda.Runtime.Common.DispatcherOptions
+ Aws.Lambda.Runtime.Common: instance Language.Haskell.TH.Syntax.Lift Aws.Lambda.Runtime.Common.DispatcherStrategy
+ Aws.Lambda.Runtime.Common: newtype ApiGatewayDispatcherOptions
+ Aws.Lambda.Runtime.Common: newtype DispatcherOptions
+ Aws.Lambda.Runtime.Common: toStandaloneLambdaResponse :: ToLambdaResponseBody a => a -> LambdaResponseBody
+ Aws.Lambda.Runtime.Common: type RunCallback context = LambdaOptions context -> IO (Either LambdaError LambdaResult)
+ Aws.Lambda.Runtime.Common: unLambdaResponseBody :: LambdaResponseBody -> Text

Files

aws-lambda-haskell-runtime.cabal view
@@ -1,13 +1,11 @@ cabal-version: 1.12 --- This file has been generated from package.yaml by hpack version 0.34.1.+-- This file has been generated from package.yaml by hpack version 0.34.2. -- -- see: https://github.com/sol/hpack------ hash: c833537a67bfa0d976f4297649380558f7db943dcac5a1b180e2ee2401abb3f7  name:           aws-lambda-haskell-runtime-version:        3.0.4+version:        3.0.5 synopsis:       Haskell runtime for AWS Lambda description:    Please see the README on GitHub at <https://github.com/theam/aws-lambda-haskell-runtime#readme> category:       AWS@@ -30,6 +28,7 @@   exposed-modules:       Aws.Lambda       Aws.Lambda.Runtime+      Aws.Lambda.Runtime.Common   other-modules:       Aws.Lambda.Configuration       Aws.Lambda.Meta.Common@@ -41,7 +40,6 @@       Aws.Lambda.Runtime.API.Version       Aws.Lambda.Runtime.ApiGatewayInfo       Aws.Lambda.Runtime.ApiInfo-      Aws.Lambda.Runtime.Common       Aws.Lambda.Runtime.Context       Aws.Lambda.Runtime.Environment       Aws.Lambda.Runtime.Error
src/Aws/Lambda.hs view
@@ -6,3 +6,4 @@ import Aws.Lambda.Runtime as Reexported import Aws.Lambda.Runtime.Context as Reexported import Aws.Lambda.Runtime.ApiGatewayInfo as Reexported+import Aws.Lambda.Runtime.Common as Reexported