packages feed

wai-transformers 0.0.5.1 → 0.0.6

raw patch · 2 files changed

+10/−5 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ Network.Wai.Trans: type ServerAppT m = PendingConnection -> m ()
+ Network.Wai.Trans: websocketsOrT :: (MonadIO m) => (forall a. m a -> IO a) -> ConnectionOptions -> ServerAppT m -> MiddlewareT m

Files

src/Network/Wai/Trans.hs view
@@ -19,21 +19,26 @@   module Network.Wai.Trans-  ( -- * Types+  ( -- * WAI+    -- ** Types     module Network.Wai   , ApplicationT   , MiddlewareT-  , liftApplication+  , -- ** Embedding+    liftApplication   , liftMiddleware   , runApplicationT   , runMiddlewareT   , hoistApplicationT   , hoistMiddlewareT-  , -- * Exception catching+  , -- ** Exception catching     catchApplicationT   , catchMiddlewareT-  , -- * General Purpose+  , -- ** General Purpose     readingRequest+  , -- * Websockets+    ServerAppT+  , websocketsOrT   ) where  
wai-transformers.cabal view
@@ -1,5 +1,5 @@ Name:                   wai-transformers-Version:                0.0.5.1+Version:                0.0.6 Author:                 Athan Clark <athan.clark@gmail.com> Maintainer:             Athan Clark <athan.clark@gmail.com> License:                BSD3