From cc41d79759adcac5481002afffc2ea4a2d3edea5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Nov 2025 08:57:18 +0000 Subject: [PATCH] Bump uvicorn from 0.35.0 to 0.38.0 in /backend (#1428) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [uvicorn](https://github.com/Kludex/uvicorn) from 0.35.0 to 0.38.0.
Release notes

Sourced from uvicorn's releases.

Version 0.38.0

What's Changed


New Contributors

Full Changelog: https://github.com/Kludex/uvicorn/compare/0.37.0...0.38.0

Version 0.37.0

What's Changed

New Contributors

Full Changelog: https://github.com/Kludex/uvicorn/compare/0.36.1...0.37.0

Version 0.36.1

What's Changed

Full Changelog: https://github.com/Kludex/uvicorn/compare/0.36.0...0.36.1

Version 0.36.0

Added


New Contributors

Full Changelog: https://github.com/Kludex/uvicorn/compare/0.35.0...0.36.0

Changelog

Sourced from uvicorn's changelog.

0.38.0 (October 18, 2025)

Added

0.37.0 (September 23, 2025)

Added

0.36.1 (September 23, 2025)

Fixed

0.36.0 (September 20, 2025)

Added

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=uvicorn&package-manager=uv&previous-version=0.35.0&new-version=0.38.0)](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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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> Co-authored-by: Erik Vroon --- backend/pyproject.toml | 2 +- backend/tests/integration_tests/api/shared.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 07707caa..e6651555 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -29,7 +29,7 @@ dependencies = [ "types-aiofiles==25.1.0.20251011", "types-passlib==1.7.7.20241221", "types-simplejson==3.20.0.20250218", - "uvicorn==0.35.0", + "uvicorn==0.38.0", ] [tool.pytest.ini_options] diff --git a/backend/tests/integration_tests/api/shared.py b/backend/tests/integration_tests/api/shared.py index a2ede3f6..dc250e73 100644 --- a/backend/tests/integration_tests/api/shared.py +++ b/backend/tests/integration_tests/api/shared.py @@ -53,7 +53,6 @@ class UvicornTestServer(uvicorn.Server): async def startup(self, sockets: Sequence[socket.socket] | None = None) -> None: sockets_list = list(sockets) if sockets is not None else sockets await super().startup(sockets=sockets_list) - self.config.setup_event_loop() self._startup_done.set() async def up(self) -> None: