From 67b9822eda59f5a467fdccf204774654e0edaecb Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 23 Dec 2021 20:12:03 +0000 Subject: [PATCH] Build/Test Tools: Allow the PHPCS plugin in Composer configuration. The `dealerdirect/phpcodesniffer-composer-installer` Composer plugin is used to register external PHPCS standards with PHPCS. As of Composer 2.2, Composer plugins need to be explicitly allowed to run. This commit adds the necessary configuration for that to prevent Composer asking every single time `composer install` or `composer update` is run. Reference: [https://blog.packagist.com/composer-2-2/#more-secure-plugin-execution Composer 2.2: More secure plugin execution]. Props jrf, johnbillion. Fixes #54686. Built from https://develop.svn.wordpress.org/trunk@52412 git-svn-id: http://core.svn.wordpress.org/trunk@52004 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 e917ee6030..58ace8958c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-beta4-52411'; +$wp_version = '5.9-beta4-52412'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.