WordPress.org

Making WordPress.org

Changeset 9959


Ignore:
Timestamp:
06/12/2020 07:41:06 PM (16 months ago)
Author:
SergeyBiryukov
Message:

API: ServeHappy: Bump the minimum acceptable PHP version to 7.2.

Sites with a version lower than this will see the ServeHappy dashboard widget urging them to update.

Additionally:

  • Bump the lowest branch of PHP which is actively supported to 7.3.
  • Bump the lowest branch of PHP which is receiving security updates to 7.2.

See https://www.php.net/supported-versions.php.

Props Clorith.
Fixes #5257.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/mu-plugins/pub/servehappy-config.php

    r9112 r9959  
    1717
    1818// The lowest branch of PHP which is actively supported.
    19 define( 'SUPPORTED_PHP', '7.2' );
     19define( 'SUPPORTED_PHP', '7.3' );
    2020
    2121// The lowest branch of PHP which is receiving security updates.
    22 define( 'SECURE_PHP', '7.1' );
     22define( 'SECURE_PHP', '7.2' );
    2323
    24 // The lowest branch of PHP which is still considered acceptable in WordPress.
    25 define( 'ACCEPTABLE_PHP', '7.0' );
     24// Sites with a version lower than this will see the ServeHappy dashboard widget urging them to update.
     25define( 'ACCEPTABLE_PHP', '7.2' );
Note: See TracChangeset for help on using the changeset viewer.