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

Update list-all to fetch stable and RC versions from deno website #46

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

thgaskell
Copy link

This PR should work along with #44 and help resolve #45


I've was looking into ways to include release candidate versions, and I found that the denoland/setup-deno GitHub Action might offer a useful approach.

They fetch version information from https://deno.com/versions.json, which provides a list of all available Deno versions, including stable, and release candidates. Here’s an example response:

{
  "cli": [
    "v2.0.0-rc.10",
    "v2.0.0-rc.9",
    ...
    "v1.46.3",
    "v1.46.2",
    ...
  ],
  "std": [
    ...
  ]
}

This might be a helpful alternative to the GitHub releases API for managing version resolution, especially when dealing with release candidates. It could simplify access to all available versions, including release candidates, in one place.

@thgaskell thgaskell requested a review from a team as a code owner October 9, 2024 05:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

Support RC versions
1 participant