wai-extra 1.0.0 → 1.0.0.1
raw patch · 2 files changed
+3/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Network/Wai/Middleware/Gzip.hs +2/−1
- wai-extra.cabal +1/−1
Network/Wai/Middleware/Gzip.hs view
@@ -51,7 +51,8 @@ def = GzipSettings GzipIgnore defaultCheckMime defaultCheckMime :: S.ByteString -> Bool-defaultCheckMime = S8.isPrefixOf "text/"+defaultCheckMime "text/event-stream" = False+defaultCheckMime bs = S8.isPrefixOf "text/" bs -- | Use gzip to compress the body of the response. --
wai-extra.cabal view
@@ -1,5 +1,5 @@ Name: wai-extra-Version: 1.0.0+Version: 1.0.0.1 Synopsis: Provides some basic WAI handlers and middleware. Description: The goal here is to provide common features without many dependencies. License: BSD3