From c10acd850e444c20512437016d4074802649bffd Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 23 Sep 2020 18:39:07 +0000 Subject: [PATCH] Build/Test Tools: Use trunk revision 2387243 of the WordPress Importer plugin. This revision includes a change to only call `libxml_disable_entity_loader()` in PHP < 8, in order for unit tests in the `import` group to pass on PHP 8. This function has been deprecated in PHP 8.0 because in libxml 2.9.0, external entity loading is disabled by default, so this function is no longer needed to protect against XXE attacks. Follow-up to [46542], [48789]. Props jrf. See #50913. Built from https://develop.svn.wordpress.org/trunk@49039 git-svn-id: http://core.svn.wordpress.org/trunk@48801 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 6af6244b55..181fbf4aeb 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.6-alpha-49038'; +$wp_version = '5.6-alpha-49039'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.