diff options
Diffstat (limited to 'wizard/index.php')
| -rw-r--r-- | wizard/index.php | 40 |
1 files changed, 21 insertions, 19 deletions
diff --git a/wizard/index.php b/wizard/index.php index 681c38fa..8023ebe0 100644 --- a/wizard/index.php +++ b/wizard/index.php @@ -12,12 +12,12 @@ define('FC_EOL', 42); define('FC_DEV', 45); define('EL_EOL', 7); define('EL_DEV', 11); -define('PHP_SEC', '8.1'); +define('PHP_SEC', '8.2'); define('EPEL_DEV', 2); // 0 missing, 1 partially populated, 2 mostly full define('COUNTER', __DIR__ . "/counter.txt"); $osvers = [ - 'RHEL 10' => ['8.3'], + 'RHEL 10' => ['8.3', '8.4'], 'RHEL 9' => ['8.0', '8.1', '8.2', '8.3'], 'RHEL 8' => ['7.4', '8.2'], 'CentOS 10' => ['8.3'], @@ -56,16 +56,16 @@ $osminbase = [ 'Fedora 42' => '7.4', ]; $osmax = [ - 'RHEL 10' => '8.5', - 'RHEL 9' => '8.5', - 'RHEL 8' => '8.5', - 'CentOS 10' => '8.5', - 'CentOS 9' => '8.5', - 'EL 10' => '8.5', - 'EL 9' => '8.5', - 'EL 8' => '8.5', - 'Fedora 44' => '8.5', - 'Fedora 43' => '8.5', + 'RHEL 10' => '8.6', + 'RHEL 9' => '8.6', + 'RHEL 8' => '8.6', + 'CentOS 10' => '8.6', + 'CentOS 9' => '8.6', + 'EL 10' => '8.6', + 'EL 9' => '8.6', + 'EL 8' => '8.6', + 'Fedora 44' => '8.6', + 'Fedora 43' => '8.6', 'Fedora 42' => '8.5', ]; $osname = [ @@ -101,6 +101,7 @@ $arches = [ ]; $phpvers = [ // use false when only SCL + '8.6' => false, '8.5' => 'remi-php85', '8.4' => 'remi-php84', '8.3' => 'remi-php83', @@ -117,13 +118,14 @@ $phpvers = [ '5.4' => 'remi-php54', ]; $phpname = [ -// ':devel' => 'Development version, not ready for production', + ':devel' => 'Development version, not ready for production', + '8.6' => '8.6.0alpha1', ':stable' => 'Stable versions - usage recommended', - '8.5' => '8.5.7 (active support until December 2027)', - '8.4' => '8.4.22 (active support until December 2026)', + '8.5' => '8.5.8 (active support until December 2027)', + '8.4' => '8.4.23 (active support until December 2026)', ':secure' => 'Security only versions', - '8.3' => '8.3.31 (security only support until December 2027)', - '8.2' => '8.2.31 (security only support until December 2026)', + '8.3' => '8.3.32 (security only support until December 2027)', + '8.2' => '8.2.32 (security only support until December 2026)', ':eol' => 'Deprecated versions - usage discouraged', '8.1' => '8.1.34 (no upstream support since December 2025)', '8.0' => '8.0.30 (no upstream support since November 2023)', @@ -135,8 +137,8 @@ $phpname = [ '5.6' => '5.6.40 (no upstream support since January 2019) - SCL and EL-8 only', ]; $phptest = [ - '8.5' => '8.5.8RC1', - '8.4' => '8.4.23RC1', +// '8.5' => '8.5.8RC1', +// '8.4' => '8.4.23RC1', ]; $php = (isset($_POST['php']) && isset($phpvers[$_POST['php']]) ? $_POST['php'] : false); |
