Commit 4594861959 for wordpress.org

commit 45948619592b42afa613f361eedbbab20c5b0a90
Author: westonruter <westonruter@git.wordpress.org>
Date:   Fri Sep 25 22:44:47 2026 +0000

    Build/Test Tools: Exclude dependencies from PHPStan.

    The bundled themes are analyzed as whole directories, so a local `npm install` in one of them puts its `node_modules` into the analysis. Some npm packages ship PHP files, such as `flatted` in Twenty Twenty, and running `composer phpstan:baselines` then recorded errors from those files in the baselines. This excludes `node_modules` directories at any depth from both analysis and symbol discovery. Composer `vendor` directories of themes and plugins under `wp-content` are excluded in the same way, while the root `vendor` directory is left alone since PHPStan resolves development dependencies from it.

    Follow-up to r61699.

    See #65817.

    Built from https://develop.svn.wordpress.org/trunk@63938


    git-svn-id: http://core.svn.wordpress.org/trunk@63104 1a063a9b-81f0-0310-95a4-ce76da25c4cd

diff --git a/wp-includes/version.php b/wp-includes/version.php
index ae8ae5c6c1..3d74ce0681 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
  *
  * @global string $wp_version
  */
-$wp_version = '7.2-alpha-63937';
+$wp_version = '7.2-alpha-63938';

 /**
  * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.