Verified Commit 9b1d2f42 authored by Jess's avatar Jess
Browse files

Issue #3328476 by lauriii, longwave: Update JQuery to 3.6.3

(cherry picked from commit ae81571a)
parent f1977101
Loading
Loading
Loading
Loading
+8 −9
Original line number Diff line number Diff line
/*!
 * jQuery JavaScript Library v3.6.2
 * jQuery JavaScript Library v3.6.3
 * https://jquery.com/
 *
 * Includes Sizzle.js
@@ -9,7 +9,7 @@
 * Released under the MIT license
 * https://jquery.org/license
 *
 * Date: 2022-12-13T14:56Z
 * Date: 2022-12-20T21:28Z
 */
( function( global, factory ) {

@@ -151,7 +151,7 @@ function toType( obj ) {


var
	version = "3.6.2",
	version = "3.6.3",

	// Define a local copy of jQuery
	jQuery = function( selector, context ) {
@@ -522,14 +522,14 @@ function isArrayLike( obj ) {
}
var Sizzle =
/*!
 * Sizzle CSS Selector Engine v2.3.8
 * Sizzle CSS Selector Engine v2.3.9
 * https://sizzlejs.com/
 *
 * Copyright JS Foundation and other contributors
 * Released under the MIT license
 * https://js.foundation/
 *
 * Date: 2022-11-16
 * Date: 2022-12-19
 */
( function( window ) {
var i,
@@ -890,7 +890,7 @@ function Sizzle( selector, context, results, seed ) {
					if ( support.cssSupportsSelector &&

						// eslint-disable-next-line no-undef
						!CSS.supports( "selector(" + newSelector + ")" ) ) {
						!CSS.supports( "selector(:is(" + newSelector + "))" ) ) {

						// Support: IE 11+
						// Throw to get to the same code path as an error directly in qSA.
@@ -1492,9 +1492,8 @@ setDocument = Sizzle.setDocument = function( node ) {
		// `:has()` uses a forgiving selector list as an argument so our regular
		// `try-catch` mechanism fails to catch `:has()` with arguments not supported
		// natively like `:has(:contains("Foo"))`. Where supported & spec-compliant,
		// we now use `CSS.supports("selector(SELECTOR_TO_BE_TESTED)")` but outside
		// that, let's mark `:has` as buggy to always use jQuery traversal for
		// `:has()`.
		// we now use `CSS.supports("selector(:is(SELECTOR_TO_BE_TESTED))")`, but
		// outside that we mark `:has` as buggy.
		rbuggyQSA.push( ":has" );
	}

+2 −2

File changed.

Preview size limit exceeded, changes collapsed.

+1 −1

File changed.

Preview size limit exceeded, changes collapsed.

+2 −2
Original line number Diff line number Diff line
@@ -746,10 +746,10 @@ es6-promise:

jquery:
  remote: https://github.com/jquery/jquery
  version: "3.6.2"
  version: "3.6.3"
  license:
    name: MIT
    url: https://raw.githubusercontent.com/jquery/jquery/3.6.2/LICENSE.txt
    url: https://raw.githubusercontent.com/jquery/jquery/3.6.3/LICENSE.txt
    gpl-compatible: true
  js:
    assets/vendor/jquery/jquery.min.js: { minified: true, weight: -20 }
+1 −1
Original line number Diff line number Diff line
@@ -67,7 +67,7 @@
    "eslint-plugin-prettier": "^4.0.0",
    "eslint-plugin-yml": "^1.2.0",
    "glob": "^8.0.3",
    "jquery": "~3.6.1",
    "jquery": "~3.6.3",
    "jquery-form": "4.3.x",
    "jquery-ui": "1.13.x",
    "js-cookie": "3.0.x",
Loading