in app/classes/ReleaseInsights/ESR.php [94:104]
public static function getWin7SupportedVersion(int $version): string
{
/*
We should ship our last ESR 115 with Firefox 142
*/
if ($version > 142) {
return '';
}
return (string) '115.' . ($version - 115) . '.0';
}