cpan-testers / cpantesters-web

A new CPAN Testers web application. The primary interface for CPAN Testers data
Other
7 stars 5 forks source link

Chart Dashboard should order by release date #11

Closed preaction closed 6 years ago

preaction commented 6 years ago

Due to a problem with Test-Simple version 2, it was rolled back and newer Test-Simple versions are v1.30xxxx. The author of Test-Simple would prefer if the more recent versions came first, so they were more prominent in the chart dashboard: http://beta.cpantesters.org/chart.html?dist=Test-Simple

Unfortunately, the API doesn't support this: The data required to order releases by date is not provided. Presently, release summary data from the API looks like this:

 {
    "dist": "Test-Simple",
    "fail": 4,
    "na": 0,
    "pass": 168,
    "unknown": 0,
    "version": "2.00_07"
}

So, we will need to add this to the API. Once this data is added to the API, we can then use the API to order the results.