http3 0.0.14 → 0.0.15
raw patch · 4 files changed
+9/−5 lines, 4 filesdep ~http-semanticsdep ~http2PVP ok
version bump matches the API change (PVP)
Dependency ranges changed: http-semantics, http2
API changes (from Hackage documentation)
Files
- ChangeLog.md +4/−0
- Network/HQ/Server.hs +1/−1
- Network/HTTP3/Send.hs +1/−1
- http3.cabal +3/−3
ChangeLog.md view
@@ -2,6 +2,10 @@ ## 0.0.14 +* Using http-semantics v0.2++## 0.0.14+ * Preparing for tls v2.1 ## 0.0.13
Network/HQ/Server.hs view
@@ -120,7 +120,7 @@ let next = fillBuilderBodyGetNext builder sendNext strm next OutBodyStreaming strmbdy -> sendStreaming strm strmbdy- OutBodyStreamingUnmask _ ->+ OutBodyStreamingIface _ -> error "sendResponse: server does not support OutBodyStreamingUnmask" sendNext :: Stream -> DynaNext -> IO ()
Network/HTTP3/Send.hs view
@@ -54,7 +54,7 @@ tlrmkr ( \iface -> outBodyUnmask iface $ strmbdy (outBodyPush iface) (outBodyFlush iface) )- OutBodyStreamingUnmask strmbdy -> sendStreaming ctx strm th tlrmkr strmbdy+ OutBodyStreamingIface strmbdy -> sendStreaming ctx strm th tlrmkr strmbdy where tlrmkr = outObjTrailers outobj
http3.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.4 name: http3-version: 0.0.14+version: 0.0.15 license: BSD-3-Clause license-file: LICENSE maintainer: Kazu Yamamoto <kazu@iij.ad.jp>@@ -81,9 +81,9 @@ bytestring, case-insensitive, containers,- http-semantics >= 0.1 && <0.2,+ http-semantics >= 0.2 && <0.3, http-types,- http2 >=5.2.3 && <5.3,+ http2 >=5.3 && <5.4, network, network-byte-order, quic >= 0.1.20 && < 0.2,