Changeset 56982
- Timestamp:
- 10/22/2023 09:03:12 AM (14 months ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/readme.html
r56141 r56982 59 59 <ul> 60 60 <li><a href="https://secure.php.net/">PHP</a> version <strong>7.4</strong> or greater.</li> 61 <li><a href="https://www.mysql.com/">MySQL</a> version <strong> 5.7</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.4</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
r56664 r56982 18 18 private $mysql_server_version = ''; 19 19 private $mysql_required_version = '5.5'; 20 private $mysql_recommended_version = ' 5.7';20 private $mysql_recommended_version = '8.0'; 21 21 private $mariadb_recommended_version = '10.4'; 22 22 -
trunk/tests/phpunit/tests/readme.php
r54479 r56982 49 49 * Per https://www.mysql.com/support/, Oracle actively supports MySQL releases for 5 years from GA release. 50 50 * 51 * The currently recommended MySQL 5.7 branch moved from active support to extended support on 2020-10-21.52 * As WordPress core is not fully compatible with MySQL 8.0at this time, the "supported" period here51 * The currently recommended MySQL 8.0 branch moved from active support to extended support on 2023-04-19. 52 * As WordPress core may not be fully compatible with MySQL 8.1 at this time, the "supported" period here 53 53 * is increased to 8 years to include extended support. 54 54 * 55 * TODO: Reduce this back to 5 years once MySQL 8. 0compatibility is achieved.55 * TODO: Reduce this back to 5 years once MySQL 8.1 compatibility is achieved. 56 56 */ 57 57 $mysql_eol = gmdate( 'Y-m-d', strtotime( $mysql_matches[1] . ' +8 years' ) );
Note: See TracChangeset
for help on using the changeset viewer.