From 5c2828bd1398f0ef9fa5dd11f4520efd25165eea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Fri, 24 May 2019 20:46:36 +0400 Subject: [PATCH] :memo: Update release notes --- docs/release-notes.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/release-notes.md b/docs/release-notes.md index 3b134fb98..e69d19d24 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,17 @@ ## Next release +* Add support for WebSockets with dependencies and parameters. + * Support included for: + * `Depends` + * `Security` + * `Cookie` + * `Header` + * `Path` + * `Query` + * ...as these are compatible with the WebSockets protocol (e.g. `Body` is not). + * [Updated documentation for WebSockets](https://fastapi.tiangolo.com/tutorial/websockets/). + * PR [#178](https://github.com/tiangolo/fastapi/pull/178) by [@jekirl](https://github.com/jekirl). + * Upgrade the compatible version of Pydantic to `0.26.0`. * This includes JSON Schema support for IP address and network objects, bug fixes, and other features. * PR [#247](https://github.com/tiangolo/fastapi/pull/247) by [@euri10](https://github.com/euri10).