From 8688f07e7bafe2a29e8d8f4c01bd4e958eea68e9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 30 Jan 2024 08:21:54 +0000 Subject: [PATCH] Bump uvicorn from 0.22.0 to 0.27.0.post1 in /backend/app Bumps [uvicorn](https://github.com/encode/uvicorn) from 0.22.0 to 0.27.0.post1. - [Release notes](https://github.com/encode/uvicorn/releases) - [Changelog](https://github.com/encode/uvicorn/blob/master/CHANGELOG.md) - [Commits](https://github.com/encode/uvicorn/compare/0.22.0...0.27.0.post1) --- updated-dependencies: - dependency-name: uvicorn dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- backend/app/poetry.lock | 11 ++++++----- backend/app/pyproject.toml | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/backend/app/poetry.lock b/backend/app/poetry.lock index 7743f0e..e4fd1cd 100644 --- a/backend/app/poetry.lock +++ b/backend/app/poetry.lock @@ -3189,13 +3189,13 @@ zstd = ["zstandard (>=0.18.0)"] [[package]] name = "uvicorn" -version = "0.22.0" +version = "0.27.0.post1" description = "The lightning-fast ASGI server." optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "uvicorn-0.22.0-py3-none-any.whl", hash = "sha256:e9434d3bbf05f310e762147f769c9f21235ee118ba2d2bf1155a7196448bd996"}, - {file = "uvicorn-0.22.0.tar.gz", hash = "sha256:79277ae03db57ce7d9aa0567830bbb51d7a612f54d6e1e3e92da3ef24c2c8ed8"}, + {file = "uvicorn-0.27.0.post1-py3-none-any.whl", hash = "sha256:4b85ba02b8a20429b9b205d015cbeb788a12da527f731811b643fd739ef90d5f"}, + {file = "uvicorn-0.27.0.post1.tar.gz", hash = "sha256:54898fcd80c13ff1cd28bf77b04ec9dbd8ff60c5259b499b4b12bb0917f22907"}, ] [package.dependencies] @@ -3205,6 +3205,7 @@ h11 = ">=0.8" httptools = {version = ">=0.5.0", optional = true, markers = "extra == \"standard\""} python-dotenv = {version = ">=0.13", optional = true, markers = "extra == \"standard\""} pyyaml = {version = ">=5.1", optional = true, markers = "extra == \"standard\""} +typing-extensions = {version = ">=4.0", markers = "python_version < \"3.11\""} uvloop = {version = ">=0.14.0,<0.15.0 || >0.15.0,<0.15.1 || >0.15.1", optional = true, markers = "(sys_platform != \"win32\" and sys_platform != \"cygwin\") and platform_python_implementation != \"PyPy\" and extra == \"standard\""} watchfiles = {version = ">=0.13", optional = true, markers = "extra == \"standard\""} websockets = {version = ">=10.4", optional = true, markers = "extra == \"standard\""} @@ -3682,4 +3683,4 @@ testing = ["coverage (>=5.0.3)", "zope.event", "zope.testing"] [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "ac232df324f4977545b2ea91f0fcd7d672f3ff126da2a285ce11b3db39f604d7" +content-hash = "772be4d2a87ff5e310a4557c4ff5a8642e754cb2f770dfbca75db45c816a6ed2" diff --git a/backend/app/pyproject.toml b/backend/app/pyproject.toml index 2a09046..52e783a 100644 --- a/backend/app/pyproject.toml +++ b/backend/app/pyproject.toml @@ -8,7 +8,7 @@ maintainers = [] [tool.poetry.dependencies] python = "^3.9" fastapi = "^0.109.0" -uvicorn = { version = "^0.22.0", extras = ["standard"] } +uvicorn = { version = "^0.27.0", extras = ["standard"] } gunicorn = "^21.2.0" pydantic = { extras = ["email"], version = "^2.5.3" } pydantic-settings = "^2"