Add machine-readable releases.json with lifecycle data#6214
Draft
guimafelipe wants to merge 1 commit intomainfrom
Draft
Add machine-readable releases.json with lifecycle data#6214guimafelipe wants to merge 1 commit intomainfrom
guimafelipe wants to merge 1 commit intomainfrom
Conversation
Add releases.json containing version, release dates, support level, and end-of-life dates for all Windows App SDK stable releases. Data sourced from the official release lifecycle page: https://learn.microsoft.com/windows/apps/windows-app-sdk/release-channels Fixes #4314
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adds a machine-readable releases.json file to the repository root, providing lifecycle data for all stable Windows App SDK releases. This addresses a developer need to programmatically check if their referenced WindowsAppSDK version is still supported, following the pattern established by dotnet/core's releases-index.json.
Changes:
- Added releases.json containing release lifecycle metadata for versions 0.5 through 1.8
- Each entry includes version information, release/patch dates, support level, and EOL date
- Data sourced from the official release lifecycle documentation
Contributor
Author
|
A to-do for this is have it to be generated from the release lifecycle page (maybe with a powershell script) or any actual source of truth for this information. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Add a machine-readable
releases.jsonfile at the repo root containing lifecycle data for all Windows App SDK stable releases.Motivation
Developers want to automatically check in CI if their referenced WindowsAppSDK version is still supported. Currently the only source is a non-machine-readable web page. This follows the pattern established by dotnet/core releases-index.json.
Data
Each release entry includes:
release-version– Major.minor versionlatest-version– Latest patch versionlatest-build-version– Full build version stringoriginal-release-date– Initial release datelatest-patch-date– Most recent patch datesupport-level–current,maintenance, oreoleol-date– End of servicing dateData sourced from the official release lifecycle page.
Impact
New file only. Zero code impact.
Fixes #4314