Make WordPress Core


Ignore:
Timestamp:
06/18/2024 11:57:41 AM (18 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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.