Make WordPress Core

Ticket #57324: 57324.5.diff

File 57324.5.diff, 1.8 KB (added by peterwilsoncc, 2 years ago)
  • package-lock.json

    diff --git a/package-lock.json b/package-lock.json
    index afddb69f0e..e99f973612 100644
    a b  
    1763417634                        }
    1763517635                },
    1763617636                "jquery": {
    17637                         "version": "3.6.1",
    17638                         "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.6.1.tgz",
    17639                         "integrity": "sha512-opJeO4nCucVnsjiXOE+/PcCgYw9Gwpvs/a6B1LL/lQhwWwpbVEVYDZ1FokFr8PRc7ghYlrFPuyHuiiDNTQxmcw=="
     17637                        "version": "3.6.3",
     17638                        "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.6.3.tgz",
     17639                        "integrity": "sha512-bZ5Sy3YzKo9Fyc8wH2iIQK4JImJ6R0GWI9kL1/k7Z91ZBNgkRXE6U0JfHIizZbort8ZunhSI3jw9I6253ahKfg=="
    1764017640                },
    1764117641                "jquery-color": {
    1764217642                        "version": "2.2.0",
  • package.json

    diff --git a/package.json b/package.json
    index f4b00a3e3d..c81dd3c6b9 100644
    a b  
    139139                "formdata-polyfill": "4.0.10",
    140140                "hoverintent": "2.2.1",
    141141                "imagesloaded": "4.1.4",
    142                 "jquery": "3.6.1",
     142                "jquery": "3.6.3",
    143143                "jquery-color": "2.2.0",
    144144                "jquery-form": "4.3.0",
    145145                "jquery-hoverintent": "1.10.2",
  • src/wp-includes/script-loader.php

    diff --git a/src/wp-includes/script-loader.php b/src/wp-includes/script-loader.php
    index 27defd0659..093d52b284 100644
    a b function wp_default_scripts( $scripts ) { 
    820820
    821821        // jQuery.
    822822        // The unminified jquery.js and jquery-migrate.js are included to facilitate debugging.
    823         $scripts->add( 'jquery', false, array( 'jquery-core', 'jquery-migrate' ), '3.6.1' );
    824         $scripts->add( 'jquery-core', "/wp-includes/js/jquery/jquery$suffix.js", array(), '3.6.1' );
     823        $scripts->add( 'jquery', false, array( 'jquery-core', 'jquery-migrate' ), '3.6.3' );
     824        $scripts->add( 'jquery-core', "/wp-includes/js/jquery/jquery$suffix.js", array(), '3.6.3' );
    825825        $scripts->add( 'jquery-migrate', "/wp-includes/js/jquery/jquery-migrate$suffix.js", array(), '3.3.2' );
    826826
    827827        // Full jQuery UI.