Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Component updates March-2024 #1326

Merged
merged 24 commits into from
Mar 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
2e7520f
Update cosmos nuget
sebader Feb 5, 2024
d15c90e
Bump playwright-core from 1.40.1 to 1.41.2 in /src/testing/userload-g…
dependabot[bot] Feb 6, 2024
6d5bfad
Bump Microsoft.NET.Sdk.Functions from 4.2.0 to 4.3.0 in /src/testing/…
dependabot[bot] Feb 6, 2024
ea81e27
Bump @playwright/test from 1.40.1 to 1.41.2 in /src/testing/userload-…
dependabot[bot] Feb 6, 2024
3f2e158
Bump vue from 3.4.3 to 3.4.15 in /src/app/AlwaysOn.UI (#1270)
dependabot[bot] Feb 6, 2024
7fd0956
Bump node from 21.5.0 to 21.6.1 in /src/app/AlwaysOn.UI (#1269)
dependabot[bot] Feb 6, 2024
9b617be
Bump Microsoft.Azure.Cosmos from 3.37.0 to 3.38.0 in /src/app/AlwaysO…
dependabot[bot] Feb 6, 2024
a018905
Bump node from 21.6.1 to 21.6.2 in /src/app/AlwaysOn.UI (#1285)
dependabot[bot] Mar 1, 2024
f425414
Bump grafana/grafana in /src/infra/monitoring/grafana (#1284)
dependabot[bot] Mar 1, 2024
1b8bfd3
Updates
sebader Mar 6, 2024
bcf65f5
npm
sebader Mar 6, 2024
af8a57c
Bump dotnet/sdk in /src/app/AlwaysOn.BackgroundProcessor (#1325)
dependabot[bot] Mar 6, 2024
61c21de
Bump Azure/azapi in /src/infra/workload/globalresources (#1321)
dependabot[bot] Mar 6, 2024
debc75e
Bump Azure/azapi in /src/infra/workload/releaseunit/modules/stamp (#1…
dependabot[bot] Mar 6, 2024
cd3a03b
Bump dotnet/sdk from 8.0 to 8.0.101 in /src/app/AlwaysOn.CatalogServi…
dependabot[bot] Mar 6, 2024
310c537
Bump Azure/azapi in /src/infra/workload/releaseunit (#1294)
dependabot[bot] Mar 6, 2024
10aeef2
Bump dotnet/sdk from 8.0 to 8.0.101 in /src/app/AlwaysOn.HealthServic…
dependabot[bot] Mar 6, 2024
833eb7f
npm
sebader Mar 6, 2024
713b297
Merge branch 'component-updates' of https://github.com/Azure/Mission-…
sebader Mar 6, 2024
5c6d9eb
Bump Microsoft.NET.Test.Sdk in /src/app/AlwaysOn.Tests (#1290)
dependabot[bot] Mar 6, 2024
a1dce33
Bump durable-functions (#1308)
dependabot[bot] Mar 6, 2024
a04bb54
Bump Azure.Messaging.EventHubs.Processor (#1327)
dependabot[bot] Mar 6, 2024
d5fae38
Merge remote-tracking branch 'origin/main' into component-updates
sebader Mar 6, 2024
dc324f5
Merge branch 'component-updates' of https://github.com/Azure/Mission-…
sebader Mar 6, 2024
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: 2 additions & 2 deletions .ado/pipelines/config/configuration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ variables:
- name: 'terraformVersion' # Terraform Version
value: '1.6.2-*'
- name: 'kubernetesVersion' # kubernetes version used for aks clusters
value: '1.27.3'
value: '1.28.5'
- name: 'helmVersion' # helm package manager version
value: 'v3.14.0'
- name: 'ingressNginxVersion' # nginx ingress controller helm chart version
value: '4.7.3'
- name: 'certManagerVersion' # cert-manager helm chart version
value: 'v1.13.3'
- name: 'dotnetSdkVersion' # dotnet sdk version
value: '8.0.100'
value: '8.0.201'
- name: 'chaosMeshVersion' # chaos-mesh chart version
value: '2.5.1'
- name: 'uiAppNodeVersion' # nodejs version for the UI app
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Azure.Data.Tables" Version="12.8.2" />
<PackageReference Include="Azure.Data.Tables" Version="12.8.3" />
<PackageReference Include="Azure.Identity" Version="1.10.4" />
<PackageReference Include="Azure.Messaging.EventHubs.Processor" Version="5.10.0" />
<PackageReference Include="Azure.Messaging.EventHubs.Processor" Version="5.11.1" />
<PackageReference Include="Microsoft.ApplicationInsights.WorkerService" Version="2.22.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
<PackageReference Include="Serilog.AspNetCore" Version="8.0.1" />
Expand Down
2 changes: 1 addition & 1 deletion src/app/AlwaysOn.BackgroundProcessor/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build-env
FROM mcr.microsoft.com/dotnet/sdk:8.0.101 AS build-env
WORKDIR /app

COPY . ./
Expand Down
2 changes: 1 addition & 1 deletion src/app/AlwaysOn.CatalogService/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Create build environment
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build-env
FROM mcr.microsoft.com/dotnet/sdk:8.0.101 AS build-env
WORKDIR /app
COPY . ./
RUN dotnet publish AlwaysOn.CatalogService -c Release -o AlwaysOn.CatalogService/out
Expand Down
2 changes: 1 addition & 1 deletion src/app/AlwaysOn.HealthService/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Create build environment
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build-env
FROM mcr.microsoft.com/dotnet/sdk:8.0.101 AS build-env
WORKDIR /app
COPY . ./
RUN dotnet publish AlwaysOn.HealthService -c Release -o AlwaysOn.HealthService/out
Expand Down
6 changes: 3 additions & 3 deletions src/app/AlwaysOn.Shared/AlwaysOn.Shared.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Azure.Messaging.EventHubs" Version="5.10.0" />
<PackageReference Include="Azure.Messaging.EventHubs" Version="5.11.1" />
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.22.0" />
<PackageReference Include="Microsoft.Azure.Cosmos" Version="3.38.0" />
<PackageReference Include="Microsoft.Azure.Cosmos" Version="3.38.1" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions" Version="8.0.1" />
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions" Version="8.0.2" />
</ItemGroup>

</Project>
6 changes: 3 additions & 3 deletions src/app/AlwaysOn.Tests/AlwaysOn.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="Moq" Version="4.20.70" />
<PackageReference Include="NUnit" Version="4.0.1" />
<PackageReference Include="NUnit" Version="4.1.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
<PackageReference Include="coverlet.collector" Version="6.0.0">
<PackageReference Include="coverlet.collector" Version="6.0.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
2 changes: 1 addition & 1 deletion src/app/AlwaysOn.UI/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Create build environment
FROM node:21.6.1 as build-env
FROM node:21.6.2 as build-env

WORKDIR /app
COPY . ./
Expand Down
794 changes: 418 additions & 376 deletions src/app/AlwaysOn.UI/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/infra/monitoring/grafana/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN chmod +x insertqueries.sh && ./insertqueries.sh
WORKDIR /app/healthmodelpanel
RUN npm install

FROM grafana/grafana:9.5.15
FROM grafana/grafana:9.5.16

# In order to run unsigned plugins such as our health model panel, we need to explicitly allow them in an env variable.
ENV GF_PLUGINS_ALLOW_LOADING_UNSIGNED_PLUGINS="healthmodelpanel"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "3.90.0"
version = "3.94.0"
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/infra/monitoring/grafana/terraform/stamps/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "3.90.0"
version = "3.94.0"
}
}

Expand Down
4 changes: 2 additions & 2 deletions src/infra/workload/globalresources/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "3.90.0"
version = "3.94.0"
}
azapi = {
source = "Azure/azapi"
version = "1.12.0"
version = "1.12.1"
}
}

Expand Down
4 changes: 2 additions & 2 deletions src/infra/workload/releaseunit/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "3.90.0"
version = "3.94.0"
}
azapi = {
source = "Azure/azapi"
version = "1.12.0"
version = "1.12.1"
}
}

Expand Down
4 changes: 2 additions & 2 deletions src/infra/workload/releaseunit/modules/stamp/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "3.90.0"
version = "3.94.0"
}
azapi = {
source = "Azure/azapi"
version = "1.12.0"
version = "1.12.1"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/testing/loadtest-azure/infra/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "3.90.0"
version = "3.94.0"
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/testing/loadtest-locust/infra/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "3.90.0"
version = "3.94.0"
}
}

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/testing/userload-generator/infra/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "3.90.0"
version = "3.94.0"
}
}

Expand Down