From e4c3b032aed2caf90dbb8f339f171dd9da31dcb4 Mon Sep 17 00:00:00 2001 From: Aaron Jorbin Date: Wed, 8 Mar 2023 18:35:18 +0000 Subject: [PATCH] External Libraries: Update jQuery to 3.6.4. Update the jQuery library from 3.6.1 to 3.6.3. [3.6.4 release announcement](https://blog.jquery.com/2023/03/08/jquery-3-6-4-released-selector-forgiveness/) [Full changelog](https://github.com/jquery/jquery/compare/3.6.3...3.6.4) Props TobiasBg, audrasjb, hellofromTonya. See #57324. Fixes 57888. git-svn-id: https://develop.svn.wordpress.org/trunk@55491 602fd350-edb4-49c9-b593-d223f7449a82 --- package-lock.json | 14 +++++++------- package.json | 2 +- src/wp-includes/script-loader.php | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/package-lock.json b/package-lock.json index f872f6f5e2..01ed8f2b11 100644 --- a/package-lock.json +++ b/package-lock.json @@ -11941,7 +11941,7 @@ "from2-string": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/from2-string/-/from2-string-1.1.0.tgz", - "integrity": "sha1-GCgrJ9CKJnyzAwzSuLSw8hKvdSo=", + "integrity": "sha512-m8vCh+KnXXXBtfF2VUbiYlQ+nczLcntB0BrtNgpmLkHylhObe9WF1b2LZjBBzrZzA6P4mkEla6ZYQoOUTG8cYA==", "requires": { "from2": "^2.0.3" } @@ -16915,9 +16915,9 @@ } }, "jquery": { - "version": "3.6.3", - "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.6.3.tgz", - "integrity": "sha512-bZ5Sy3YzKo9Fyc8wH2iIQK4JImJ6R0GWI9kL1/k7Z91ZBNgkRXE6U0JfHIizZbort8ZunhSI3jw9I6253ahKfg==" + "version": "3.6.4", + "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.6.4.tgz", + "integrity": "sha512-v28EW9DWDFpzcD9O5iyJXg3R3+q+mET5JhnjJzQUZMHOv67bpSIHq81GEYpPNZHG+XXHsfSme3nxp/hndKEcsQ==" }, "jquery-color": { "version": "2.2.0", @@ -21099,7 +21099,7 @@ "promise-polyfill": { "version": "1.1.6", "resolved": "https://registry.npmjs.org/promise-polyfill/-/promise-polyfill-1.1.6.tgz", - "integrity": "sha1-zQTv9G9clcOn0EVZHXm14+AfEtc=" + "integrity": "sha512-7rrONfyLkDEc7OJ5QBkqa4KI4EBhCd340xRuIUPGCfu13znS+vx+VDdrT9ODAJHlXm7w4lbxN3DRjyv58EuzDg==" }, "prompts": { "version": "2.4.2", @@ -23238,7 +23238,7 @@ "stream-from-promise": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/stream-from-promise/-/stream-from-promise-1.0.0.tgz", - "integrity": "sha1-djaH9913fkyJT2QIMz/Gs/yKYbs=" + "integrity": "sha512-j84KLkudt+gr8KJ21RB02btPLx61uGbrLnewsWz6QKmsz8/c4ZFqXw6mJh5+G4oRN7DgDxdbjPxnpySpg1mUig==" }, "stream-to-string": { "version": "1.2.0", @@ -24506,7 +24506,7 @@ "toposort": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/toposort/-/toposort-2.0.2.tgz", - "integrity": "sha1-riF2gXXRVZ1IvvNUILL0li8JwzA=" + "integrity": "sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg==" }, "totalist": { "version": "1.1.0", diff --git a/package.json b/package.json index 84c1e827bb..1d8af18e30 100644 --- a/package.json +++ b/package.json @@ -141,7 +141,7 @@ "formdata-polyfill": "4.0.10", "hoverintent": "2.2.1", "imagesloaded": "4.1.4", - "jquery": "3.6.3", + "jquery": "3.6.4", "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 01dd39900a..946fc60b7d 100644 --- a/src/wp-includes/script-loader.php +++ b/src/wp-includes/script-loader.php @@ -822,7 +822,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.3' ); + $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-migrate', "/wp-includes/js/jquery/jquery-migrate$suffix.js", array(), '3.4.0' );