Changeset 58432
- Timestamp:
- 06/18/2024 11:57:41 AM (7 months ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/readme.html
r58121 r58432 59 59 <ul> 60 60 <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.5</strong> or greater.</li> 62 62 <li>The <a href="https://httpd.apache.org/docs/2.2/mod/mod_rewrite.html">mod_rewrite</a> Apache module.</li> 63 63 <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 19 19 private $mysql_required_version = '5.5'; 20 20 private $mysql_recommended_version = '8.0'; 21 private $mariadb_recommended_version = '10. 4';21 private $mariadb_recommended_version = '10.5'; 22 22 23 23 public $php_memory_limit; -
trunk/tests/phpunit/tests/admin/wpSiteHealth.php
r58332 r58432 39 39 */ 40 40 public function test_mysql_recommended_version_matches_readme_html() { 41 // This test is designed to only run on trunk.42 $this->skipOnAutomatedBranches();43 44 41 $reflection = new ReflectionClass( $this->instance ); 45 42 $reflection_property = $reflection->getProperty( 'mysql_recommended_version' ); … … 58 55 */ 59 56 public function test_mariadb_recommended_version_matches_readme_html() { 60 // This test is designed to only run on trunk.61 $this->skipOnAutomatedBranches();62 63 57 $reflection = new ReflectionClass( $this->instance ); 64 58 $reflection_property = $reflection->getProperty( 'mariadb_recommended_version' );
Note: See TracChangeset
for help on using the changeset viewer.