From f7b7a099c3a8b3a3306680ee1ffa8ae5bb947386 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Thu, 14 Feb 2019 23:02:47 +0400 Subject: [PATCH] :memo: Update Release Notes and openapi_prefix docs --- docs/release-notes.md | 4 ++++ mkdocs.yml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/release-notes.md b/docs/release-notes.md index 11d039a03..998d94dff 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,9 @@ ## Next +## 0.4.0 + +* Add `openapi_prefix`, support for reverse proxy and mounting sub-applicaitons. See the docs at https://fastapi.tiangolo.com/tutorial/sub-applications-proxy/: #26 by @kabirkhan + * Update docs/tutorial for SQLAlchemy including note about *DB Browser for SQLite*. ## 0.3.0 diff --git a/mkdocs.yml b/mkdocs.yml index d3631b7f7..397a21d9c 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -57,7 +57,7 @@ nav: - SQL (Relational) Databases: 'tutorial/sql-databases.md' - NoSQL (Distributed / Big Data) Databases: 'tutorial/nosql-databases.md' - Bigger Applications - Multiple Files: 'tutorial/bigger-applications.md' - - Sub Applications - Under a Proxy: 'tutorial/sub-applications-proxy.md' + - Sub Applications - Behind a Proxy: 'tutorial/sub-applications-proxy.md' - Application Configuration: 'tutorial/application-configuration.md' - Extra Starlette options: 'tutorial/extra-starlette.md' - Concurrency and async / await: 'async.md'