Skip to content

Commit

Permalink
Security updates November 2023 (#3797)
Browse files Browse the repository at this point in the history
  • Loading branch information
marrobi authored Nov 30, 2023
1 parent d5cd77b commit 5489c9d
Show file tree
Hide file tree
Showing 14 changed files with 3,593 additions and 3,064 deletions.
910 changes: 446 additions & 464 deletions .github/scripts/yarn.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ To resolve the Airlock import issue described in ([#3767](https://github.com/mic
FEATURES:

ENHANCEMENTS:

* Security updates aligning to Dependabot, MS Defender for Cloud and Synk ([#3796](https://github.com/microsoft/AzureTRE/issues/3796))
BUG FIXES:
* Fix issue where updates fail as read only is not configured consistently on schema fields ([#3691](https://github.com/microsoft/AzureTRE/issues/3691))
* When geting avaialble address spaces allow those allocated to deleted workspaces to be reassigned ([#3691](https://github.com/microsoft/AzureTRE/issues/3691))
Expand Down
2 changes: 1 addition & 1 deletion api_app/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.16.8"
__version__ = "0.16.9"
2 changes: 1 addition & 1 deletion api_app/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# API
azure-core==1.29.5
aiohttp==3.8.6
aiohttp==3.9.0
azure-cosmos==4.5.1
azure-identity==1.14.1
azure-mgmt-cosmosdb==9.3.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.16.1
PyJWT==2.8.0
azure-cli-core==2.50.0
azure-identity==1.14.1
aiohttp==3.8.6
aiohttp==3.9.0
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.8.0",
"azure-cli-core==2.50.0",
"azure-identity==1.14.1",
"aiohttp==3.8.6"
"aiohttp==3.9.0"
],

namespace_packages=[],
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.7.0"
__version__ = "0.7.1"
2 changes: 1 addition & 1 deletion resource_processor/vmss_porter/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ azure-servicebus==7.11.3
opencensus-ext-azure==1.1.11
opencensus-ext-logging==0.1.1
azure-identity==1.14.1
aiohttp==3.8.6
aiohttp==3.9.0
azure-cli-core==2.50.0
17 changes: 9 additions & 8 deletions templates/shared_services/certs/terraform/staticweb.tf
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
# See https://microsoft.github.io/AzureTRE/tre-developers/letsencrypt/
resource "azurerm_storage_account" "staticweb" {
name = local.staticweb_storage_name
resource_group_name = data.azurerm_resource_group.rg.name
location = data.azurerm_resource_group.rg.location
account_kind = "StorageV2"
account_tier = "Standard"
account_replication_type = "LRS"
enable_https_traffic_only = true
tags = local.tre_shared_service_tags
name = local.staticweb_storage_name
resource_group_name = data.azurerm_resource_group.rg.name
location = data.azurerm_resource_group.rg.location
account_kind = "StorageV2"
account_tier = "Standard"
account_replication_type = "LRS"
enable_https_traffic_only = true
allow_nested_items_to_be_public = false
tags = local.tre_shared_service_tags

static_website {
index_document = "index.html"
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.8.1"
__version__ = "0.8.2"
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-security-keyvault-secrets</artifactId>
<version>4.6.3</version>
<version>4.7.2</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
Expand Down
15 changes: 8 additions & 7 deletions templates/workspaces/base/terraform/storage.tf
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
resource "azurerm_storage_account" "stg" {
name = local.storage_name
resource_group_name = azurerm_resource_group.ws.name
location = azurerm_resource_group.ws.location
account_tier = "Standard"
account_replication_type = "GRS"
is_hns_enabled = true
tags = local.tre_workspace_tags
name = local.storage_name
resource_group_name = azurerm_resource_group.ws.name
location = azurerm_resource_group.ws.location
account_tier = "Standard"
account_replication_type = "GRS"
allow_nested_items_to_be_public = false
is_hns_enabled = true
tags = local.tre_workspace_tags

lifecycle { ignore_changes = [tags] }
}
Expand Down
2 changes: 1 addition & 1 deletion ui/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tre-ui",
"version": "0.5.16",
"version": "0.5.17",
"private": true,
"dependencies": {
"@azure/msal-browser": "^2.35.0",
Expand Down
5,695 changes: 3,120 additions & 2,575 deletions ui/app/yarn.lock

Large diffs are not rendered by default.

0 comments on commit 5489c9d

Please sign in to comment.