From 21cb6821ab6e3b71a1a2c6340367157fc009632b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Dec 2024 22:06:37 +0000 Subject: [PATCH] build(deps): Bump httpx from 0.21.3 to 0.23.0 Bumps [httpx](https://github.com/encode/httpx) from 0.21.3 to 0.23.0. - [Release notes](https://github.com/encode/httpx/releases) - [Changelog](https://github.com/encode/httpx/blob/master/CHANGELOG.md) - [Commits](https://github.com/encode/httpx/compare/0.21.3...0.23.0) --- updated-dependencies: - dependency-name: httpx dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- poetry.lock | 24 ++++++++++++------------ pyproject.toml | 4 ++-- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/poetry.lock b/poetry.lock index bed2b62..5094edb 100644 --- a/poetry.lock +++ b/poetry.lock @@ -942,13 +942,13 @@ files = [ [[package]] name = "httpcore" -version = "0.14.7" +version = "0.15.0" description = "A minimal low-level HTTP client." optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" files = [ - {file = "httpcore-0.14.7-py3-none-any.whl", hash = "sha256:47d772f754359e56dd9d892d9593b6f9870a37aeb8ba51e9a88b09b3d68cfade"}, - {file = "httpcore-0.14.7.tar.gz", hash = "sha256:7503ec1c0f559066e7e39bc4003fd2ce023d01cf51793e3c173b864eb456ead1"}, + {file = "httpcore-0.15.0-py3-none-any.whl", hash = "sha256:1105b8b73c025f23ff7c36468e4432226cbb959176eab66864b8e31c4ee27fa6"}, + {file = "httpcore-0.15.0.tar.gz", hash = "sha256:18b68ab86a3ccf3e7dc0f43598eaddcf472b602aba29f9aa6ab85fe2ada3980b"}, ] [package.dependencies] @@ -977,26 +977,26 @@ pyparsing = {version = ">=2.4.2,<3.0.0 || >3.0.0,<3.0.1 || >3.0.1,<3.0.2 || >3.0 [[package]] name = "httpx" -version = "0.21.3" +version = "0.23.0" description = "The next generation HTTP client." optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" files = [ - {file = "httpx-0.21.3-py3-none-any.whl", hash = "sha256:df9a0fd43fa79dbab411d83eb1ea6f7a525c96ad92e60c2d7f40388971b25777"}, - {file = "httpx-0.21.3.tar.gz", hash = "sha256:7a3eb67ef0b8abbd6d9402248ef2f84a76080fa1c839f8662e6eb385640e445a"}, + {file = "httpx-0.23.0-py3-none-any.whl", hash = "sha256:42974f577483e1e932c3cdc3cd2303e883cbfba17fe228b0f63589764d7b9c4b"}, + {file = "httpx-0.23.0.tar.gz", hash = "sha256:f28eac771ec9eb4866d3fb4ab65abd42d38c424739e80c08d8d20570de60b0ef"}, ] [package.dependencies] certifi = "*" -charset-normalizer = "*" -httpcore = ">=0.14.0,<0.15.0" +httpcore = ">=0.15.0,<0.16.0" rfc3986 = {version = ">=1.3,<2", extras = ["idna2008"]} sniffio = "*" [package.extras] brotli = ["brotli", "brotlicffi"] -cli = ["click (==8.*)", "pygments (==2.*)", "rich (==10.*)"] +cli = ["click (==8.*)", "pygments (==2.*)", "rich (>=10,<13)"] http2 = ["h2 (>=3,<5)"] +socks = ["socksio (==1.*)"] [[package]] name = "idna" @@ -2339,4 +2339,4 @@ brotli = ["brotli"] [metadata] lock-version = "2.0" python-versions = ">=3.10,<4.0" -content-hash = "a96764b3089634a40ee9a8037a9388bf77a994dbe7c0a46df836e91b917c2e29" +content-hash = "c64c6c6070ce4ea2687dc4867dd14610de5aa4d7c709476642a5b17b42aca864" diff --git a/pyproject.toml b/pyproject.toml index 47fbc23..5a6ab0b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,7 +21,7 @@ django = "^4.2.16" # Django version fastapi = "^0.68.1" # FastAPI version uvicorn = "^0.15.0" # Uvicorn version pydantic = "^1.8.2" # Pydantic version -httpx = "^0.21.1" # HTTPX version +httpx = "^0.23.0" # HTTPX version starlette = "^0.14.2" # Starlette version asyncpg = "^0.30.0" # asyncpg version for PostgreSQL connection gunicorn = "^23.0.0" # Gunicorn version @@ -112,7 +112,7 @@ whitenoise = "6.7.0" # WhiteNoise for serving static files in Django [tool.poetry.dev-dependencies] pytest = "^6.2.4" # Pytest for unit testing pytest-asyncio = "^0.15.1" # Pytest plugin for asyncio tests -httpx = "^0.21.1" # HTTPX for HTTP requests in tests +httpx = "^0.23.0" # HTTPX for HTTP requests in tests pytest-mock = "^3.6.1" # Pytest plugin for mocking in tests # [build-system]