From 15da01af5cb751483095c724103a6cccedefef08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Wed, 29 May 2019 13:46:27 +0400 Subject: [PATCH] :memo: Update release notes --- docs/release-notes.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/release-notes.md b/docs/release-notes.md index d4ba03c37..8aef2d2b4 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,10 @@ ## Next release +* Fix support for *paths* in *path parameters* without needing explicit `Path(...)`. + * PR [#256](https://github.com/tiangolo/fastapi/pull/256). + * Documented in PR [#272](https://github.com/tiangolo/fastapi/pull/272) by [@wshayes](https://github.com/wshayes). + * New documentation at: [Path Parameters containing paths](https://fastapi.tiangolo.com/tutorial/path-params/#path-parameters-containing-paths). + * Update docs for testing FastAPI. Include using `POST`, sending JSON, testing headers, etc. New documentation: [Testing](https://fastapi.tiangolo.com/tutorial/testing/#testing-extended-example). PR [#271](https://github.com/tiangolo/fastapi/pull/271). * Fix type declaration of `response_model` to allow generic Python types as `List[Model]`. Mainly to fix `mypy` for users. PR [#266](https://github.com/tiangolo/fastapi/pull/266).