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

Add a function that returns all known browser versions with Baseline data #2

Open
tonypconway opened this issue Mar 27, 2025 · 0 comments

Comments

@tonypconway
Copy link
Collaborator

It would be useful to be able to obtain a matrix of all browser versions known to this module with the following format:

{
  "browser": "chrome",
  "version": "89",
  "baselineYear": 2021, // which Baseline year feature set the version supports
  "widelyAvailableSupported": false, // whether the version supports the current WA feature set
  "releaseDate": "2021-03-02"
}

The matrix could also include extra data for downstream browsers, e.g.:

{
  "browser": "qq_android",
  "version": "14.2",
  "year": 2022,
  "widelyAvailable": true,
  "releaseDate": "2023-10-14", // or null if not available
  "engine": "Blink",
  "engineVersion": "109"
}

Also worth considering: run a daily job that publishes this data as a CSV either in the module or a github page within this repo.

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

No branches or pull requests

1 participant