📝 Update release notes

This commit is contained in:
Sebastián Ramírez 2020-08-08 20:21:03 +02:00
parent 25cb05c876
commit 1c9c80ba93
1 changed files with 1 additions and 0 deletions

View File

@ -2,6 +2,7 @@
## Latest changes
* Fix typo in docs for query parameters. PR [#1832](https://github.com/tiangolo/fastapi/pull/1832) by [@ycd](https://github.com/ycd).
* Add docs about [Async Tests](https://fastapi.tiangolo.com/advanced/async-tests/). PR [#1619](https://github.com/tiangolo/fastapi/pull/1619) by [@empicano](https://github.com/empicano).
* Raise an exception when using form data (`Form`, `File`) without having `python-multipart` installed.
* Up to now the application would run, and raise an exception only when receiving a request with form data, the new behavior, raising early, will prevent from deploying applications with broken dependencies.