Skip to content

Commit

Permalink
Security updates November 2023
Browse files Browse the repository at this point in the history
Fixes #3796
  • Loading branch information
marrobi committed Nov 30, 2023
1 parent 5848fcb commit 0faa79d
Show file tree
Hide file tree
Showing 10 changed files with 3,589 additions and 3,060 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:
* Update Python packages, and fix breaking changes ([#3764](https://github.com/microsoft/AzureTRE/issues/3764))
* Enabling support for more than 20 users/groups in Workspace API ([#3759](https://github.com/microsoft/AzureTRE/pull/3759 ))
Expand Down
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/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
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
5,695 changes: 3,120 additions & 2,575 deletions ui/app/yarn.lock

Large diffs are not rendered by default.

0 comments on commit 0faa79d

Please sign in to comment.