Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ ENHANCEMENTS:
* Add interactive browser login method to TRE CLI for easier authentication ([#4856](https://github.com/microsoft/AzureTRE/issues/4856))
* Harden security of the app gateway. ([#4863](https://github.com/microsoft/AzureTRE/pull/4863))
* Pass OIDC vars directly to the devcontainer ([#4871](https://github.com/microsoft/AzureTRE/issues/4871))
* Update `aiohttp` and `pytest` package versions. ([#4897](https://github.com/microsoft/AzureTRE/pull/4897))

BUG FIXES:
* Fix OpenAPI/schema sample generation for `get_sample_operation` step parameters. ([#4864](https://github.com/microsoft/AzureTRE/issues/4864))
Expand Down
2 changes: 1 addition & 1 deletion airlock_processor/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.8.9"
__version__ = "0.8.10"
2 changes: 1 addition & 1 deletion airlock_processor/requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Dev requirements
pytest==8.3.3
pytest==9.0.3
mock==5.2.0
2 changes: 1 addition & 1 deletion api_app/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.25.15"
__version__ = "0.25.16"
4 changes: 2 additions & 2 deletions api_app/requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Dev requirements
pytest-asyncio==0.24.0
pytest-asyncio==1.3.0
httpx==0.28.1
mock==5.2.0
pytest==8.3.3
pytest==9.0.3
2 changes: 1 addition & 1 deletion api_app/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
aiohttp==3.13.3
aiohttp==3.13.4
azure-core==1.38.0
azure-cosmos==4.14.3
azure-eventgrid==4.22.0
Expand Down
2 changes: 1 addition & 1 deletion cli/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ pygments==2.19.2
PyJWT==2.10.1
azure-cli-core==2.68.0
azure-identity==1.25.1
aiohttp==3.13.3
aiohttp==3.13.4
2 changes: 1 addition & 1 deletion cli/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"PyJWT==2.10.1",
"azure-cli-core==2.68.0",
"azure-identity==1.25.1",
"aiohttp==3.13.3"
"aiohttp==3.13.4"
],

namespace_packages=[],
Expand Down
4 changes: 2 additions & 2 deletions e2e_tests/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# API
httpx==0.28.1
pytest==8.3.3
pytest-asyncio==0.24.0
pytest==9.0.3
pytest-asyncio==1.3.0
starlette==0.50.0
pytest-timeout==2.2.0
pytest-xdist==3.3.1
Expand Down
2 changes: 1 addition & 1 deletion resource_processor/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.13.3"
__version__ = "0.13.4"
2 changes: 1 addition & 1 deletion resource_processor/vmss_porter/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
aiohttp==3.13.3
aiohttp==3.13.4
azure-cli-core==2.68.0
azure-identity==1.25.1
azure-monitor-opentelemetry==1.6.4
Expand Down
Loading