diff --git a/CHANGELOG.md b/CHANGELOG.md index a7518e15ce..5549bc3001 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ * Add `GET /auth/current-user/` to tested endpoints (\#1700). * Dependencies: * Update `mkdocstrings` to `^0.25.2` (\#1707). + * Update `fastapi` to `^0.112.0` (\#1705). # 2.3.7 diff --git a/poetry.lock b/poetry.lock index 5ec091351e..cbe20191fa 100644 --- a/poetry.lock +++ b/poetry.lock @@ -755,22 +755,23 @@ pytest = ["pytest (>=7)"] [[package]] name = "fastapi" -version = "0.110.3" +version = "0.112.1" description = "FastAPI framework, high performance, easy to learn, fast to code, ready for production" optional = false python-versions = ">=3.8" files = [ - {file = "fastapi-0.110.3-py3-none-any.whl", hash = "sha256:fd7600612f755e4050beb74001310b5a7e1796d149c2ee363124abdfa0289d32"}, - {file = "fastapi-0.110.3.tar.gz", hash = "sha256:555700b0159379e94fdbfc6bb66a0f1c43f4cf7060f25239af3d84b63a656626"}, + {file = "fastapi-0.112.1-py3-none-any.whl", hash = "sha256:bcbd45817fc2a1cd5da09af66815b84ec0d3d634eb173d1ab468ae3103e183e4"}, + {file = "fastapi-0.112.1.tar.gz", hash = "sha256:b2537146f8c23389a7faa8b03d0bd38d4986e6983874557d95eed2acc46448ef"}, ] [package.dependencies] pydantic = ">=1.7.4,<1.8 || >1.8,<1.8.1 || >1.8.1,<2.0.0 || >2.0.0,<2.0.1 || >2.0.1,<2.1.0 || >2.1.0,<3.0.0" -starlette = ">=0.37.2,<0.38.0" +starlette = ">=0.37.2,<0.39.0" typing-extensions = ">=4.8.0" [package.extras] -all = ["email_validator (>=2.0.0)", "httpx (>=0.23.0)", "itsdangerous (>=1.1.0)", "jinja2 (>=2.11.2)", "orjson (>=3.2.1)", "pydantic-extra-types (>=2.0.0)", "pydantic-settings (>=2.0.0)", "python-multipart (>=0.0.7)", "pyyaml (>=5.3.1)", "ujson (>=4.0.1,!=4.0.2,!=4.1.0,!=4.2.0,!=4.3.0,!=5.0.0,!=5.1.0)", "uvicorn[standard] (>=0.12.0)"] +all = ["email_validator (>=2.0.0)", "fastapi-cli[standard] (>=0.0.5)", "httpx (>=0.23.0)", "itsdangerous (>=1.1.0)", "jinja2 (>=2.11.2)", "orjson (>=3.2.1)", "pydantic-extra-types (>=2.0.0)", "pydantic-settings (>=2.0.0)", "python-multipart (>=0.0.7)", "pyyaml (>=5.3.1)", "ujson (>=4.0.1,!=4.0.2,!=4.1.0,!=4.2.0,!=4.3.0,!=5.0.0,!=5.1.0)", "uvicorn[standard] (>=0.12.0)"] +standard = ["email_validator (>=2.0.0)", "fastapi-cli[standard] (>=0.0.5)", "httpx (>=0.23.0)", "jinja2 (>=2.11.2)", "python-multipart (>=0.0.7)", "uvicorn[standard] (>=0.12.0)"] [[package]] name = "fastapi-users" @@ -2643,4 +2644,4 @@ postgres-psycopg-binary = ["psycopg"] [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "665fcda47116c46d82969f1ebdc55980c9e154845e9f1c87d9e83852c023223a" +content-hash = "6a9e9a4b663159c7514c709946ff7a604d43048d4aa56d0801197faf64e4ca27" diff --git a/pyproject.toml b/pyproject.toml index 2579197a56..2a0054bd4a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,7 @@ exclude = [ [tool.poetry.dependencies] python = "^3.9" python-dotenv = "^1.0.0" -fastapi = "^0.110.0" +fastapi = "^0.112.0" sqlmodel = "^0.0.21" sqlalchemy = {extras = ["asyncio"], version = ">=2.0.23,<2.1"} aiosqlite = "^0.19.0"