Skip to content

Commit 4f0e9e2

Browse files
committed
release 2.1.0
1 parent 9335901 commit 4f0e9e2

File tree

3 files changed

+29
-3
lines changed

3 files changed

+29
-3
lines changed

CHANGES.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
## [2.1.0](https://github.com/ocamlpro/ez_api/compare/v2.0.0...2.1.0) (2024-07-08)
2+
3+
* revamp registration of services (register/hide)
4+
* fixes:
5+
* allow different methods with same path
6+
* 404 instead of 405 if the path has no services
7+
* improvements:
8+
* extension syntax instead of attributes for ppx
9+
* allow multipart in curl common
10+
* use http code defined in error cases in the server
11+
* remove deprecated curl_multi
12+
13+
## [2.0.0](https://github.com/ocamlpro/ez_api/compare/1.2.0...v2.0.0) (2023-02-06)
14+
15+
* fixes:
16+
* capital method names
17+
* curl callback
18+
* improvements:
19+
* export session services
20+
* cookie support
21+
22+
## [1.2.0](https://github.com/ocamlpro/ez_api/compare/1.1.0...1.2.0) (2022-06-27)
23+
24+
* release dependencies constraints
25+
* better result errors
26+
127
## [1.1.0](https://github.com/ocamlpro/ez_api/compare/v1.0.0...1.1.0) (2022-04-11)
228

329
* allow collision of static and dynamic path in server

dune-project

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
(documentation "https://ocpmax.github.io/ez_api/ez_api/index.html")
1717
(depends
1818
(ocaml (>= 4.08))
19-
(json-data-encoding (>= 0.9))
19+
(json-data-encoding (>= 1.0.1))
2020
(lwt (>= 4.0.0))
2121
(ezjsonm (>= 1.1.0))
2222
uuidm)

ez_api.opam

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file is generated by dune, edit dune-project instead
22
opam-version: "2.0"
3-
version: "2.0.0"
3+
version: "2.1.0"
44
synopsis: "Easy API library and tools"
55
maintainer: ["Fabrice Le Fessant <[email protected]>"]
66
authors: [
@@ -17,7 +17,7 @@ bug-reports: "https://github.com/ocamlpro/ez_api/issues"
1717
depends: [
1818
"dune" {>= "2.8"}
1919
"ocaml" {>= "4.08"}
20-
"json-data-encoding" {>= "0.9"}
20+
"json-data-encoding" {>= "1.0.1"}
2121
"lwt" {>= "4.0.0"}
2222
"ezjsonm" {>= "1.1.0"}
2323
"uuidm"

0 commit comments

Comments
 (0)