Commit 9488c42c3e for wordpress.org

commit 9488c42c3e019c19b0ccb823eaae4dea9a856e2c
Author: SergeyBiryukov <sergeybiryukov@git.wordpress.org>
Date:   Sun Sep 13 23:47:47 2026 +0000

    Code Modernization: Use the null coalescing operator in `wp_get_chromium_major_version()` tests.

    `Tests_Media_wpGetChromiumMajorVersion::set_up()` stores the original `$_SERVER['HTTP_USER_AGENT']` value using an `isset()` ternary that repeats the array access. This replaces it with the null coalescing operator, which is shorter and expresses the same intent.

    The null coalescing operator is available since PHP 7.0, and WordPress requires PHP 7.4 or later, so no compatibility concerns apply. It is already used widely across the codebase, so this makes the style more consistent.

    Developed in https://github.com/WordPress/wordpress-develop/pull/13469.

    Follow-up to r62428.

    Props Soean, mukesh27.
    See #65819.
    Built from https://develop.svn.wordpress.org/trunk@63609


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

diff --git a/wp-includes/version.php b/wp-includes/version.php
index 21a74b0741..ef046faf5d 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
  *
  * @global string $wp_version
  */
-$wp_version = '7.2-alpha-63608';
+$wp_version = '7.2-alpha-63609';

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