File tree Expand file tree Collapse file tree 5 files changed +23
-4
lines changed Expand file tree Collapse file tree 5 files changed +23
-4
lines changed Original file line number Diff line number Diff line change 11
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+
221## 0.17
322
423- add optional middlewares to tiny_httpd_ws
Original file line number Diff line number Diff line change 44
55( authors c-cube)
66( maintainers c-cube)
7- ( version 0 .18 )
7+ ( version 0 .19 )
88( source ( github c-cube/tiny_httpd) )
99( homepage https://github.com/c-cube/tiny_httpd/)
1010( license MIT)
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ val with_resource : 'a t -> ('a -> 'b) -> 'b
2727(* * Low level control over the pool.
2828 This is easier to get wrong (e.g. releasing the same resource twice)
2929 so use with caution.
30- @since NEXT_RELEASE *)
30+ @since 0.18 *)
3131module Raw : sig
3232 val acquire : 'a t -> 'a
3333 val release : 'a t -> 'a -> unit
Original file line number Diff line number Diff line change 11# This file is generated by dune, edit dune-project instead
22opam-version: "2.0"
3- version: "0.18 "
3+ version: "0.19 "
44synopsis: "Minimal HTTP server using threads"
55maintainer: ["c-cube"]
66authors: ["c-cube"]
Original file line number Diff line number Diff line change 11# This file is generated by dune, edit dune-project instead
22opam-version: "2.0"
3- version: "0.18 "
3+ version: "0.19 "
44synopsis: "Interface to camlzip for tiny_httpd"
55maintainer: ["c-cube"]
66authors: ["c-cube"]
You can’t perform that action at this time.
0 commit comments