From 6c7da43e517afbc4b521429c7908ec3a335bc473 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Sat, 5 Oct 2019 13:17:15 -0500 Subject: [PATCH] :arrow_up: Upgrade Starlette to 0.12.9 and add State (#593) --- Pipfile | 2 +- fastapi/applications.py | 2 ++ pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Pipfile b/Pipfile index f59b751a9..9b8d31bea 100644 --- a/Pipfile +++ b/Pipfile @@ -25,7 +25,7 @@ sqlalchemy = "*" uvicorn = "*" [packages] -starlette = "==0.12.8" +starlette = "==0.12.9" pydantic = "==0.32.2" databases = {extras = ["sqlite"],version = "*"} hypercorn = "*" diff --git a/fastapi/applications.py b/fastapi/applications.py index 143c5c64b..811b90d4a 100644 --- a/fastapi/applications.py +++ b/fastapi/applications.py @@ -15,6 +15,7 @@ from fastapi.openapi.docs import ( from fastapi.openapi.utils import get_openapi from fastapi.params import Depends from starlette.applications import Starlette +from starlette.datastructures import State from starlette.exceptions import ExceptionMiddleware, HTTPException from starlette.middleware.errors import ServerErrorMiddleware from starlette.requests import Request @@ -42,6 +43,7 @@ class FastAPI(Starlette): ) -> None: self.default_response_class = default_response_class self._debug = debug + self.state = State() self.router: routing.APIRouter = routing.APIRouter( routes, dependency_overrides_provider=self ) diff --git a/pyproject.toml b/pyproject.toml index 06ca453d8..e47cb965a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,7 +19,7 @@ classifiers = [ "Topic :: Internet :: WWW/HTTP :: HTTP Servers", ] requires = [ - "starlette >=0.11.1,<=0.12.8", + "starlette >=0.12.9,<=0.12.9", "pydantic >=0.32.2,<=0.32.2" ] description-file = "README.md"