File tree 5 files changed +23
-4
lines changed
5 files changed +23
-4
lines changed Original file line number Diff line number Diff line change 1
1
2
+ ## 0.19
3
+
4
+ - feat(headers): ` set ` will not reallocate whole list if not needed
5
+ - feat(headers): use case insensitive comparison
6
+ - fix(response): do not override "content-length" in raw response
7
+ - feat pool: expose ` acquire/release ` for advanced uses
8
+
9
+ ## 0.18
10
+
11
+ - feat: add ?head_middlewares to ` create `
12
+ - add content-type header for prometheus endpoint
13
+ - new flag ?enable_logging to disable regular logs (not debug)
14
+ - new sublibrary to deal with multipart-form-data
15
+ - feat response: add ` pp_with ` ; have ` pp ` hide set-cookie headers
16
+
17
+ - fix percent encoding for < 0x10 chars
18
+ - Processing to fix incompatible -O and gcc flags
19
+ - fix: make check for 'Connection: Upgrade' header case-insensitive
20
+
2
21
## 0.17
3
22
4
23
- add optional middlewares to tiny_httpd_ws
Original file line number Diff line number Diff line change 4
4
5
5
( authors c-cube)
6
6
( maintainers c-cube)
7
- ( version 0 .18 )
7
+ ( version 0 .19 )
8
8
( source ( github c-cube/tiny_httpd) )
9
9
( homepage https://github.com/c-cube/tiny_httpd/)
10
10
( license MIT)
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ val with_resource : 'a t -> ('a -> 'b) -> 'b
27
27
(* * Low level control over the pool.
28
28
This is easier to get wrong (e.g. releasing the same resource twice)
29
29
so use with caution.
30
- @since NEXT_RELEASE *)
30
+ @since 0.18 *)
31
31
module Raw : sig
32
32
val acquire : 'a t -> 'a
33
33
val release : 'a t -> 'a -> unit
Original file line number Diff line number Diff line change 1
1
# This file is generated by dune, edit dune-project instead
2
2
opam-version: "2.0"
3
- version: "0.18 "
3
+ version: "0.19 "
4
4
synopsis: "Minimal HTTP server using threads"
5
5
maintainer: ["c-cube"]
6
6
authors: ["c-cube"]
Original file line number Diff line number Diff line change 1
1
# This file is generated by dune, edit dune-project instead
2
2
opam-version: "2.0"
3
- version: "0.18 "
3
+ version: "0.19 "
4
4
synopsis: "Interface to camlzip for tiny_httpd"
5
5
maintainer: ["c-cube"]
6
6
authors: ["c-cube"]
You can’t perform that action at this time.
0 commit comments