From cbe943d1d12fef35de3651e04ec8bcd352046ba0 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 8 Oct 2022 13:41:13 +0000 Subject: [PATCH] Tests: Add `wp_cache_*_multiple()` functions to Memcached implementation used in the test suite. Since this object cache implementation was added, WordPress has introduced a variety of caching API improvements: * `wp_cache_add_multiple()` * `wp_cache_set_multiple()` * `wp_cache_get_multiple()` * `wp_cache_delete_multiple()` Although WordPress core provides a compatibility layer if these functions are missing from third-party object caches, this commit updates the Memcached object cache used in the test suite to implement these new functions directly. Follow-up to [40561], [47938], [47944], [52700], [52703], [52706], [52708]. Props petitphp, spacedmonkey, tillkruss, SergeyBiryukov. Fixes #54864. Built from https://develop.svn.wordpress.org/trunk@54423 git-svn-id: http://core.svn.wordpress.org/trunk@53982 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 3b3d4f25c6..8e23e3d6a2 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.1-beta3-54422'; +$wp_version = '6.1-beta3-54423'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.