Skip to content

Commit cb54a35

Browse files
Update Aspire Dashboard to 13.2.0 (#7111)
Co-authored-by: dotnet-docker-bot <60522487+dotnet-docker-bot@users.noreply.github.com>
1 parent f721c83 commit cb54a35

6 files changed

Lines changed: 14 additions & 14 deletions

File tree

README.aspire-dashboard.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,13 +114,13 @@ Limits are per-resource. For example, a `MaxLogCount` value of 10,000 configures
114114

115115
Tags | Dockerfile | OS Version
116116
---- | ---------- | ----------
117-
13.1.0, 13.1, 13, latest | [Dockerfile](src/aspire-dashboard/amd64/Dockerfile) | Azure Linux 3.0
117+
13.2.0, 13.2, 13, latest | [Dockerfile](src/aspire-dashboard/amd64/Dockerfile) | Azure Linux 3.0
118118

119119
### Linux arm64 Tags
120120

121121
Tags | Dockerfile | OS Version
122122
---- | ---------- | ----------
123-
13.1.0, 13.1, 13, latest | [Dockerfile](src/aspire-dashboard/arm64v8/Dockerfile) | Azure Linux 3.0
123+
13.2.0, 13.2, 13, latest | [Dockerfile](src/aspire-dashboard/arm64v8/Dockerfile) | Azure Linux 3.0
124124

125125
<!--End of generated tags-->
126126

manifest.versions.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818
"alpine|9.0|floating-tag-version": "$(alpine|floating-tag-version)",
1919
"alpine|8.0|floating-tag-version": "$(alpine|floating-tag-version)",
2020

21-
"aspire-dashboard|build-version": "13.1.0-preview.1.25616.3",
22-
"aspire-dashboard|product-version": "13.1.0",
21+
"aspire-dashboard|build-version": "13.2.0-preview.1.26170.3",
22+
"aspire-dashboard|product-version": "13.2.0",
2323
"aspire-dashboard|fixed-tag": "$(aspire-dashboard|product-version)",
24-
"aspire-dashboard|minor-tag": "13.1",
24+
"aspire-dashboard|minor-tag": "13.2",
2525
"aspire-dashboard|major-tag": "13",
26-
"aspire-dashboard|linux|x64|sha": "f0b1bad3dfdf84dc0532bb54305560df38fd3cc764f562548fcb262eea6c4ba84bb41bfe0926f1971fb5b180ebf16ffb4d2d5f0955d7b30648b2d4f6a0cb5b3d",
27-
"aspire-dashboard|linux|arm64|sha": "d073b7760f45bd295f14da8145b19dd3b9f665a5dd2f4b3fcb6019124b3f6f4eaafb4fcd1d02950b0ff67f3f448a16b4249c16ca3a1d11fc5a7e77f0837abaed",
26+
"aspire-dashboard|linux|x64|sha": "5d22e82c17478e94b2cf610d34359baae4fc4f01f53da863c663dd51321bd5d51cbf10ac3598dcf5cbd04e7c7050b6fb3bf37b945593cb40f5f44615be9d791c",
27+
"aspire-dashboard|linux|arm64|sha": "b7d12a81afcc4f75d7726ba7b387e53860b52f33d13955deac7c3dd6bbccd1dbb9e092a60e7815a1802d4b8ec510577ce10f46d8df0f394be42e058bb43bff65",
2828
"aspire-dashboard|base-url|main": "$(base-url|public|preview|nightly)",
2929
"aspire-dashboard|base-url|nightly": "$(base-url|public|preview|nightly)",
3030

src/aspire-dashboard/amd64/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ RUN tdnf install -y \
99
&& tdnf clean all
1010

1111
# Retrieve Aspire Dashboard
12-
RUN dotnet_aspire_version=13.1.0-preview.1.25616.3 \
12+
RUN dotnet_aspire_version=13.2.0-preview.1.26170.3 \
1313
&& curl --fail --show-error --location --output aspire_dashboard.zip https://ci.dot.net/public/aspire/$dotnet_aspire_version/aspire-dashboard-linux-x64.zip \
14-
&& aspire_dashboard_sha512='f0b1bad3dfdf84dc0532bb54305560df38fd3cc764f562548fcb262eea6c4ba84bb41bfe0926f1971fb5b180ebf16ffb4d2d5f0955d7b30648b2d4f6a0cb5b3d' \
14+
&& aspire_dashboard_sha512='5d22e82c17478e94b2cf610d34359baae4fc4f01f53da863c663dd51321bd5d51cbf10ac3598dcf5cbd04e7c7050b6fb3bf37b945593cb40f5f44615be9d791c' \
1515
&& echo "$aspire_dashboard_sha512 aspire_dashboard.zip" | sha512sum -c - \
1616
&& mkdir --parents /app \
1717
&& unzip aspire_dashboard.zip -d /app \

src/aspire-dashboard/arm64v8/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ RUN tdnf install -y \
99
&& tdnf clean all
1010

1111
# Retrieve Aspire Dashboard
12-
RUN dotnet_aspire_version=13.1.0-preview.1.25616.3 \
12+
RUN dotnet_aspire_version=13.2.0-preview.1.26170.3 \
1313
&& curl --fail --show-error --location --output aspire_dashboard.zip https://ci.dot.net/public/aspire/$dotnet_aspire_version/aspire-dashboard-linux-arm64.zip \
14-
&& aspire_dashboard_sha512='d073b7760f45bd295f14da8145b19dd3b9f665a5dd2f4b3fcb6019124b3f6f4eaafb4fcd1d02950b0ff67f3f448a16b4249c16ca3a1d11fc5a7e77f0837abaed' \
14+
&& aspire_dashboard_sha512='b7d12a81afcc4f75d7726ba7b387e53860b52f33d13955deac7c3dd6bbccd1dbb9e092a60e7815a1802d4b8ec510577ce10f46d8df0f394be42e058bb43bff65' \
1515
&& echo "$aspire_dashboard_sha512 aspire_dashboard.zip" | sha512sum -c - \
1616
&& mkdir --parents /app \
1717
&& unzip aspire_dashboard.zip -d /app \

tests/Microsoft.DotNet.Docker.Tests/ImageVersion.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public readonly record struct ImageVersion
1414
public static readonly ImageVersion V8_1 = new(new Version(8, 1), isPreview: false);
1515
public static readonly ImageVersion V9_0 = new(new Version(9, 0), isPreview: false);
1616
public static readonly ImageVersion V9_1 = new(new Version(9, 1), isPreview: false);
17-
public static readonly ImageVersion V13_1 = new(new Version(13, 1), isPreview: false);
17+
public static readonly ImageVersion V13_2 = new(new Version(13, 2), isPreview: false);
1818
public static readonly ImageVersion V9_2_Preview = new(new Version(9, 2), isPreview: true);
1919
public static readonly ImageVersion V10_0 = new(new Version(10, 0), isPreview: false);
2020
public static readonly ImageVersion V11_0 = new(new Version(11, 0), isPreview: true);

tests/Microsoft.DotNet.Docker.Tests/TestData.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ public static class TestData
423423
private static readonly ProductImageData[] s_AspireDashboardTestData =
424424
{
425425
new() {
426-
Version = V13_1,
426+
Version = V13_2,
427427
VersionFamily = V9_0,
428428
OS = OS.AzureLinux30Distroless,
429429
OSTag = "",
@@ -432,7 +432,7 @@ public static class TestData
432432
SupportedImageRepos = DotNetImageRepo.Aspire_Dashboard,
433433
},
434434
new() {
435-
Version = V13_1,
435+
Version = V13_2,
436436
VersionFamily = V9_0,
437437
OS = OS.AzureLinux30Distroless,
438438
OSTag = "",

0 commit comments

Comments
 (0)