Le 18/11/2019 à 20:52, Alexandre GAUVRIT a écrit : > Hi, > > We recently found out that Google provides a website for their latest > release of Chrome, for every channel/plateform/architecture > : https://omahaproxy.appspot.com/ > > They provide a CSV + JSON with parameters > (https://omahaproxy.appspot.com/all?os=win64 / > https://omahaproxy.appspot.com/all.json?os=win64&channel=stable), > easy to download + parse to track latest release and compliance > > Would this be possible in the future for Mozilla products ? > > This would be better than actual dirty directory listing scraping. > > Cheers > > Alexandre > Hello Alexandre,
We provide JSON files with release data (and have been for over a decade) via the product-details public JSON API, here is the documentation: https://wiki.mozilla.org/Release_Management/Product_details IMO, the most useful file to keep up to date with current release versions is https://product-details.mozilla.org/1.0/firefox_versions.json ex in PHP to get the version number for the last ESR: print json_decode(file_get_contents('https://product-details.mozilla.org/1.0/firefox_versions.json'), true)['FIREFOX_ESR']; We do not provide a CSV version though. If you want a UI to search for our build data we also have this site: https://buildhub.moz.tools/ ex: https://buildhub.moz.tools/?platform[0]=win64&channel[0]=esr&products[0]=firefox Regards Pascal Chevrel -- Pascal Chevrel Firefox Release Manager + Firefox Nightly community management
_______________________________________________ Enterprise mailing list [email protected] https://mail.mozilla.org/listinfo/enterprise To unsubscribe from this list, please visit https://mail.mozilla.org/listinfo/enterprise or send an email to [email protected] with a subject of "unsubscribe"

