From 84701f3812770bce39c2b45b8d3ab8ba77c8fb83 Mon Sep 17 00:00:00 2001 From: TimothyBlynJacobs Date: Tue, 21 Jul 2020 01:38:03 +0000 Subject: [PATCH] REST API: Make plugin installation tests more robust on alternate test environments. The REST API plugin installation tests use the `upgrader_pre_download` filter to avoid downloading the test plugin from WordPress.org. Previously, this would apply to any upgrader, which caused issues if the testing environment required a language update. Now, the filter only overwrites the file if the `Plugin_Upgrader` is being used which should hopefully prevent the issue. Props pfefferle, TimothyBlynJacobs. Fixes #50671. Built from https://develop.svn.wordpress.org/trunk@48524 git-svn-id: http://core.svn.wordpress.org/trunk@48286 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 9892f5d23b..a30d9d4fcf 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.5-beta2-48523'; +$wp_version = '5.5-beta2-48524'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.