From 078119e3736f8ac6847b10e487ee9c13f8b2c6f0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Jun 2026 11:21:20 +0000 Subject: [PATCH 1/2] Bump aiohttp from 3.14.0 to 3.14.1 (#12874) [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=aiohttp&package-manager=pip&previous-version=3.14.0&new-version=3.14.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/constraints.txt | 2 +- requirements/dev.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements/constraints.txt b/requirements/constraints.txt index 77852439a91..86cfa06703a 100644 --- a/requirements/constraints.txt +++ b/requirements/constraints.txt @@ -345,5 +345,5 @@ zlib-ng==1.0.0 # -r requirements/test-common.in # The following packages are considered to be unsafe in a requirements file: -aiohttp==3.14.0 +aiohttp==3.14.1 # via pytest-aiohttp diff --git a/requirements/dev.txt b/requirements/dev.txt index 0cc49dfc0ae..fc61c453fe1 100644 --- a/requirements/dev.txt +++ b/requirements/dev.txt @@ -335,5 +335,5 @@ zlib-ng==1.0.0 # -r requirements/test-common.in # The following packages are considered to be unsafe in a requirements file: -aiohttp==3.14.0 +aiohttp==3.14.1 # via pytest-aiohttp From f13afae7fcbbd702b95d37bd5c71905b3d1ab479 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Jun 2026 11:35:21 +0000 Subject: [PATCH 2/2] Bump pytest-aiohttp from 1.1.0 to 1.1.1 (#12877) Bumps [pytest-aiohttp](https://github.com/aio-libs/pytest-aiohttp) from 1.1.0 to 1.1.1.
Release notes

Sourced from pytest-aiohttp's releases.

pytest-aiohttp v1.1.1

pytest-aiohttp

pytest plugin for aiohttp support

The library provides useful fixtures for creation test aiohttp server and client.

Installation

.. code-block:: console

$ pip install pytest-aiohttp

Add asyncio_mode = auto line to pytest configuration <https://docs.pytest.org/en/latest/customize.html>_ (see pytest-asyncio modes <https://github.com/pytest-dev/pytest-asyncio#modes>_ for details). The plugin works with strict mode also.

Usage

Write tests in pytest-asyncio <https://github.com/pytest-dev/pytest-asyncio>_ style using provided fixtures for aiohttp test server and client creation. The plugin provides resources cleanup out-of-the-box.

The simple usage example:

.. code-block:: python

from aiohttp import web

async def hello(request):
return web.Response(body=b"Hello, world")

def create_app():
app = web.Application()
app.router.add_route("GET", "/", hello)
return app

async def test_hello(aiohttp_client):
client = await aiohttp_client(create_app())
resp = await client.get("/")

... (truncated)

Changelog

Sourced from pytest-aiohttp's changelog.

1.1.1 (2026-06-08)

  • Drop Python 3.9 (#162)

  • Typing improvements (#69, #162)

Commits

Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/constraints.txt | 2 +- requirements/dev.txt | 2 +- requirements/lint.txt | 2 +- requirements/test-common-base.txt | 2 +- requirements/test-common.txt | 2 +- requirements/test-ft.txt | 2 +- requirements/test-mobile.txt | 2 +- requirements/test.txt | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/requirements/constraints.txt b/requirements/constraints.txt index 86cfa06703a..bf6706c7e15 100644 --- a/requirements/constraints.txt +++ b/requirements/constraints.txt @@ -212,7 +212,7 @@ pytest==9.0.3 # pytest-mock # pytest-timeout # pytest-xdist -pytest-aiohttp==1.1.0 +pytest-aiohttp==1.1.1 # via # -r requirements/lint.in # -r requirements/test-common-base.in diff --git a/requirements/dev.txt b/requirements/dev.txt index fc61c453fe1..9cb104b1ac0 100644 --- a/requirements/dev.txt +++ b/requirements/dev.txt @@ -207,7 +207,7 @@ pytest==9.0.3 # pytest-mock # pytest-timeout # pytest-xdist -pytest-aiohttp==1.1.0 +pytest-aiohttp==1.1.1 # via # -r requirements/lint.in # -r requirements/test-common-base.in diff --git a/requirements/lint.txt b/requirements/lint.txt index 5f44d162de5..2d0369bcfc0 100644 --- a/requirements/lint.txt +++ b/requirements/lint.txt @@ -115,7 +115,7 @@ pytest==9.0.3 # pytest-asyncio # pytest-codspeed # pytest-mock -pytest-aiohttp==1.1.0 +pytest-aiohttp==1.1.1 # via -r requirements/lint.in pytest-asyncio==1.4.0 # via pytest-aiohttp diff --git a/requirements/test-common-base.txt b/requirements/test-common-base.txt index 8624b473f95..3b1e679dfc2 100644 --- a/requirements/test-common-base.txt +++ b/requirements/test-common-base.txt @@ -58,7 +58,7 @@ pytest==9.0.3 # pytest-cov # pytest-mock # pytest-timeout -pytest-aiohttp==1.1.0 +pytest-aiohttp==1.1.1 # via -r requirements/test-common-base.in pytest-asyncio==1.4.0 # via pytest-aiohttp diff --git a/requirements/test-common.txt b/requirements/test-common.txt index cd305172d11..2a2050402f9 100644 --- a/requirements/test-common.txt +++ b/requirements/test-common.txt @@ -100,7 +100,7 @@ pytest==9.0.3 # pytest-mock # pytest-timeout # pytest-xdist -pytest-aiohttp==1.1.0 +pytest-aiohttp==1.1.1 # via -r requirements/test-common-base.in pytest-asyncio==1.4.0 # via pytest-aiohttp diff --git a/requirements/test-ft.txt b/requirements/test-ft.txt index 77c73738dee..725adcd13f4 100644 --- a/requirements/test-ft.txt +++ b/requirements/test-ft.txt @@ -123,7 +123,7 @@ pytest==9.0.3 # pytest-mock # pytest-timeout # pytest-xdist -pytest-aiohttp==1.1.0 +pytest-aiohttp==1.1.1 # via -r requirements/test-common-base.in pytest-asyncio==1.4.0 # via pytest-aiohttp diff --git a/requirements/test-mobile.txt b/requirements/test-mobile.txt index f5c66fce657..38bbc94ae6d 100644 --- a/requirements/test-mobile.txt +++ b/requirements/test-mobile.txt @@ -89,7 +89,7 @@ pytest==9.0.3 # pytest-cov # pytest-mock # pytest-timeout -pytest-aiohttp==1.1.0 +pytest-aiohttp==1.1.1 # via -r requirements/test-common-base.in pytest-asyncio==1.4.0 # via pytest-aiohttp diff --git a/requirements/test.txt b/requirements/test.txt index 66deab1b0e6..d8a7a51ce7e 100644 --- a/requirements/test.txt +++ b/requirements/test.txt @@ -123,7 +123,7 @@ pytest==9.0.3 # pytest-mock # pytest-timeout # pytest-xdist -pytest-aiohttp==1.1.0 +pytest-aiohttp==1.1.1 # via -r requirements/test-common-base.in pytest-asyncio==1.4.0 # via pytest-aiohttp