Make WordPress Core

Changeset 55860


Ignore:
Timestamp:
05/26/2023 11:31:14 AM (3 years ago)
Author:
SergeyBiryukov
Message:

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:

Follow-up to [49101], [50445], [50520], [54202], [55012], [55491].

Props mgol, jorbin, hbhalodia, desrosj, TobiasBg, audrasjb, mukesh27, naeemhaque, nuhel, SergeyBiryukov.
Fixes #58083.

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/package-lock.json

    r55828 r55860  
    1692916929                },
    1693016930                "jquery": {
    16931                         "version": "3.6.4",
    16932                         "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.6.4.tgz",
    16933                         "integrity": "sha512-v28EW9DWDFpzcD9O5iyJXg3R3+q+mET5JhnjJzQUZMHOv67bpSIHq81GEYpPNZHG+XXHsfSme3nxp/hndKEcsQ=="
     16931                        "version": "3.7.0",
     16932                        "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.7.0.tgz",
     16933                        "integrity": "sha512-umpJ0/k8X0MvD1ds0P9SfowREz2LenHsQaxSohMZ5OMNEU2r0tf8pdeEFTHMFxWVxKNyU9rTtK3CWzUCTKJUeQ=="
    1693416934                },
    1693516935                "jquery-color": {
  • trunk/package.json

    r55828 r55860  
    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",
  • trunk/src/wp-includes/script-loader.php

    r55822 r55860  
    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
Note: See TracChangeset for help on using the changeset viewer.