Make WordPress Core

Changeset 54202


Ignore:
Timestamp:
09/19/2022 02:14:54 PM (19 months ago)
Author:
desrosj
Message:

External Libraries: Update the jQuery library to version 3.6.1.

This is a maintenance release. For more information on the changs included, see https://blog.jquery.com/2022/08/26/jquery-3-6-1-maintenance-release/.

Props tobiasbg.
See #56451.

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/package-lock.json

    r54184 r54202  
    2078820788        },
    2078920789        "jquery": {
    20790             "version": "3.6.0",
    20791             "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.6.0.tgz",
    20792             "integrity": "sha512-JVzAR/AjBvVt2BmYhxRCSYysDsPcssdmTFnzyLEts9qNwmjmu4JTAMYubEfwVOSwpQ1I1sKKFcxhZCI2buerfw=="
     20790            "version": "3.6.1",
     20791            "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.6.1.tgz",
     20792            "integrity": "sha512-opJeO4nCucVnsjiXOE+/PcCgYw9Gwpvs/a6B1LL/lQhwWwpbVEVYDZ1FokFr8PRc7ghYlrFPuyHuiiDNTQxmcw=="
    2079320793        },
    2079420794        "jquery-color": {
  • trunk/package.json

    r54182 r54202  
    140140        "hoverintent": "2.2.1",
    141141        "imagesloaded": "4.1.4",
    142         "jquery": "3.6.0",
     142        "jquery": "3.6.1",
    143143        "jquery-color": "2.2.0",
    144144        "jquery-form": "4.3.0",
  • trunk/src/wp-includes/script-loader.php

    r54183 r54202  
    805805    // jQuery.
    806806    // The unminified jquery.js and jquery-migrate.js are included to facilitate debugging.
    807     $scripts->add( 'jquery', false, array( 'jquery-core', 'jquery-migrate' ), '3.6.0' );
    808     $scripts->add( 'jquery-core', "/wp-includes/js/jquery/jquery$suffix.js", array(), '3.6.0' );
     807    $scripts->add( 'jquery', false, array( 'jquery-core', 'jquery-migrate' ), '3.6.1' );
     808    $scripts->add( 'jquery-core', "/wp-includes/js/jquery/jquery$suffix.js", array(), '3.6.1' );
    809809    $scripts->add( 'jquery-migrate', "/wp-includes/js/jquery/jquery-migrate$suffix.js", array(), '3.3.2' );
    810810
Note: See TracChangeset for help on using the changeset viewer.