8.4 KiB
Next release
-
Upgrade compatible Pydantic version to
0.21.0
. PR #90. -
Add documentation for: Application Configuration.
-
Fix typo in docs. PR #76 by @matthewhegarty.
0.8.0
-
Add support for adding
tags
inapp.include_router()
. PR #55 by @euri10. Documentation updated in the section: Bigger Applications. -
Update docs related to Uvicorn to use new
--reload
option from version0.5.x
. PR #74. -
Update
isort
imports and scripts to be compatible with newer versions. PR #75.
0.7.1
-
Update technical details about
async def
handling with respect to previous frameworks. PR #64 by @haizaar. -
Add deployment documentation for Docker in Raspberry Pi and other architectures.
-
Trigger Docker images build on Travis CI automatically. PR #65.
0.7.0
- Add support for
UploadFile
inFile
parameter annotations.- This includes a file-like interface.
- Here's the updated documentation for declaring
File
parameters withUploadFile
. - And here's the updated documentation for using
Form
parameters mixed withFile
parameters, supportingbytes
andUploadFile
at the same time. - PR #63.
0.6.4
-
Add technical details about
async def
handling to docs. PR #61. -
Add docs for Debugging FastAPI applications in editors.
-
Fix typos in docs.
-
Add section about History, Design and Future.
-
Add docs for using WebSockets with FastAPI. PR #62.
0.6.3
- Add Favicons to docs. PR #53.
0.6.2
-
Introduce new project generator based on FastAPI and PostgreSQL: https://github.com/tiangolo/full-stack-fastapi-postgresql. PR #52.
-
Update SQL tutorial with SQLAlchemy, using
Depends
to improve editor support and reduce code repetition. PR #52. -
Improve middleware naming in tutorial for SQL with SQLAlchemy https://fastapi.tiangolo.com/tutorial/sql-databases/.
0.6.1
- Add docs for GraphQL: https://fastapi.tiangolo.com/tutorial/graphql/. PR #48.
0.6.0
-
Update SQL with SQLAlchemy tutorial at https://fastapi.tiangolo.com/tutorial/sql-databases/ using the new official
request.state
. PR #45. -
Upgrade Starlette to version
0.11.1
and add required compatibility changes. PR #44.
0.5.1
-
Add section about helping and getting help with FastAPI.
-
Add note about path operations order in docs.
-
Update section about error handling with more information and make relation with Starlette error handling utilities more explicit. PR #41.
0.5.0
-
Add new
HTTPException
with support for custom headers. With new documentation for handling errors at: https://fastapi.tiangolo.com/tutorial/handling-errors/. PR #35. -
Add documentation to use Starlette
Request
object directly. Check #25 by @euri10. -
Add issue templates to simplify reporting bugs, getting help, etc: #34.
-
Update example for the SQLAlchemy tutorial at https://fastapi.tiangolo.com/tutorial/sql-databases/ using middleware and database session attached to request.
0.4.0
-
Add
openapi_prefix
, support for reverse proxy and mounting sub-applications. 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
- Fix/add SQLAlchemy support, including ORM, and update docs for SQLAlchemy: #30.
0.2.1
- Fix
jsonable_encoder
for Pydantic models withConfig
but withoutjson_encoders
: #29.