From 24050652e55fdf031aed95e1d204cedd60c1ad78 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 5 Sep 2022 18:57:13 +0000 Subject: [PATCH] Build/Test Tools: Do not allow tests to fail for select PHP 8.1 test runs. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This affects the following test groups: * Ajax tests * ms-files tests * External HTTP tests * Xdebug tests The tests being run in these particular test groups are passing on PHP 8.1, however, the test runs are still allowed to “continue on error”. This creates the risk that new PHP 8.1 incompatibilities will be introduced without anyone noticing. By no longer allowing these test runs to “continue on error”, that risk is removed. Follow-up to [51588], [51604], [53922]. Props jrf. See #55656, #55652. Built from https://develop.svn.wordpress.org/trunk@54072 git-svn-id: http://core.svn.wordpress.org/trunk@53631 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 e4952f044b..6a00c7eca3 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.1-alpha-54071'; +$wp_version = '6.1-alpha-54072'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.