Skip to content

Commit d46c47f

Browse files
External Libraries: Update jQuery to version 3.7.0.
This release includes bug fixes, a new `.uniqueSort()` method, and a performance improvement for some use cases when using manipulation methods like `.append()`. References: * [https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/ jQuery 3.7.0 release notes] * [jquery/jquery@3.6.4...3.7.0 Full list of changes in jQuery 3.7.0] Follow-up to [49101], [50445], [50520], [54202], [55012], [55491]. Props mgol, jorbin, hbhalodia, desrosj, TobiasBg, audrasjb, mukesh27, naeemhaque, nuhel, SergeyBiryukov. Fixes #58083. git-svn-id: https://develop.svn.wordpress.org/trunk@55860 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 6eda6f0 commit d46c47f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@
141141
"formdata-polyfill": "4.0.10",
142142
"hoverintent": "2.2.1",
143143
"imagesloaded": "4.1.4",
144-
"jquery": "3.6.4",
144+
"jquery": "3.7.0",
145145
"jquery-color": "2.2.0",
146146
"jquery-form": "4.3.0",
147147
"jquery-hoverintent": "1.10.2",

src/wp-includes/script-loader.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -822,8 +822,8 @@ function wp_default_scripts( $scripts ) {
822822

823823
// jQuery.
824824
// The unminified jquery.js and jquery-migrate.js are included to facilitate debugging.
825-
$scripts->add( 'jquery', false, array( 'jquery-core', 'jquery-migrate' ), '3.6.4' );
826-
$scripts->add( 'jquery-core', "/wp-includes/js/jquery/jquery$suffix.js", array(), '3.6.4' );
825+
$scripts->add( 'jquery', false, array( 'jquery-core', 'jquery-migrate' ), '3.7.0' );
826+
$scripts->add( 'jquery-core', "/wp-includes/js/jquery/jquery$suffix.js", array(), '3.7.0' );
827827
$scripts->add( 'jquery-migrate', "/wp-includes/js/jquery/jquery-migrate$suffix.js", array(), '3.4.0' );
828828

829829
// Full jQuery UI.

0 commit comments

Comments
 (0)