@@ -14,42 +14,36 @@ Experimental
14
14
- Remote and relative [ refs] ( https://swagger.io/docs/specification/using-ref/ )
15
15
- Request coercions powered by [ Malli] ( https://github.com/metosin/malli )
16
16
- requestBody coercion
17
- - The following OpenAPI types are currently supported:
18
- - string
19
- - integer
20
- - array
21
- - object
22
- - uuid
17
+ - A fair set of OpenAPI types are currently supported, please raise an issue if something is unsupported
23
18
24
19
Currently unsupported:
25
20
- Response coercions
26
21
- Other coercion libs
27
- - A lot more of the OpenAPI spec
28
22
29
23
Any contributions are much much welcome and appreciated!
30
24
31
25
## Installation
32
26
Leiningen/Boot
33
27
``` clojure
34
- [org.clojars.lispyclouds/navi " 0.0.4 " ]
28
+ [org.clojars.lispyclouds/navi " 0.0.5 " ]
35
29
```
36
30
37
31
Clojure CLI/deps.edn
38
32
``` clojure
39
- {org.clojars.lispyclouds/navi {:mvn/version " 0.0.4 " }}
33
+ {org.clojars.lispyclouds/navi {:mvn/version " 0.0.5 " }}
40
34
```
41
35
42
36
Gradle
43
37
``` groovy
44
- compile 'org.clojars.lispyclouds:navi:0.0.4 '
38
+ compile 'org.clojars.lispyclouds:navi:0.0.5 '
45
39
```
46
40
47
41
Maven
48
42
``` xml
49
43
<dependency >
50
44
<groupId >org.clojars.lispyclouds</groupId >
51
45
<artifactId >navi</artifactId >
52
- <version >0.0.4 </version >
46
+ <version >0.0.5 </version >
53
47
</dependency >
54
48
```
55
49
@@ -204,7 +198,7 @@ Bootstrapping a Jetty server:
204
198
205
199
deps.edn used for this example:
206
200
``` edn
207
- {:deps {org.clojars.lispyclouds/navi {:mvn/version " 0.0.4 " }
201
+ {:deps {org.clojars.lispyclouds/navi {:mvn/version " 0.0.5 " }
208
202
metosin/reitit-core {:mvn/version " 0.6.0" }
209
203
metosin/reitit-http {:mvn/version " 0.6.0" }
210
204
metosin/reitit-interceptors {:mvn/version " 0.6.0" }
0 commit comments