From 283f841dac6b957776de4d338bbbabf41ec4cd54 Mon Sep 17 00:00:00 2001 From: Andrew Ozz Date: Fri, 7 Aug 2020 18:30:06 +0000 Subject: [PATCH] Script Loader: Remove the `jquery-migrate-compat-5.5` temporary script handle for now. Can be re-added later if there is a compelling use case. For now it doesn't seem necessary. See #37110. Built from https://develop.svn.wordpress.org/trunk@48754 git-svn-id: http://core.svn.wordpress.org/trunk@48516 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/script-loader.php | 5 ----- wp-includes/version.php | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/wp-includes/script-loader.php b/wp-includes/script-loader.php index 2b229fce11..5725269a9c 100644 --- a/wp-includes/script-loader.php +++ b/wp-includes/script-loader.php @@ -723,11 +723,6 @@ function wp_default_scripts( $scripts ) { $scripts->add( 'jquery-core', '/wp-includes/js/jquery/jquery.js', array(), '1.12.4-wp' ); $scripts->add( 'jquery-migrate', "/wp-includes/js/jquery/jquery-migrate$suffix.js", array(), '1.4.1' ); - // Backward compatibility: Makes it easy for plugins and themes to enqueue jQuery with jQuery Migrate in WordPress 5.5. - // Note: This script handle will most likely be removed in WordPress 5.6 or when jQuery is updated to the latest version. - // Then plugins and themes that are still relying on it will stop functioning. - $scripts->add( 'jquery-migrate-compat-5.5', false, array( 'jquery-core', 'jquery-migrate' ), '1.12.4-wp' ); - // Full jQuery UI. $scripts->add( 'jquery-ui-core', "/wp-includes/js/jquery/ui/core$dev_suffix.js", array( 'jquery' ), '1.11.4', 1 ); $scripts->add( 'jquery-effects-core', "/wp-includes/js/jquery/ui/effect$dev_suffix.js", array( 'jquery' ), '1.11.4', 1 ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 26c8460388..6ccba7d5df 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.6-alpha-48753'; +$wp_version = '5.6-alpha-48754'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.