direct-http 0.5.2 → 0.5.3
raw patch · 2 files changed
+8/−5 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Network/HTTP.hs +1/−1
- direct-http.cabal +7/−4
Network/HTTP.hs view
@@ -1164,7 +1164,7 @@ headerType HttpContentType = EntityHeader headerType HttpExpires = EntityHeader headerType HttpLastModified = EntityHeader-headerType (HttpExtensionHeader _) = EntityHeader+headerType (HttpExtensionHeader _) = GeneralHeader headerType HttpCacheControl = GeneralHeader headerType HttpConnection = GeneralHeader headerType HttpDate = GeneralHeader
direct-http.cabal view
@@ -1,5 +1,5 @@ name: direct-http-version: 0.5.2+version: 0.5.3 cabal-version: >= 1.10 build-type: Simple license: BSD3@@ -22,14 +22,17 @@ to it, and makes several design decisions differently. The biggest is the use of MonadControlBase for exceptions. .- Version 0.5.2: Actually works with daemonization, by using a feature of+ [Version 0.5.3] Actually works with extension headers, by admitting the+ reality that they can occur anytime and not just with an entity.+ .+ [Version 0.5.2] Actually works with daemonization, by using a feature of direct-daemon added for this purpose to open the socket after forking but before dropping privileges. .- Version 0.5.1: Uses SafeSemaphore, which is the future, rather than QSem+ [Version 0.5.1] Uses SafeSemaphore, which is the future, rather than QSem from base, which is deprecated. .- Version 0.5.0.1: This preliminary release is a preview to gauge community+ [Version 0.5.0.1] This preliminary release is a preview to gauge community interest. Not even all major features are implemented; things that exist only as stubs include encryption, compression, chunking, and reading back cookies. Nonetheless it may be useful if run behind a reverse proxy that