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: * [https://mariadb.org/about/#maintenance-policy MySQL Support Policies] * [https://make.wordpress.org/hosting/handbook/server-environment/#database Hosting team handbook: Server Environment: Database] Follow-up to [55665], [52420], [53435], [54069], [54076]. Props peterwilsoncc, dd32, costdev, mukesh27, hellofromTonya. Fixes #61458. See #meta7679. Built from https://develop.svn.wordpress.org/trunk@58432 git-svn-id: http://core.svn.wordpress.org/trunk@57881 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c655ae0a22
commit
aaffdcd671
|
@ -58,7 +58,7 @@
|
||||||
<h3>Recommendations</h3>
|
<h3>Recommendations</h3>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="https://www.php.net/">PHP</a> version <strong>7.4</strong> or greater.</li>
|
<li><a href="https://www.php.net/">PHP</a> version <strong>7.4</strong> or greater.</li>
|
||||||
<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>
|
<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>
|
||||||
<li>The <a href="https://httpd.apache.org/docs/2.2/mod/mod_rewrite.html">mod_rewrite</a> Apache module.</li>
|
<li>The <a href="https://httpd.apache.org/docs/2.2/mod/mod_rewrite.html">mod_rewrite</a> Apache module.</li>
|
||||||
<li><a href="https://wordpress.org/news/2016/12/moving-toward-ssl/">HTTPS</a> support.</li>
|
<li><a href="https://wordpress.org/news/2016/12/moving-toward-ssl/">HTTPS</a> support.</li>
|
||||||
<li>A link to <a href="https://wordpress.org/">wordpress.org</a> on your site.</li>
|
<li>A link to <a href="https://wordpress.org/">wordpress.org</a> on your site.</li>
|
||||||
|
|
|
@ -18,7 +18,7 @@ class WP_Site_Health {
|
||||||
private $mysql_server_version = '';
|
private $mysql_server_version = '';
|
||||||
private $mysql_required_version = '5.5';
|
private $mysql_required_version = '5.5';
|
||||||
private $mysql_recommended_version = '8.0';
|
private $mysql_recommended_version = '8.0';
|
||||||
private $mariadb_recommended_version = '10.4';
|
private $mariadb_recommended_version = '10.5';
|
||||||
|
|
||||||
public $php_memory_limit;
|
public $php_memory_limit;
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.6-beta2-58431';
|
$wp_version = '6.6-beta2-58432';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue