diff --git a/homeassistant/package_constraints.txt b/homeassistant/package_constraints.txt index c51e6a589c6..2e1b2688888 100644 --- a/homeassistant/package_constraints.txt +++ b/homeassistant/package_constraints.txt @@ -6,7 +6,7 @@ aiodns==3.5.0 aiohasupervisor==0.3.3 aiohttp-asyncmdnsresolver==0.1.1 aiohttp-fast-zlib==0.3.0 -aiohttp==3.13.0 +aiohttp==3.13.1 aiohttp_cors==0.8.1 aiousbwatcher==1.1.1 aiozoneinfo==0.2.3 diff --git a/pyproject.toml b/pyproject.toml index 68eff5063f6..38408172d16 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,7 @@ dependencies = [ # change behavior based on presence of supervisor. Deprecated with #127228 # Lib can be removed with 2025.11 "aiohasupervisor==0.3.3", - "aiohttp==3.13.0", + "aiohttp==3.13.1", "aiohttp_cors==0.8.1", "aiohttp-fast-zlib==0.3.0", "aiohttp-asyncmdnsresolver==0.1.1", diff --git a/requirements.txt b/requirements.txt index cea224937bf..d7e74b4edc1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,7 +5,7 @@ # Home Assistant Core aiodns==3.5.0 aiohasupervisor==0.3.3 -aiohttp==3.13.0 +aiohttp==3.13.1 aiohttp_cors==0.8.1 aiohttp-fast-zlib==0.3.0 aiohttp-asyncmdnsresolver==0.1.1 diff --git a/tests/components/hassio/test_http.py b/tests/components/hassio/test_http.py index 8ed59bc78d1..98dda1c8fe9 100644 --- a/tests/components/hassio/test_http.py +++ b/tests/components/hassio/test_http.py @@ -508,8 +508,14 @@ async def test_no_follow_logs_compress( hassio_client: TestClient, aioclient_mock: AiohttpClientMocker ) -> None: """Test that we do not compress follow logs.""" - aioclient_mock.get("http://127.0.0.1/supervisor/logs/follow") - aioclient_mock.get("http://127.0.0.1/supervisor/logs") + aioclient_mock.get( + "http://127.0.0.1/supervisor/logs/follow", + headers={"Content-Type": "text/plain"}, + ) + aioclient_mock.get( + "http://127.0.0.1/supervisor/logs", + headers={"Content-Type": "text/plain"}, + ) resp1 = await hassio_client.get("/api/hassio/supervisor/logs/follow") resp2 = await hassio_client.get("/api/hassio/supervisor/logs")