From bd0e7aafe10f181a2690c4be58fc4d178db6556d Mon Sep 17 00:00:00 2001 From: dotnet-docker-bot Date: Fri, 12 Dec 2025 13:08:53 +0000 Subject: [PATCH 1/2] [nightly] Update dependencies from syft --- manifest.versions.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.versions.json b/manifest.versions.json index 5419beda09..740c3b134c 100644 --- a/manifest.versions.json +++ b/manifest.versions.json @@ -225,7 +225,7 @@ "sdk|10.0|minor-tag": "$(dotnet|10.0|minor-tag)", "syft|repo": "anchore/syft", - "syft|version": "v1.38.0", + "syft|version": "v1.38.2", "syft|tag": "$(syft|version)-debug" } } From 933be9e68b62e63effb187a4bd75297565297e59 Mon Sep 17 00:00:00 2001 From: dotnet-docker-bot Date: Mon, 15 Dec 2025 13:08:37 +0000 Subject: [PATCH 2/2] [nightly] Update dependencies from syft --- README.aspire-dashboard.md | 4 ++-- manifest.versions.json | 12 ++++++------ src/aspire-dashboard/amd64/Dockerfile | 4 ++-- src/aspire-dashboard/arm64v8/Dockerfile | 4 ++-- tests/Microsoft.DotNet.Docker.Tests/ImageVersion.cs | 2 +- tests/Microsoft.DotNet.Docker.Tests/TestData.cs | 4 ++-- 6 files changed, 15 insertions(+), 15 deletions(-) diff --git a/README.aspire-dashboard.md b/README.aspire-dashboard.md index 694d0be3f3..a83b55a5d8 100644 --- a/README.aspire-dashboard.md +++ b/README.aspire-dashboard.md @@ -119,13 +119,13 @@ Limits are per-resource. For example, a `MaxLogCount` value of 10,000 configures Tags | Dockerfile | OS Version -----------| -------------| ------------- -13.1.0, 13.1, 13, latest | [Dockerfile](src/aspire-dashboard/amd64/Dockerfile) | Azure Linux 3.0 +13.2.0, 13.2, 13, latest | [Dockerfile](src/aspire-dashboard/amd64/Dockerfile) | Azure Linux 3.0 ### Linux arm64 Tags Tags | Dockerfile | OS Version -----------| -------------| ------------- -13.1.0, 13.1, 13, latest | [Dockerfile](src/aspire-dashboard/arm64v8/Dockerfile) | Azure Linux 3.0 +13.2.0, 13.2, 13, latest | [Dockerfile](src/aspire-dashboard/arm64v8/Dockerfile) | Azure Linux 3.0 *Tags not listed in the table above are not supported. See the [Supported Tags Policy](https://github.com/dotnet/dotnet-docker/blob/main/documentation/supported-tags.md). See the [full list of tags](https://mcr.microsoft.com/v2/dotnet/nightly/aspire-dashboard/tags/list) for all supported and unsupported tags.* diff --git a/manifest.versions.json b/manifest.versions.json index 740c3b134c..0cfe1d00b6 100644 --- a/manifest.versions.json +++ b/manifest.versions.json @@ -17,13 +17,13 @@ "alpine|9.0|floating-tag-version": "$(alpine|floating-tag-version)", "alpine|8.0|floating-tag-version": "$(alpine|floating-tag-version)", - "aspire-dashboard|build-version": "13.1.0-preview.1.25604.1", - "aspire-dashboard|product-version": "13.1.0", - "aspire-dashboard|fixed-tag": "13.1.0", - "aspire-dashboard|minor-tag": "13.1", + "aspire-dashboard|build-version": "13.2.0-preview.1.25611.1", + "aspire-dashboard|product-version": "13.2.0", + "aspire-dashboard|fixed-tag": "13.2.0", + "aspire-dashboard|minor-tag": "13.2", "aspire-dashboard|major-tag": "13", - "aspire-dashboard|linux|x64|sha": "687f04d2d1ee90cc504eef699c6b9c0a784d89216dab2ec4b5ff1bd5656bfa0e64155c76058437628c04c766c3896597ca5f1c97ef520ba0f97863d0f3c1f2b4", - "aspire-dashboard|linux|arm64|sha": "d787e4cc094cee3ddc2af79d6ab8c5174b548e48c8eed866ec2edd152396256aff1f9996e780d919f2fbc1fb8af08712eb23479542053f29a0f7fcbd2a7bc706", + "aspire-dashboard|linux|x64|sha": "920913285307f6ad5146da38449251859601c2c0ed4ec5251c1dd9a971edf5cf2021aaa6112f4b92e259267972d2695a300d6d8fa7d432f664847fdc0adc5647", + "aspire-dashboard|linux|arm64|sha": "e8ef0cfa6d6c60d3bcde80f8f50b87f4c8fcda88a7b6762f5780d0ff8f23d140ac88a1a87888bdda7040466fae3e96ca53ace7fb5d3a47282f778d7f24764b7e", "aspire-dashboard|base-url|main": "$(base-url|public|preview|nightly)", "aspire-dashboard|base-url|nightly": "$(base-url|public|preview|nightly)", diff --git a/src/aspire-dashboard/amd64/Dockerfile b/src/aspire-dashboard/amd64/Dockerfile index 74caa1f829..4a3641dd1f 100644 --- a/src/aspire-dashboard/amd64/Dockerfile +++ b/src/aspire-dashboard/amd64/Dockerfile @@ -9,9 +9,9 @@ RUN tdnf install -y \ && tdnf clean all # Retrieve Aspire Dashboard -RUN dotnet_aspire_version=13.1.0-preview.1.25604.1 \ +RUN dotnet_aspire_version=13.2.0-preview.1.25611.1 \ && curl --fail --show-error --location --output aspire_dashboard.zip https://ci.dot.net/public/aspire/$dotnet_aspire_version/aspire-dashboard-linux-x64.zip \ - && aspire_dashboard_sha512='687f04d2d1ee90cc504eef699c6b9c0a784d89216dab2ec4b5ff1bd5656bfa0e64155c76058437628c04c766c3896597ca5f1c97ef520ba0f97863d0f3c1f2b4' \ + && aspire_dashboard_sha512='920913285307f6ad5146da38449251859601c2c0ed4ec5251c1dd9a971edf5cf2021aaa6112f4b92e259267972d2695a300d6d8fa7d432f664847fdc0adc5647' \ && echo "$aspire_dashboard_sha512 aspire_dashboard.zip" | sha512sum -c - \ && mkdir --parents /app \ && unzip aspire_dashboard.zip -d /app \ diff --git a/src/aspire-dashboard/arm64v8/Dockerfile b/src/aspire-dashboard/arm64v8/Dockerfile index a6b019d67e..d1aeed9769 100644 --- a/src/aspire-dashboard/arm64v8/Dockerfile +++ b/src/aspire-dashboard/arm64v8/Dockerfile @@ -9,9 +9,9 @@ RUN tdnf install -y \ && tdnf clean all # Retrieve Aspire Dashboard -RUN dotnet_aspire_version=13.1.0-preview.1.25604.1 \ +RUN dotnet_aspire_version=13.2.0-preview.1.25611.1 \ && curl --fail --show-error --location --output aspire_dashboard.zip https://ci.dot.net/public/aspire/$dotnet_aspire_version/aspire-dashboard-linux-arm64.zip \ - && aspire_dashboard_sha512='d787e4cc094cee3ddc2af79d6ab8c5174b548e48c8eed866ec2edd152396256aff1f9996e780d919f2fbc1fb8af08712eb23479542053f29a0f7fcbd2a7bc706' \ + && aspire_dashboard_sha512='e8ef0cfa6d6c60d3bcde80f8f50b87f4c8fcda88a7b6762f5780d0ff8f23d140ac88a1a87888bdda7040466fae3e96ca53ace7fb5d3a47282f778d7f24764b7e' \ && echo "$aspire_dashboard_sha512 aspire_dashboard.zip" | sha512sum -c - \ && mkdir --parents /app \ && unzip aspire_dashboard.zip -d /app \ diff --git a/tests/Microsoft.DotNet.Docker.Tests/ImageVersion.cs b/tests/Microsoft.DotNet.Docker.Tests/ImageVersion.cs index 5304c4ad80..2a29f9762d 100644 --- a/tests/Microsoft.DotNet.Docker.Tests/ImageVersion.cs +++ b/tests/Microsoft.DotNet.Docker.Tests/ImageVersion.cs @@ -14,7 +14,7 @@ public readonly record struct ImageVersion public static readonly ImageVersion V8_1 = new(new Version(8, 1), isPreview: false); public static readonly ImageVersion V9_0 = new(new Version(9, 0), isPreview: false); public static readonly ImageVersion V9_1 = new(new Version(9, 1), isPreview: false); - public static readonly ImageVersion V13_1 = new(new Version(13, 1), isPreview: false); + public static readonly ImageVersion V13_2 = new(new Version(13, 2), isPreview: false); public static readonly ImageVersion V9_2_Preview = new(new Version(9, 2), isPreview: true); public static readonly ImageVersion V10_0 = new(new Version(10, 0), isPreview: false); diff --git a/tests/Microsoft.DotNet.Docker.Tests/TestData.cs b/tests/Microsoft.DotNet.Docker.Tests/TestData.cs index aacf0a7d52..1fb291c04a 100644 --- a/tests/Microsoft.DotNet.Docker.Tests/TestData.cs +++ b/tests/Microsoft.DotNet.Docker.Tests/TestData.cs @@ -376,7 +376,7 @@ public static class TestData private static readonly ProductImageData[] s_AspireDashboardTestData = { new() { - Version = V13_1, + Version = V13_2, VersionFamily = V9_0, OS = OS.AzureLinux30Distroless, OSTag = "", @@ -385,7 +385,7 @@ public static class TestData SupportedImageRepos = DotNetImageRepo.Aspire_Dashboard, }, new() { - Version = V13_1, + Version = V13_2, VersionFamily = V9_0, OS = OS.AzureLinux30Distroless, OSTag = "",