From a5ad3c3b4b7be690c7f758e696eca71825ab0b11 Mon Sep 17 00:00:00 2001 From: desrosj Date: Fri, 4 Oct 2024 14:09:17 +0000 Subject: [PATCH] Build/Test Tools: Enable testing for PHP 8.4. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit With PHP 8.4 due out in November later this year, contributors have been working on ensuring WordPress 6.7 is as compatible as possible. Enough progress has been made during this release cycle where PHPUnit tests now run successfully with no failures reported. This change enables PHP 8.4 testing throughout Core’s GitHub Action workflows to ensure no new problems are introduced going forward. There are two exceptions to this: - The Importer plugin has some compatibility issues that produce test failures. There is an open pull request upstream, but these problematic tests have been marked skipped when running on PHP 8.4 until that PR is merged. - Since no stable versions of xDebug with PHP 8.4 support have been published, these tests are also skipped for now. Props jrf, desrosj. See #62061. Built from https://develop.svn.wordpress.org/trunk@59168 git-svn-id: http://core.svn.wordpress.org/trunk@58563 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index 489530666e..d39caf7bba 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.7-beta1-59167'; +$wp_version = '6.7-beta1-59168'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.