From: Sebastián Ramírez Date: Fri, 5 Apr 2019 10:28:30 +0000 (+0400) Subject: :memo: Update release notes X-Git-Tag: 0.12.0~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f0fc2fad2cfe8d1ffb64e6f9bcb3a8a88d66f728;p=thirdparty%2Ffastapi%2Ffastapi.git :memo: Update release notes --- diff --git a/docs/release-notes.md b/docs/release-notes.md index aef9404b14..2dfd2cd89f 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,11 @@ ## Next release +* Add additional `responses` parameter to *path operation decorators* to extend responses in OpenAPI (and API docs). + * It also allows extending existing responses generated from `response_model`, declare other media types (like images), etc. + * The new documentation is here: Additional Responses. + * `responses` can also be added to `.include_router()`, the updated docs are here: Bigger Applications. + * PR #97 originally initiated by @barsi. + ## 0.11.0 * Add `auto_error` parameter to security utility functions. Allowing them to be optional. Also allowing to have multiple alternative security schemes that are then checked in a single dependency instead of each one verifying and returning the error to the client automatically when not satisfied. PR #134.