packages feed

growler 0.5.0 → 0.5.0.1

raw patch · 2 files changed

+9/−8 lines, 2 filesdep ~case-insensitivedep ~eitherdep ~pipes-aesonPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: case-insensitive, either, pipes-aeson, pipes-wai, transformers-base, vector, warp

API changes (from Hackage documentation)

Files

growler.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/  name:                growler-version:             0.5.0+version:             0.5.0.1 synopsis:            A revised version of the scotty library that attempts to be simpler and more performant. description:         Growler provides a very similar interface to scotty, with slight tweaks for performance and a few feature tradeoffs. Growler provides the ability to abort actions (handlers) with arbitrary responses, not just in the event of redirects or raising errors. Growler avoids coercing everything into lazy Text values and reading the whole request body into memory. It also eliminates the ability to abort the handler and have another handler handle the request instead (Scotty's 'next' function). 		     .@@ -53,14 +53,14 @@                        blaze-builder >=0.3 && <0.7,                        unordered-containers >=0.2 && <0.9,                        aeson >= 0.8,-                       vector >= 0.7.1,-                       case-insensitive >= 1.2,-                       warp >= 3,+                       vector == 0.10.*,+                       case-insensitive == 1.2.*,+                       warp == 3.*,                        pipes >= 4.0 && <4.2,-                       pipes-aeson >= 0.4,-                       pipes-wai >= 3,+                       pipes-aeson == 0.4.*,+                       pipes-wai == 3.*,                        monad-control == 1.*,-                       either >= 4.3.1,-                       transformers-base >= 0.4+                       either == 4.3.*,+                       transformers-base == 0.4.*   hs-source-dirs:      src   default-language:    Haskell2010
src/Web/Growler/Router.hs view
@@ -28,6 +28,7 @@  import           Control.Monad.State        hiding (get, put) import qualified Control.Monad.State        as S+import           Control.Monad.State.Class  (modify') import           Control.Monad.Trans  import qualified Data.ByteString.Char8      as B