Skip to content
Merged
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
ENHANCEMENTS:
* Upgrade Guacamole to v1.6.0 with Java 17 and other security updates ([#4754](https://github.com/microsoft/AzureTRE/pull/4754))
* API: Replace HTTP_422_UNPROCESSABLE_ENTITY response with HTTP_422_UNPROCESSABLE_CONTENT as per RFC 9110 ([#4742](https://github.com/microsoft/AzureTRE/issues/4742))
* Make workspace shared storage quota updateable ([#4314](https://github.com/microsoft/AzureTRE/issues/4314))

BUG FIXES:
* Fix circular dependancy in base workspace. ([#4756](https://github.com/microsoft/AzureTRE/pull/4756))
Expand Down Expand Up @@ -85,6 +86,9 @@ COMPONENTS:
| tre-service-guacamole-windowsvm | 1.4.1 |
| tre-workspace-service-ohdsi | 0.3.4 |

COMPONENTS:
* Base workspace version bumped to 2.5.0 ([#4314](https://github.com/microsoft/AzureTRE/issues/4314))

## 0.25.0 (July 18, 2025)
**IMPORTANT**:
* If you update core deployment prior to this release an upstream issue with Azure RM terraform provider means that
Expand Down
2 changes: 1 addition & 1 deletion templates/workspaces/base/porter.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
schemaVersion: 1.0.0
name: tre-workspace-base
version: 2.7.1
version: 2.8.0
description: "A base Azure TRE workspace"
dockerfile: Dockerfile.tmpl
registry: azuretre
Expand Down
3 changes: 2 additions & 1 deletion templates/workspaces/base/template_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
"shared_storage_quota": {
"type": "integer",
"title": "Shared Storage Quota",
"description": "Quota (in GB) to set for the VM Shared Storage."
"description": "Quota (in GB) to set for the VM Shared Storage.",
"updateable": true
},
"enable_airlock": {
"type": "boolean",
Expand Down
Loading