Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Provide a machine readable releases.json with EOL dates #4314

Open
juwens opened this issue Apr 8, 2024 · 0 comments
Open

Provide a machine readable releases.json with EOL dates #4314

juwens opened this issue Apr 8, 2024 · 0 comments

Comments

@juwens
Copy link

juwens commented Apr 8, 2024

Describe the bug

I want to automatically check in my CI if the referenced WindowsAppSDK version is still supported.

Please add something like this for AppSDK.

requirements:

  • machine readable (json)
  • example structure:
{
  "releases":
  [
    {
      "version": "1.5.1",
      "build-version": "1.5.240311000",
      "release-version": "1.5", // just guessing the name here
      "release-date": "2024-03-12",
      "eol-date": "2025-02-28",
      "download-urls": [ // stretch goal
        {"arch": "x64", "url": "https://aka.ms/windowsappsdk/1.5/1.5.240311000/windowsappruntimeinstall-x64.exe"},
        {"arch": "x86", "url": "https://aka.ms/windowsappsdk/1.5/1.5.240311000/windowsappruntimeinstall-x86.exe"},
        {"arch": "arm64", "url": "https://aka.ms/windowsappsdk/1.5/1.5.240311000/windowsappruntimeinstall-arm64.exe"},
      ]
    }
  ]
}

DotnetSDK offers a nice orientation, on how it could look:

Currently, the only way is the non machine readable page: https://learn.microsoft.com/en-us/windows/apps/windows-app-sdk/release-channels?source=recommendations#release-lifecycle

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants