Skip to content

Commit

Permalink
update for spec-tools 0.10.6
Browse files Browse the repository at this point in the history
  • Loading branch information
frenchy64 committed May 14, 2024
1 parent 6b5b7de commit 2577f74
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ See also: [compojure-api 1.1.x changelog](./CHANGELOG-1.1.x.md)
## Next
* Lazily load spec and schema coercion support to preserve Clojure 1.8 support for 1.1.x
* bump spec-tools to 0.10.6
* notable changes: swagger `:name` defaults to `"body"` instead of `""` ([diff](https://github.com/metosin/spec-tools/compare/0.10.2...0.10.3))

## 2.0.0-alpha34-SNAPSHOT
* **BREAKING CHANGE**: `:formatter :muuntaja` sometimes required for `api{-middleware}` options
Expand Down
8 changes: 4 additions & 4 deletions test19/compojure/api/coercion/spec_coercion_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@
:responses {:default {:description ""}}}}
"/body-map" {:post {:parameters [{:description ""
:in "body"
:name ""
:name "body"
:required true
:schema {:properties {:x {:format "int64"
:type "integer"}
Expand All @@ -404,7 +404,7 @@
:responses {:default {:description ""}}}}
"/body-params" {:post {:parameters [{:description ""
:in "body"
:name ""
:name "body"
:required true
:schema {:properties {:x {:format "int64"
:type "integer"}
Expand All @@ -415,7 +415,7 @@
:responses {:default {:description ""}}}}
"/body-string" {:post {:parameters [{:description ""
:in "body"
:name ""
:name "body"
:required true
:schema {:type "string"}}]
:responses {:default {:description ""}}}}
Expand Down Expand Up @@ -476,7 +476,7 @@
:default {:description ""}}}
:post {:parameters [{:description ""
:in "body"
:name ""
:name "body"
:required true
:schema {:properties {:x {:format "int64"
:type "integer"}
Expand Down

0 comments on commit 2577f74

Please sign in to comment.