From acc0fb18c82bd7503e1dadc4c26e46282c01b9d9 Mon Sep 17 00:00:00 2001 From: Peter Wilson Date: Thu, 22 Dec 2022 03:23:34 +0000 Subject: [PATCH] External Libraries: Update jQuery to 3.6.3. Update the jQuery library from 3.6.1 to 3.6.3. * [https://blog.jquery.com/2022/12/13/jquery-3-6-2-released/ 3.6.2 release announcement] * [https://blog.jquery.com/2022/12/20/jquery-3-6-3-released-a-quick-selector-fix/ 3.6.3 release announcement] * [https://github.com/jquery/jquery/compare/3.6.1...3.6.3 Full changelog] Props TobiasBg, naeemhaque, mukesh27, mgol. Fixes #57324. git-svn-id: https://develop.svn.wordpress.org/trunk@55012 602fd350-edb4-49c9-b593-d223f7449a82 --- package-lock.json | 6 +++--- package.json | 2 +- src/wp-includes/script-loader.php | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index afddb69f0e..e99f973612 100644 --- a/package-lock.json +++ b/package-lock.json @@ -17634,9 +17634,9 @@ } }, "jquery": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.6.1.tgz", - "integrity": "sha512-opJeO4nCucVnsjiXOE+/PcCgYw9Gwpvs/a6B1LL/lQhwWwpbVEVYDZ1FokFr8PRc7ghYlrFPuyHuiiDNTQxmcw==" + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.6.3.tgz", + "integrity": "sha512-bZ5Sy3YzKo9Fyc8wH2iIQK4JImJ6R0GWI9kL1/k7Z91ZBNgkRXE6U0JfHIizZbort8ZunhSI3jw9I6253ahKfg==" }, "jquery-color": { "version": "2.2.0", diff --git a/package.json b/package.json index f4b00a3e3d..c81dd3c6b9 100644 --- a/package.json +++ b/package.json @@ -139,7 +139,7 @@ "formdata-polyfill": "4.0.10", "hoverintent": "2.2.1", "imagesloaded": "4.1.4", - "jquery": "3.6.1", + "jquery": "3.6.3", "jquery-color": "2.2.0", "jquery-form": "4.3.0", "jquery-hoverintent": "1.10.2", diff --git a/src/wp-includes/script-loader.php b/src/wp-includes/script-loader.php index 27defd0659..093d52b284 100644 --- a/src/wp-includes/script-loader.php +++ b/src/wp-includes/script-loader.php @@ -820,8 +820,8 @@ 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.1' ); - $scripts->add( 'jquery-core', "/wp-includes/js/jquery/jquery$suffix.js", array(), '3.6.1' ); + $scripts->add( 'jquery', false, array( 'jquery-core', 'jquery-migrate' ), '3.6.3' ); + $scripts->add( 'jquery-core', "/wp-includes/js/jquery/jquery$suffix.js", array(), '3.6.3' ); $scripts->add( 'jquery-migrate', "/wp-includes/js/jquery/jquery-migrate$suffix.js", array(), '3.3.2' ); // Full jQuery UI.