with one click
dotnet-releases
// Answer .NET release lifecycle, timeline, patch, and CVE questions by driving the public `dotnet-release` CLI over the release-index graph.
// Answer .NET release lifecycle, timeline, patch, and CVE questions by driving the public `dotnet-release` CLI over the release-index graph.
Update per-distro package files in release-notes/<version>/distros/ documenting dependencies and .NET package availability for each Linux distribution.
Audit and update os-packages.json files in dotnet/core to ensure Linux distribution package names are correct. Verifies package names against upstream package repositories and fixes mismatches.
Audit and update supported-os.json files in dotnet/core to reflect current OS version support. Uses release-notes verify for automated checking against upstream lifecycle data.
| name | dotnet-releases |
| description | Answer .NET release lifecycle, timeline, patch, and CVE questions by driving the public `dotnet-release` CLI over the release-index graph. |
Use this skill when a user asks about .NET release status, support lifecycle, what shipped in a given month or day, which CVEs affected a product or package, or whether download assets are available for a release.
Prefer the public query tool:
dotnet-release ...
If the tool is not installed globally but you are working in this repo, run it from source:
dotnet run --project src/Dotnet.Release.Tool -- ...
The tool is currently pinned to the release-index branch of dotnet/core.
Start broad, then drill down:
Overview / support status
dotnet-release
dotnet-release releases
dotnet-release releases --all
Specific major version
dotnet-release release 10.0
Chronological traversal
dotnet-release timeline
dotnet-release timeline 2026
dotnet-release timeline 2026-03
dotnet-release timeline 2026-03-10
Security / CVE questions
dotnet-release cves -n 6
dotnet-release cves since 2025
dotnet-release cves since 2026-01 --product runtime
dotnet-release cves --package System.Security.Cryptography.Cose since 2026-01
Downloads subtree
dotnet-release downloads 10.0
dotnet-release downloads 10.0 runtime --rid linux-x64
dotnet-release downloads 10.0 10.0.xx --rid linux-x64
--package or --product instead of manually filtering.release-notes only for maintainer workflows; it is not the public query surface.