warp 3.2.18.1 → 3.2.18.2
raw patch · 4 files changed
+10/−4 lines, 4 filesdep +bsb-http-chunkeddep −blaze-builder
Dependencies added: bsb-http-chunked
Dependencies removed: blaze-builder
Files
- ChangeLog.md +4/−0
- Network/Wai/Handler/Warp/MultiMap.hs +1/−0
- Network/Wai/Handler/Warp/Response.hs +1/−1
- warp.cabal +4/−3
ChangeLog.md view
@@ -1,3 +1,7 @@+## 3.2.18.2++* Replace dependency on `blaze-builder` with `bsb-http-chunked`+ ## 3.2.18.1 * Fix benchmark compilation [#681](https://github.com/yesodweb/wai/issues/681)
Network/Wai/Handler/Warp/MultiMap.hs view
@@ -15,6 +15,7 @@ import qualified Data.IntMap.Strict as I import qualified Data.List.NonEmpty as NE import Data.Semigroup+import Prelude -- Silence redundant import warnings import Network.Wai.Handler.Warp.Imports hiding ((<>), union, empty, insert)
Network/Wai/Handler/Warp/Response.hs view
@@ -13,7 +13,7 @@ , addServer -- testing ) where -import Blaze.ByteString.Builder.HTTP (chunkedTransferEncoding, chunkedTransferTerminator)+import Data.ByteString.Builder.HTTP.Chunked (chunkedTransferEncoding, chunkedTransferTerminator) import qualified Control.Exception as E import Data.Array ((!)) import qualified Data.ByteString as S
warp.cabal view
@@ -1,5 +1,5 @@ Name: warp-Version: 3.2.18.1+Version: 3.2.18.2 Synopsis: A fast, light-weight web server for WAI applications. License: MIT License-file: LICENSE@@ -37,7 +37,7 @@ , array , async , auto-update >= 0.1.3 && < 0.2- , blaze-builder >= 0.4+ , bsb-http-chunked < 0.1 , bytestring >= 0.9.1.4 , case-insensitive >= 0.2 , containers@@ -181,7 +181,7 @@ Build-Depends: base >= 4.8 && < 5 , array , auto-update- , blaze-builder >= 0.4+ , bsb-http-chunked < 0.1 , bytestring >= 0.9.1.4 , case-insensitive >= 0.2 , ghc-prim@@ -211,6 +211,7 @@ , word8 , hashable , http-date+ -- Build-Tool-Depends: hspec-discover:hspec-discover if impl(ghc < 8) Build-Depends: semigroups