From d70362cb4a0d5180e43e59a2fcf785a5c4f0c0cf Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 17 Aug 2026 11:23:53 +0000 Subject: [PATCH 1/3] Initial plan From 5f734204833736d7352c03f8c32cbf0022e6c6c3 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 17 Aug 2026 11:26:14 +0000 Subject: [PATCH 2/3] Pin starlette in API requirements.txt Co-authored-by: marrobi <17089773+marrobi@users.noreply.github.com> --- CHANGELOG.md | 3 +++ api_app/_version.py | 2 +- api_app/requirements.txt | 1 + 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a57a4c1ca..e7a79f01d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ ENHANCEMENTS: +BUG FIXES: +* Pin `starlette` in the API `requirements.txt` as it is imported directly in `main.py` (`API` 0.26.6) ([#5036](https://github.com/microsoft/AzureTRE/issues/5036)) + ## (0.29.0) (August 14, 2026) **BREAKING CHANGES** * Remove Windows 10 and dsvm image support from Guacamole. ([#4890](https://github.com/microsoft/AzureTRE/issues/4890)) diff --git a/api_app/_version.py b/api_app/_version.py index ae62eb6326..1932d0ba38 100644 --- a/api_app/_version.py +++ b/api_app/_version.py @@ -1 +1 @@ -__version__ = "0.26.5" +__version__ = "0.26.6" diff --git a/api_app/requirements.txt b/api_app/requirements.txt index f6ff5ba239..09565c7d1f 100644 --- a/api_app/requirements.txt +++ b/api_app/requirements.txt @@ -22,5 +22,6 @@ PyJWT==2.13.0 pytz==2025.2 python-dateutil==2.9.0.post0 semantic-version==2.10.0 +starlette==1.3.1 uvicorn[standard]==0.40.0 pydantic==2.13.4 From fa38180e83a7b04b9175a3af133ca3ac9f36c861 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 27 Aug 2026 10:35:45 +0000 Subject: [PATCH 3/3] Bump API version for Starlette pin Co-authored-by: rudolphjacksonm <13438569+rudolphjacksonm@users.noreply.github.com> --- CHANGELOG.md | 2 +- api_app/_version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fd11282fe0..1a70f9a19f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ ENHANCEMENTS: * Update UI dependencies: `brace-expansion` to 1.1.18, `fast-uri` to 3.1.5, `immutable` to 5.1.9, `js-yaml` to 4.3.1, `nanoid` to 3.3.18, and `postcss` to 8.5.26. ([#5056](https://github.com/microsoft/AzureTRE/pull/5056)) BUG FIXES: -* Pin `starlette` in the API `requirements.txt` as it is imported directly in `main.py` (`API` 0.26.6) ([#5036](https://github.com/microsoft/AzureTRE/issues/5036)) +* Pin `starlette` in the API `requirements.txt` as it is imported directly in `main.py` (`API` 0.26.7) ([#5036](https://github.com/microsoft/AzureTRE/issues/5036)) * Configure the default pytest-asyncio fixture loop scope to `function` to remove the deprecation warning. ([#5055](https://github.com/microsoft/AzureTRE/pull/5055)) ## (0.29.0) (August 14, 2026) diff --git a/api_app/_version.py b/api_app/_version.py index 1932d0ba38..2f03f25310 100644 --- a/api_app/_version.py +++ b/api_app/_version.py @@ -1 +1 @@ -__version__ = "0.26.6" +__version__ = "0.26.7"