Making WordPress.org

Changeset 11407


Ignore:
Timestamp:
12/28/2021 04:54:08 PM (3 years ago)
Author:
SergeyBiryukov
Message:

WordPress.org Main Theme: Requirements: Bump the recommended MySQL and MariaDB versions.

  • MySQL 5.6 has reached EOL (“End of Life”) in February 2021. The recommended minimum is bumped to 5.7 for now.
  • MariaDB 10.1 has reached EOL in October 2020. The recommended minimum is bumped to 10.2 for now.

Follow-up to [8726], [9358].

Props JavierCasares, SergeyBiryukov.
Fixes #5999. See #WP41490.

Location:
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-requirements.php

    r10494 r11407  
    5252                            <?php
    5353                            /* translators: 1: URL to MySQL; 2: MySQL Version; 3: URL to MariaDB; 4: MariaDB Version */
    54                             printf( wp_kses_post( __( '<a href="%1$s">MySQL</a> version %2$s or greater <em>OR</em> <a href="%3$s">MariaDB</a> version %4$s or greater.', 'wporg' ) ), 'https://www.mysql.com/', '5.6', 'https://mariadb.org/', '10.1' );
     54                            printf( wp_kses_post( __( '<a href="%1$s">MySQL</a> version %2$s or greater <em>OR</em> <a href="%3$s">MariaDB</a> version %4$s or greater.', 'wporg' ) ), 'https://www.mysql.com/', '5.7', 'https://mariadb.org/', '10.2' );
    5555                            ?>
    5656                        </li>
     
    105105                                <?php
    106106                                /* translators: 1: MySQL version; 2: MariaDB Version */
    107                                 printf( esc_html__( 'MySQL %1$s or greater OR MariaDB %2$s or greater', 'wporg' ), '5.6', '10.1' );
     107                                printf( esc_html__( 'MySQL %1$s or greater OR MariaDB %2$s or greater', 'wporg' ), '5.7', '10.2' );
    108108                                ?>
    109109                            </li>
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-download.php

    r11267 r11407  
    248248                                'https://www.php.net/',
    249249                                'https://www.mysql.com/',
    250                                 '5.6',
     250                                '5.7',
    251251                                'https://mariadb.org/',
    252                                 '10.1'
     252                                '10.2'
    253253                            );
    254254                            ?>
Note: See TracChangeset for help on using the changeset viewer.