From ece9cbc225bc2d8d40398116aad5a77ade871ebf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 4 Jun 2026 00:01:54 +0000 Subject: [PATCH 1/2] Bump aiohttp from 3.13.5 to 3.14.0 --- updated-dependencies: - dependency-name: aiohttp dependency-version: 3.14.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 45a7f5d..613f358 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -aiohttp==3.13.5 +aiohttp==3.14.0 aiohttp-jinja2==1.6 gidgethub==5.4.0 aiohttp-session[secure]==2.12.1 From aef894172fe2ab6d3f46d884de1de78c5be897f2 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Fri, 5 Jun 2026 11:01:40 +0300 Subject: [PATCH 2/2] Ignore aiohttp.web_exceptions.NotAppKeyWarning --- pytest.ini | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pytest.ini b/pytest.ini index ee3bbae..4b858f8 100644 --- a/pytest.ini +++ b/pytest.ini @@ -9,6 +9,9 @@ addopts = --cov-report xml xfail_strict = True asyncio_mode = auto -filterwarnings = error +filterwarnings = + error + # Pending https://github.com/aio-libs/aiohttp-session/pull/1204 + ignore::aiohttp.web_exceptions.NotAppKeyWarning testpaths = tests