Make WordPress Core

Changeset 58432

Timestamp:
06/18/2024 11:57:41 AM (3 months ago)
Author:
hellofromTonya
Message:

Site Health: Bump the recommended MariaDB version.

MariaDB 10.4 reaches EOL (“End of Life”) on 18 June 2024. The recommended minimum is bumped to 10.5 for now, whose EOL is 24 June 2025.

Also removes the skip in tests to allow the tests to run on all branches with this change.

References:

Follow-up to [55665], [52420], [53435], [54069], [54076].

Props peterwilsoncc, dd32, costdev, mukesh27, hellofromTonya.
Fixes #61458.
See #meta7679.

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/readme.html

    r58121 r58432  
    5959<ul>
    6060    <li><a href="https://www.php.net/">PHP</a> version <strong>7.4</strong> or greater.</li>
    61     <li><a href="https://www.mysql.com/">MySQL</a> version <strong>8.0</strong> or greater OR <a href="https://mariadb.org/">MariaDB</a> version <strong>10.4</strong> or greater.</li>
     61    <li><a href="https://www.mysql.com/">MySQL</a> version <strong>8.0</strong> or greater OR <a href="https://mariadb.org/">MariaDB</a> version <strong>10.</strong> or greater.</li>
    6262    <li>The <a href="https://httpd.apache.org/docs/2.2/mod/mod_rewrite.html">mod_rewrite</a> Apache module.</li>
    6363    <li><a href="https://wordpress.org/news/2016/12/moving-toward-ssl/">HTTPS</a> support.</li>
  • trunk/src/wp-admin/includes/class-wp-site-health.php

    r58408 r58432  
    1919    private $mysql_required_version      = '5.5';
    2020    private $mysql_recommended_version   = '8.0';
    21     private $mariadb_recommended_version = '10.4';
     21    private $mariadb_recommended_version = '10.';
    2222
    2323    public $php_memory_limit;
  • trunk/tests/phpunit/tests/admin/wpSiteHealth.php

    r58332 r58432  
    3939     */
    4040    public function test_mysql_recommended_version_matches_readme_html() {
    41         // This test is designed to only run on trunk.
    42         $this->skipOnAutomatedBranches();
    43 
    4441        $reflection          = new ReflectionClass( $this->instance );
    4542        $reflection_property = $reflection->getProperty( 'mysql_recommended_version' );
     
    5855     */
    5956    public function test_mariadb_recommended_version_matches_readme_html() {
    60         // This test is designed to only run on trunk.
    61         $this->skipOnAutomatedBranches();
    62 
    6357        $reflection          = new ReflectionClass( $this->instance );
    6458        $reflection_property = $reflection->getProperty( 'mariadb_recommended_version' );
Note: See TracChangeset for help on using the changeset viewer.