File tree 9 files changed +14
-10
lines changed
9 files changed +14
-10
lines changed Original file line number Diff line number Diff line change 1
1
## v6.0.0~ beta1 (2023-10-27)
2
+ - cohttp-eio: move new Cohttp.{Client,Server} modules under Cohttp.Generic (mseri #1003 )
2
3
- cohttp-eio: Add Client.make_generic and HTTPS support. (talex5 #1002 )
3
4
- cohttp: move generic client and server signatures to cohttp and use them across all packges. (mefyl #984 )
4
5
- cohttp-eio: Complete rewrite to follow common interfaces and behaviors. (mefyl #984 )
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ type connection = Eio.Flow.two_way_ty r
6
6
type t = sw :Switch .t -> Uri .t -> connection
7
7
8
8
include
9
- Cohttp.Client. Make
9
+ Cohttp.Generic. Client. Make
10
10
(struct
11
11
type 'a io = 'a
12
12
type body = Body .t
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ open Eio.Std
3
3
type t
4
4
5
5
include
6
- Cohttp.Client. S
6
+ Cohttp.Generic. Client. S
7
7
with type 'a with_context = t -> sw:Switch. t -> 'a
8
8
and type 'a io = 'a
9
9
and type body = Body. t
Original file line number Diff line number Diff line change 1
- include Cohttp.Server. S with module IO = Io. IO and type body = Body. t
1
+ include Cohttp.Generic. Server. S with module IO = Io. IO and type body = Body. t
2
2
3
3
val run :
4
4
?max_connections : int ->
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ depends: [
29
29
"ocaml" {>= "4.08"}
30
30
"http" {= version}
31
31
"cohttp" {= version}
32
- "lwt" {>= "2.5 .0"}
32
+ "lwt" {>= "5.4 .0"}
33
33
"sexplib0"
34
34
"ppx_sexp_conv" {>= "v0.13.0"}
35
35
"logs"
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ module Make (Connection : S.Connection) = struct
17
17
| Some ctx -> No_cache. (call (create ~ctx () ))
18
18
19
19
include
20
- Cohttp.Client. Make
20
+ Cohttp.Generic. Client. Make
21
21
(struct
22
22
type 'a io = 'a Lwt .t
23
23
type body = Body .t
Original file line number Diff line number Diff line change @@ -196,7 +196,7 @@ module type Client = sig
196
196
interface rather than invoke this function directly. See {!head}, {!get}
197
197
and {!post} for some examples. *)
198
198
include
199
- Cohttp.Client. S
199
+ Cohttp.Generic. Client. S
200
200
with type 'a io = 'a Lwt. t
201
201
and type body = Body. t
202
202
and type 'a with_context = ?ctx:ctx -> 'a
223
223
224
224
(* * The [Server] module implements a pipelined HTTP/1.1 server. *)
225
225
module type Server = sig
226
- include Cohttp.Server. S with type body = Body. t and type 'a IO. t = 'a Lwt. t
226
+ include Cohttp.Generic. Server. S with type body = Body. t and type 'a IO. t = 'a Lwt. t
227
227
228
228
val resolve_local_file : docroot :string -> uri :Uri .t -> string
229
229
[@@ deprecated "Please use Cohttp.Path.resolve_local_file. " ]
Original file line number Diff line number Diff line change 1
1
module Accept = Accept
2
2
module Auth = Auth
3
3
module Body = Body
4
- module Client = Client
5
4
module Conf = Conf
6
5
module Connection = Connection [@@ deprecated " Connection.t values are useless." ]
7
6
module Code = Code
@@ -11,10 +10,14 @@ module Link = Link
11
10
module Request = Request
12
11
module Response = Response
13
12
module S = S
14
- module Server = Server
15
13
module Path = Path
16
14
module Transfer = Transfer
17
15
16
+ module Generic = struct
17
+ module Client = Client
18
+ module Server = Server
19
+ end
20
+
18
21
module Private = struct
19
22
module Transfer_io = Transfer_io
20
23
module String_io = String_io
Original file line number Diff line number Diff line change 76
76
( cohttp
77
77
( = :version ) )
78
78
( lwt
79
- ( >= 2 .5 .0) )
79
+ ( >= 5 .4 .0) )
80
80
sexplib0
81
81
( ppx_sexp_conv
82
82
( >= v0.13.0) )
You can’t perform that action at this time.
0 commit comments