warp-tls 3.3.5 → 3.3.6
raw patch · 3 files changed
+9/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- ChangeLog.md +5/−0
- Network/Wai/Handler/WarpTLS.hs +3/−1
- warp-tls.cabal +1/−1
ChangeLog.md view
@@ -1,5 +1,10 @@ # ChangeLog +## 3.3.6++* Setting FD_CLOEXEC on the listening socket.+ [#923](https://github.com/yesodweb/wai/pull/923)+ ## 3.3.5 * Switching the version of the "recv" package from 0.0.x to 0.1.x.
Network/Wai/Handler/WarpTLS.hs view
@@ -197,7 +197,9 @@ bracket (bindPortTCP (getPort set) (getHost set)) close- (\sock -> runTLSSocket tset set sock app)+ (\sock -> do+ setSocketCloseOnExec sock+ runTLSSocket tset set sock app) ----------------------------------------------------------------
warp-tls.cabal view
@@ -1,5 +1,5 @@ Name: warp-tls-Version: 3.3.5+Version: 3.3.6 Synopsis: HTTP over TLS support for Warp via the TLS package License: MIT License-file: LICENSE