Making WordPress.org

Changeset 10960


Ignore:
Timestamp:
05/07/2021 01:05:58 PM (3 years ago)
Author:
SergeyBiryukov
Message:

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

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.4.
  • Bump the lowest branch of PHP which is receiving security updates to 7.3.

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

Follow-up to [9959].

Fixes #5727.

File:
1 edited

Legend:

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

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