Commit 3c9f7e91b7 for wordpress.org

commit 3c9f7e91b7ade65013e4825ee20a20e5a58fa7c8
Author: afercia <afercia@git.wordpress.org>
Date:   Tue Sep 15 10:42:55 2026 +0000

    Revisions: Mark list-revisions.js as deprecated and no longer used in Core.

    The `list-revisions.js` file is no longer used in Core. It was when the WordPress 3.0 releases were using a table with radio buttons in the Revisions screen. Since then the Revisions screen has been completely redesigned and there is no longer a table that is targeted by the jQuery selectors in `list-revisions.js`.
    It appears a few plugins still use this file so that it needs to be kept for backward compatibility but the file is now deprecated and its usage is not recommended.

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

    Props sainathpoojary, westonruter, adamsilverstein, afercia.
    Fixes #66061.

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


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

diff --git a/wp-includes/script-loader.php b/wp-includes/script-loader.php
index 7d5ba24e56..7b93f6a5c1 100644
--- a/wp-includes/script-loader.php
+++ b/wp-includes/script-loader.php
@@ -1509,6 +1509,7 @@ function wp_default_scripts( $scripts ) {
 		$scripts->add( 'dashboard', "/wp-admin/js/dashboard$suffix.js", array( 'common', 'jquery', 'admin-comments', 'postbox', 'wp-util', 'wp-a11y', 'wp-date' ), false, 1 );
 		$scripts->set_translations( 'dashboard' );

+		// Deprecated, no longer used in core, registered for backward compatibility.
 		$scripts->add( 'list-revisions', "/wp-includes/js/wp-list-revisions$suffix.js" );

 		$scripts->add( 'media-grid', "/wp-includes/js/media-grid$suffix.js", array( 'media-editor' ), false, 1 );
diff --git a/wp-includes/version.php b/wp-includes/version.php
index 31473ff17c..70fe2da5a2 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
  *
  * @global string $wp_version
  */
-$wp_version = '7.2-alpha-63619';
+$wp_version = '7.2-alpha-63620';

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