Skip to content

Commit 84bd415

Browse files
authored
Updates for .NET 8 and 9 May 2025 Servicing (#6439)
2 parents 58f5d89 + 827e726 commit 84bd415

509 files changed

Lines changed: 2493 additions & 81983 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ contact_links:
1313
url: https://github.com/dotnet/sdk/issues/new/choose
1414
about: Please open issues relating to the .NET SDK itself in dotnet/sdk.
1515
- name: Issue with other .NET components
16-
url: https://github.com/dotnet/core/blob/master/Documentation/core-repos.md
16+
url: https://github.com/dotnet/core/blob/main/Documentation/core-repos.md
1717
about: Having issues with other .NET components? Please find the correct location where to open an issue.
1818
- name: Issue with Visual Studio Tools for Docker
1919
url: https://github.com/microsoft/dockertools/issues

.github/ISSUE_TEMPLATE/releases/dotnet-release-lifecycle.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,6 @@ Add due dates to each of the issues so that we don't lose track of them.
3434
- [ ] Update readmes
3535
- [ ] Update the [MCR tags metadata templates](https://github.com/dotnet/dotnet-docker/tree/main/eng/mcr-tags-metadata-templates) to include the new distro version
3636
- The new tags should be in a preview sub-table, like so: <https://github.com/dotnet/dotnet-docker/blob/8fc28db4f706d81a1fd075f2c6b2ca514ae75c84/eng/mcr-tags-metadata-templates/aspnet-tags.yml#L1-L3>
37-
- [ ] Update image size baselines
38-
- [ ] Queue a build of the [dotnet-docker-nightly](https://dev.azure.com/dnceng/internal/_build?definitionId=359) pipeline
39-
- [ ] Inspect the image sizes by pulling the new images from the `dotnetdocker` ACR and update the baselines accordingly
4037

4138
## Preview 1
4239

@@ -91,7 +88,6 @@ Create announcement:
9188
- [ ] [TestData.cs](/tests/Microsoft.DotNet.Docker.Tests/TestData.cs)
9289
- [ ] [mcr-tags-metadata-templates](/eng/mcr-tags-metadata-templates)
9390
- [ ] [Featured tags](/eng/readme-templates/FeaturedTags.md)
94-
- [ ] [Image size tests](/tests/performance)
9591
- [ ] Delete the Dockerfiles
9692
- [ ] Search for and simplify conditions including the EOL .NET Version in the Dockerfile templates and tests
9793
- [ ] Update the path variable appropriately for the [dotnet-docker-nightly-pr-no-cache](https://dev.azure.com/dnceng-public/public/_build?definitionId=184) pipeline so that it continues to target active Dockerfiles.

.github/ISSUE_TEMPLATE/releases/new-distro-release.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ assignees: lbussell
1919
1. - [ ] Update the [test data](https://github.com/dotnet/dotnet-docker/blob/nightly/tests/Microsoft.DotNet.Docker.Tests/TestData.cs) to include the new distro version
2020
1. - [ ] Update the [tags metadata templates](https://github.com/dotnet/dotnet-docker/tree/main/eng/mcr-tags-metadata-templates) to include the new distro version
2121
1. - [ ] Run the command to update the READMEs: `.\eng\readme-templates\Get-GeneratedReadmes.ps1`
22-
1. - [ ] Run the command to update the image size baseline file: `.\tests\performance\Validate-ImageSize.ps1 -UpdateBaselines`
2322
1. - [ ] Inspect generated changes for correctness
2423
1. - [ ] Consider whether sample Dockerfiles should be authored if this is a new distro and them to the [samples](https://github.com/dotnet/dotnet-docker/tree/main/samples)
2524
1. - [ ] Run the command to build and test your changes: `.build-and-test.ps1 -OS <os>`

.github/ISSUE_TEMPLATE/releases/new-windows-release.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ assignees: lbussell
1515
1. - [ ] Update the [test data](https://github.com/dotnet/dotnet-docker/blob/nightly/tests/Microsoft.DotNet.Docker.Tests/TestData.cs) to include the new Windows version
1616
1. - [ ] Update the [tags metadata templates](https://github.com/dotnet/dotnet-docker/tree/main/eng/mcr-tags-metadata-templates) to include the new Windows version
1717
1. - [ ] Run the command to update the READMEs: `.\eng\readme-templates\Get-GeneratedReadmes.ps1`
18-
1. - [ ] Run the command to update the image size baseline file: `.\tests\performance\Validate-ImageSize.ps1 -UpdateBaselines`
1918
1. - [ ] Inspect generated changes for correctness
2019
1. - [ ] Test the images
2120
1. - [ ] Create a local VM of the new Windows version

.github/linters/.linkspector.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
aliveStatusCodes:
2-
- 200
3-
- 406
2+
- 200 # OK
3+
- 406 # Not acceptable: server cannot provide a suitable representation for the specified `Accept` header
4+
# All GitHub links give status code 429 as of 2025-04-25.
5+
# Tracking issue: https://github.com/UmbrellaDocs/action-linkspector/issues/43
6+
# Remove status code 429 from this list when that issue is resolved.
7+
- 429 # Too many requests
48
dirs:
59
- .
610
- .github

.portal-docs/docker-hub/README.aspire-dashboard.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Featured Tags
22

3-
* `9.1`
4-
* `docker pull mcr.microsoft.com/dotnet/aspire-dashboard:9.1`
3+
* `9.2`
4+
* `docker pull mcr.microsoft.com/dotnet/aspire-dashboard:9.2`
55

66
# About
77

.portal-docs/docker-hub/README.aspnet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Watch [discussions](https://github.com/dotnet/dotnet-docker/discussions/categori
1313

1414
# Usage
1515

16-
The [.NET Docker samples](https://github.com/dotnet/dotnet-docker/blob/main/samples/README.md) show various ways to use .NET and Docker together. See [Building Docker Images for .NET Applications](https://docs.microsoft.com/dotnet/core/docker/building-net-docker-images) to learn more.
16+
The [.NET Docker samples](https://github.com/dotnet/dotnet-docker/blob/main/samples/README.md) show various ways to use .NET and Docker together. See [Introduction to .NET and Docker](https://learn.microsoft.com/dotnet/core/docker/introduction) and [Host ASP.NET Core in Docker containers](https://learn.microsoft.com/aspnet/core/host-and-deploy/docker) to learn more.
1717

1818
## Container sample: Run a web application
1919

.portal-docs/docker-hub/README.monitor-base.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Watch [discussions](https://github.com/dotnet/dotnet-docker/discussions/categori
1515

1616
# Usage
1717

18-
The [.NET Docker samples](https://github.com/dotnet/dotnet-docker/blob/main/samples/README.md) show various ways to use .NET and Docker together. See [Building Docker Images for .NET Applications](https://docs.microsoft.com/dotnet/core/docker/building-net-docker-images) to learn more.
18+
The [.NET Docker samples](https://github.com/dotnet/dotnet-docker/blob/main/samples/README.md) show various ways to use .NET and Docker together. See [Introduction to .NET and Docker](https://learn.microsoft.com/dotnet/core/docker/introduction) to learn more.
1919

2020
The following Dockerfiles demonstrate how you can use this base image to build a .NET Monitor image with a custom set of extensions.
2121

.portal-docs/docker-hub/README.monitor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Watch [discussions](https://github.com/dotnet/dotnet-docker/discussions/categori
1313

1414
# Usage
1515

16-
The [.NET Docker samples](https://github.com/dotnet/dotnet-docker/blob/main/samples/README.md) show various ways to use .NET and Docker together. See [Building Docker Images for .NET Applications](https://docs.microsoft.com/dotnet/core/docker/building-net-docker-images) to learn more.
16+
The [.NET Docker samples](https://github.com/dotnet/dotnet-docker/blob/main/samples/README.md) show various ways to use .NET and Docker together. See [Introduction to .NET and Docker](https://learn.microsoft.com/dotnet/core/docker/introduction) to learn more.
1717

1818
You can run this image as a sidecar container to collect diagnostic information and artifacts from other containers running .NET Core 3.1 or .NET 5 and later.
1919

.portal-docs/docker-hub/README.runtime-deps.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@ Watch [discussions](https://github.com/dotnet/dotnet-docker/discussions/categori
1313

1414
# Usage
1515

16-
The [.NET Docker samples](https://github.com/dotnet/dotnet-docker/blob/main/samples/README.md) show various ways to use .NET and Docker together. See [Building Docker Images for .NET Applications](https://docs.microsoft.com/dotnet/core/docker/building-net-docker-images) to learn more.
16+
The [.NET Docker samples](https://github.com/dotnet/dotnet-docker/blob/main/samples/README.md) show various ways to use .NET and Docker together. See [Introduction to .NET and Docker](https://learn.microsoft.com/dotnet/core/docker/introduction) and [Host ASP.NET Core in Docker containers](https://learn.microsoft.com/aspnet/core/host-and-deploy/docker) to learn more.
1717

18-
* [.NET self-contained Sample](https://github.com/dotnet/dotnet-docker/blob/main/samples/dotnetapp/README.md) - This [sample](https://github.com/dotnet/dotnet-docker/blob/main/samples/dotnetapp/Dockerfile.debian) builds and runs an application as a self-contained application.
18+
* [Self-contained sample](https://github.com/dotnet/dotnet-docker/blob/main/samples/releasesapp/README.md) - [Dockerfile](https://github.com/dotnet/dotnet-docker/blob/main/samples/releasesapp/Dockerfile)
19+
* [Native AOT sample](https://github.com/dotnet/dotnet-docker/blob/main/samples/releasesapi/README.md) - [Dockerfile](https://github.com/dotnet/dotnet-docker/blob/main/samples/releasesapi/Dockerfile)
1920

2021
# Image Variants
2122

0 commit comments

Comments
 (0)