From 12c65b60766832063da8054b80969770946a70d8 Mon Sep 17 00:00:00 2001 From: audrasjb Date: Wed, 3 May 2023 21:27:21 +0000 Subject: [PATCH] Script Loader: Update jQuery version to 3.6.4 to match the current version. This changeset updates the jQuery version to 3.6.4 in `script-loader.php` to correcly match the current version used in WordPress. This was accidentally missed in [55491]. Props nickpap, TobiasBg, dhrumilk. Fixes #58203. See #57324. Built from https://develop.svn.wordpress.org/trunk@55713 git-svn-id: http://core.svn.wordpress.org/trunk@55225 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/script-loader.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/script-loader.php b/wp-includes/script-loader.php index 20c7bf2591..74b347ec67 100644 --- a/wp-includes/script-loader.php +++ b/wp-includes/script-loader.php @@ -823,7 +823,7 @@ function wp_default_scripts( $scripts ) { // jQuery. // The unminified jquery.js and jquery-migrate.js are included to facilitate debugging. $scripts->add( 'jquery', false, array( 'jquery-core', 'jquery-migrate' ), '3.6.4' ); - $scripts->add( 'jquery-core', "/wp-includes/js/jquery/jquery$suffix.js", array(), '3.6.3' ); + $scripts->add( 'jquery-core', "/wp-includes/js/jquery/jquery$suffix.js", array(), '3.6.4' ); $scripts->add( 'jquery-migrate', "/wp-includes/js/jquery/jquery-migrate$suffix.js", array(), '3.4.0' ); // Full jQuery UI. diff --git a/wp-includes/version.php b/wp-includes/version.php index 2af8aa03e8..e2091affb3 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.3-alpha-55712'; +$wp_version = '6.3-alpha-55713'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.