Skip to content

Commit 6fca104

Browse files
committed
📝 Update release notes
1 parent 9db1f56 commit 6fca104

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

docs/release-notes.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
## Next release
22

3+
* Upgrade the compatible version of Starlette to `0.12.0`.
4+
* This includes support for ASGI 3 (the latest version of the standard).
5+
* It's now possible to use [Starlette's `StreamingResponse`](https://www.starlette.io/responses/#streamingresponse) with iterators, like [file-like](https://docs.python.org/3/glossary.html#term-file-like-object) objects (as those returned by `open()`).
6+
* It's now possible to use the low level utility `iterate_in_threadpool` from `starlette.concurrency` (for advanced scenarios).
7+
* PR [#243](https://github.com/tiangolo/fastapi/pull/243).
8+
39
* Add OAuth2 redirect page for Swagger UI. This allows having delegated authentication in the Swagger UI docs. For this to work, you need to add `{your_origin}/docs/oauth2-redirect` to the allowed callbacks in your OAuth2 provider (in Auth0, Facebook, Google, etc).
410
* For example, during development, it could be `http://localhost:8000/docs/oauth2-redirect`.
511
* Have in mind that this callback URL is independent of whichever one is used by your frontend. You might also have another callback at `https://yourdomain.com/login/callback`.

0 commit comments

Comments
 (0)