Skip to content

Commit

Permalink
Artifacts for .NET Jan 2025 Servicing Release (#9690)
Browse files Browse the repository at this point in the history
* Artifacts for .NET Jan 2025 Servicing Release

* Update 9.0.1.md

* Update 8.0.12.md

* Update 8.0.12.md

* Update .NET SDK versions in release notes

* Update 9.0.1.md

* Update 8.0.12.md

* Update 8.0.12.md

* Update 9.0.1.md

---------

Co-authored-by: victorisr <[email protected]>
  • Loading branch information
rbhanda and victorisr authored Jan 14, 2025
1 parent 8c8e583 commit 16ff96d
Show file tree
Hide file tree
Showing 22 changed files with 4,447 additions and 120 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ Welcome to the home of .NET [release notes](./release-notes/README.md) and [news

| Version | Release Date | Support | Latest Patch Version | End of Support |
| :-- | :-- | :-- | :-- | :-- |
| [.NET 9](release-notes/9.0/README.md) | November 12, 2024 | [STS][policies] | [9.0.0][9.0.0] | May 12, 2026 |
| [.NET 8](release-notes/8.0/README.md) | [November 14, 2023](https://devblogs.microsoft.com/dotnet/announcing-dotnet-8/) | [LTS][policies] | [8.0.11][8.0.11] | November 10, 2026 |
| [.NET 9](release-notes/9.0/README.md) | November 12, 2024 | [STS][policies] | [9.0.1][9.0.1] | May 12, 2026 |
| [.NET 8](release-notes/8.0/README.md) | [November 14, 2023](https://devblogs.microsoft.com/dotnet/announcing-dotnet-8/) | [LTS][policies] | [8.0.12][8.0.12] | November 10, 2026 |

[9.0.0]: release-notes/9.0/9.0.0/9.0.0.md
[8.0.11]: release-notes/8.0/8.0.11/8.0.11.md
[9.0.1]: release-notes/9.0/9.0.1/9.0.1.md
[8.0.12]: release-notes/8.0/8.0.12/8.0.12.md
[policies]: release-policies.md

* [Release notes](./release-notes/README.md)
Expand Down
106 changes: 106 additions & 0 deletions release-notes/8.0/8.0.12/8.0.112.md

Large diffs are not rendered by default.

739 changes: 739 additions & 0 deletions release-notes/8.0/8.0.12/8.0.12.md

Large diffs are not rendered by default.

110 changes: 110 additions & 0 deletions release-notes/8.0/8.0.12/8.0.308.md

Large diffs are not rendered by default.

751 changes: 751 additions & 0 deletions release-notes/8.0/8.0.12/release.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions release-notes/8.0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

| Date | Release |
| :-- | :-- |
| 2025/01/14 | [8.0.12](./8.0.12/8.0.12.md) |
| 2024/11/12 | [8.0.11](./8.0.11/8.0.11.md) |
| 2024/10/08 | [8.0.10](./8.0.10/8.0.10.md) |
| 2024/09/24 | [8.0.402 SDK](./8.0.8/8.0.402.md) |
Expand Down
6 changes: 5 additions & 1 deletion release-notes/8.0/cve.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,12 @@ Your app needs to be on the latest .NET 8 patch version to be secure. The longer

## Which CVEs apply to my app?

Your app may be vulnerable to the following published security [CVEs](https://www.cve.org/) if you are using the given version or older.
Your app may be vulnerable to the following published security [CVEs](https://www.cve.org/) if you are using an older version.

- 8.0.12 (January 2025)
- [CVE-2025-21172 | .NET Remote Code Execution Vulnerability](https://github.com/dotnet/announcements/issues/xxx)
- [CVE-2025-21176 | .NET Elevation of Priviledge Vulnerability](https://github.com/dotnet/announcements/issues/xxx)
- [CVE-2025-21173 | .NET Denial of Service Vulnerability](https://github.com/dotnet/announcements/issues/xxx)
- 8.0.10 (October 2024)
- [CVE-2024-38229 | .NET Remote Code Execution Vulnerability](https://github.com/dotnet/announcements/issues/326)
- [CVE-2024-43483 | .NET Denial of Service Vulnerability](https://github.com/dotnet/announcements/issues/327)
Expand Down
4 changes: 2 additions & 2 deletions release-notes/8.0/install-linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,14 @@ You can install .NET with a binary archive. This option is required if you want
The following workflow demonstrates downloading, unpacking, configuring, and running the .NET SDK from the command line. You may choose to do some of these tasks via the browser and functionality provided by your operating system.

```bash
~# curl -Lo dotnet.tar.gz https://download.visualstudio.microsoft.com/download/pr/1975ec3e-0be7-460a-af09-2765318cab53/a07859c84a3e8990ccc77fb7efa53b28/dotnet-sdk-8.0.100-rc.2.23502.2-linux-x64.tar.gz
~# curl -Lo dotnet.tar.gz https://download.visualstudio.microsoft.com/download/pr/a91ddad4-a3c2-4303-9efc-1ca6b7af850c/be1763df9211599df1cf1c6f504b3c41/dotnet-sdk-8.0.405-linux-x64.tar.gz
~# mkdir dotnet
~# tar -C dotnet -xf dotnet.tar.gz
~# rm dotnet.tar.gz
~# export DOTNET_ROOT=~/dotnet
~# export PATH=$PATH:~/dotnet
~# dotnet --version
8.0.100-rc.2.23502.2
8.0.405
```

The `DOTNET_ROOT` environment variable is required to launch an application with their executables (like `myapp.exe`). The executables look for this environment variable to find the runtime if it isn't installed in its regular location. The `PATH` environment variable must be updated if you want to use `dotnet` without absolute paths to its location. Setting both of these environment variables is optional.
Expand Down
4 changes: 2 additions & 2 deletions release-notes/8.0/install-macos.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ You can install .NET with a binary archive. This option is required if you want
The following workflow demonstrates downloading, unpacking, configuring, and running the .NET SDK from the command line. You may choose to do some of these tasks via the browser and functionality provided by your operating system.

```bash
~# curl -Lo dotnet.tar.gz https://download.visualstudio.microsoft.com/download/pr/dc1a0c20-bcf6-419a-8ebe-db4f0d930b53/6fbd18660e622ce00d45a63b9176724b/dotnet-sdk-8.0.100-rc.2.23502.2-osx-x64.tar.gz
~# curl -Lo dotnet.tar.gz https://download.visualstudio.microsoft.com/download/pr/485c72db-0004-4f65-a37f-1f80bb445fd5/dc59499a684b6c8677ae7f43ff0e0062/dotnet-sdk-8.0.405-osx-x64.tar.gz
~# mkdir dotnet
~# tar -C dotnet -xf dotnet.tar.gz
~# rm dotnet.tar.gz
~# export DOTNET_ROOT=~/dotnet
~# export PATH=$PATH:~/dotnet
~# dotnet --version
8.0.100-rc.2.23502.2
8.0.405
```

The `DOTNET_ROOT` environment variable is required to launch an application with their executables (like `myapp.exe`). The executables look for this environment variable to find the runtime if it isn't installed in its regular location. The `PATH` environment variable must be updated if you want to use `dotnet` without absolute paths to its location. Setting both of these environment variables is optional.
Expand Down
4 changes: 2 additions & 2 deletions release-notes/8.0/install-windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@ You can install .NET with a binary archive. This option is required if you want
The following workflow demonstrates downloading, unpacking, configuring, and running the .NET SDK from the command line. You may choose to do some of these tasks via the browser and functionality provided by your operating system.

```console
C:\>curl -Lo dotnet.zip https://download.visualstudio.microsoft.com/download/pr/3e9b8d29-808a-488c-aac5-e553e970adbb/76b4ecb7f8751ecf2375730398816271/dotnet-sdk-8.0.100-rc.2.23502.2-win-x64.exe
C:\>curl -Lo dotnet.zip https://download.visualstudio.microsoft.com/download/pr/4b3b488c-9e69-4d60-bba2-79412b68d15d/b55f49a270c3413a6ea4b208f820515d/dotnet-sdk-8.0.405-win-x64.exe
C:\>tar -C dotnet -xf dotnet.zip
C:\>del dotnet.zip
C:\>set DOTNET_ROOT=C:\dotnet
C:\>set PATH=%PATH%;C:\dotnet
C:\>dotnet --version
8.0.100-rc.2.23502.2
8.0.405
```

The `DOTNET_ROOT` environment variable is required to launch an application with their executables (like `myapp.exe`). The executables look for this environment variable to find the runtime if it isn't installed in its regular location. The `PATH` environment variable must be updated if you want to use `dotnet` without absolute paths to its location. Setting both of these environment variables is optional.
Expand Down
Loading

0 comments on commit 16ff96d

Please sign in to comment.