Make WordPress Core

Changeset 55491


Ignore:
Timestamp:
03/08/2023 06:35:18 PM (13 months ago)
Author:
jorbin
Message:

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.

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/package-lock.json

    r55475 r55491  
    1194211942            "version": "1.1.0",
    1194311943            "resolved": "https://registry.npmjs.org/from2-string/-/from2-string-1.1.0.tgz",
    11944             "integrity": "sha1-GCgrJ9CKJnyzAwzSuLSw8hKvdSo=",
     11944            "integrity": "sha512-m8vCh+KnXXXBtfF2VUbiYlQ+nczLcntB0BrtNgpmLkHylhObe9WF1b2LZjBBzrZzA6P4mkEla6ZYQoOUTG8cYA==",
    1194511945            "requires": {
    1194611946                "from2": "^2.0.3"
     
    1691616916        },
    1691716917        "jquery": {
    16918             "version": "3.6.3",
    16919             "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.6.3.tgz",
    16920             "integrity": "sha512-bZ5Sy3YzKo9Fyc8wH2iIQK4JImJ6R0GWI9kL1/k7Z91ZBNgkRXE6U0JfHIizZbort8ZunhSI3jw9I6253ahKfg=="
     16918            "version": "3.6.4",
     16919            "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.6.4.tgz",
     16920            "integrity": "sha512-v28EW9DWDFpzcD9O5iyJXg3R3+q+mET5JhnjJzQUZMHOv67bpSIHq81GEYpPNZHG+XXHsfSme3nxp/hndKEcsQ=="
    1692116921        },
    1692216922        "jquery-color": {
     
    2110021100            "version": "1.1.6",
    2110121101            "resolved": "https://registry.npmjs.org/promise-polyfill/-/promise-polyfill-1.1.6.tgz",
    21102             "integrity": "sha1-zQTv9G9clcOn0EVZHXm14+AfEtc="
     21102            "integrity": "sha512-7rrONfyLkDEc7OJ5QBkqa4KI4EBhCd340xRuIUPGCfu13znS+vx+VDdrT9ODAJHlXm7w4lbxN3DRjyv58EuzDg=="
    2110321103        },
    2110421104        "prompts": {
     
    2323923239            "version": "1.0.0",
    2324023240            "resolved": "https://registry.npmjs.org/stream-from-promise/-/stream-from-promise-1.0.0.tgz",
    23241             "integrity": "sha1-djaH9913fkyJT2QIMz/Gs/yKYbs="
     23241            "integrity": "sha512-j84KLkudt+gr8KJ21RB02btPLx61uGbrLnewsWz6QKmsz8/c4ZFqXw6mJh5+G4oRN7DgDxdbjPxnpySpg1mUig=="
    2324223242        },
    2324323243        "stream-to-string": {
     
    2450724507            "version": "2.0.2",
    2450824508            "resolved": "https://registry.npmjs.org/toposort/-/toposort-2.0.2.tgz",
    24509             "integrity": "sha1-riF2gXXRVZ1IvvNUILL0li8JwzA="
     24509            "integrity": "sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg=="
    2451024510        },
    2451124511        "totalist": {
  • trunk/package.json

    r55475 r55491  
    142142        "hoverintent": "2.2.1",
    143143        "imagesloaded": "4.1.4",
    144         "jquery": "3.6.3",
     144        "jquery": "3.6.4",
    145145        "jquery-color": "2.2.0",
    146146        "jquery-form": "4.3.0",
  • trunk/src/wp-includes/script-loader.php

    r55417 r55491  
    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.3' );
     825    $scripts->add( 'jquery', false, array( 'jquery-core', 'jquery-migrate' ), '3.6.4' );
    826826    $scripts->add( 'jquery-core', "/wp-includes/js/jquery/jquery$suffix.js", array(), '3.6.3' );
    827827    $scripts->add( 'jquery-migrate', "/wp-includes/js/jquery/jquery-migrate$suffix.js", array(), '3.4.0' );
Note: See TracChangeset for help on using the changeset viewer.