microsoft/WindowsAppSDK

Provide a machine readable releases.json with EOL dates

Open

#4.314 aberto em 8 de abr. de 2024

Ver no GitHub
 (0 comments) (1 reaction) (0 assignees)C++ (453 forks)auto 404
feature proposalgood first issue

Métricas do repositório

Stars
 (4.628 stars)
Métricas de merge de PR
 (Métricas PR pendentes)

Description

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

Guia do colaborador