Skip to content

Commit 933be9e

Browse files
[nightly] Update dependencies from syft
1 parent bd0e7aa commit 933be9e

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

README.aspire-dashboard.md

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

120120
Tags | Dockerfile | OS Version
121121
-----------| -------------| -------------
122-
13.1.0, 13.1, 13, latest | [Dockerfile](src/aspire-dashboard/amd64/Dockerfile) | Azure Linux 3.0
122+
13.2.0, 13.2, 13, latest | [Dockerfile](src/aspire-dashboard/amd64/Dockerfile) | Azure Linux 3.0
123123

124124
### Linux arm64 Tags
125125

126126
Tags | Dockerfile | OS Version
127127
-----------| -------------| -------------
128-
13.1.0, 13.1, 13, latest | [Dockerfile](src/aspire-dashboard/arm64v8/Dockerfile) | Azure Linux 3.0
128+
13.2.0, 13.2, 13, latest | [Dockerfile](src/aspire-dashboard/arm64v8/Dockerfile) | Azure Linux 3.0
129129
<!--End of generated tags-->
130130

131131
*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.*

manifest.versions.json

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

20-
"aspire-dashboard|build-version": "13.1.0-preview.1.25604.1",
21-
"aspire-dashboard|product-version": "13.1.0",
22-
"aspire-dashboard|fixed-tag": "13.1.0",
23-
"aspire-dashboard|minor-tag": "13.1",
20+
"aspire-dashboard|build-version": "13.2.0-preview.1.25611.1",
21+
"aspire-dashboard|product-version": "13.2.0",
22+
"aspire-dashboard|fixed-tag": "13.2.0",
23+
"aspire-dashboard|minor-tag": "13.2",
2424
"aspire-dashboard|major-tag": "13",
25-
"aspire-dashboard|linux|x64|sha": "687f04d2d1ee90cc504eef699c6b9c0a784d89216dab2ec4b5ff1bd5656bfa0e64155c76058437628c04c766c3896597ca5f1c97ef520ba0f97863d0f3c1f2b4",
26-
"aspire-dashboard|linux|arm64|sha": "d787e4cc094cee3ddc2af79d6ab8c5174b548e48c8eed866ec2edd152396256aff1f9996e780d919f2fbc1fb8af08712eb23479542053f29a0f7fcbd2a7bc706",
25+
"aspire-dashboard|linux|x64|sha": "920913285307f6ad5146da38449251859601c2c0ed4ec5251c1dd9a971edf5cf2021aaa6112f4b92e259267972d2695a300d6d8fa7d432f664847fdc0adc5647",
26+
"aspire-dashboard|linux|arm64|sha": "e8ef0cfa6d6c60d3bcde80f8f50b87f4c8fcda88a7b6762f5780d0ff8f23d140ac88a1a87888bdda7040466fae3e96ca53ace7fb5d3a47282f778d7f24764b7e",
2727
"aspire-dashboard|base-url|main": "$(base-url|public|preview|nightly)",
2828
"aspire-dashboard|base-url|nightly": "$(base-url|public|preview|nightly)",
2929

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.25604.1 \
12+
RUN dotnet_aspire_version=13.2.0-preview.1.25611.1 \
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='687f04d2d1ee90cc504eef699c6b9c0a784d89216dab2ec4b5ff1bd5656bfa0e64155c76058437628c04c766c3896597ca5f1c97ef520ba0f97863d0f3c1f2b4' \
14+
&& aspire_dashboard_sha512='920913285307f6ad5146da38449251859601c2c0ed4ec5251c1dd9a971edf5cf2021aaa6112f4b92e259267972d2695a300d6d8fa7d432f664847fdc0adc5647' \
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.25604.1 \
12+
RUN dotnet_aspire_version=13.2.0-preview.1.25611.1 \
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='d787e4cc094cee3ddc2af79d6ab8c5174b548e48c8eed866ec2edd152396256aff1f9996e780d919f2fbc1fb8af08712eb23479542053f29a0f7fcbd2a7bc706' \
14+
&& aspire_dashboard_sha512='e8ef0cfa6d6c60d3bcde80f8f50b87f4c8fcda88a7b6762f5780d0ff8f23d140ac88a1a87888bdda7040466fae3e96ca53ace7fb5d3a47282f778d7f24764b7e' \
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

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ public static class TestData
376376
private static readonly ProductImageData[] s_AspireDashboardTestData =
377377
{
378378
new() {
379-
Version = V13_1,
379+
Version = V13_2,
380380
VersionFamily = V9_0,
381381
OS = OS.AzureLinux30Distroless,
382382
OSTag = "",
@@ -385,7 +385,7 @@ public static class TestData
385385
SupportedImageRepos = DotNetImageRepo.Aspire_Dashboard,
386386
},
387387
new() {
388-
Version = V13_1,
388+
Version = V13_2,
389389
VersionFamily = V9_0,
390390
OS = OS.AzureLinux30Distroless,
391391
OSTag = "",

0 commit comments

Comments
 (0)