Make WordPress Core

Changeset 53296


Ignore:
Timestamp:
04/27/2022 02:37:09 PM (3 years ago)
Author:
desrosj
Message:

External Libraries: Update the underscore library to version 1.13.3.

This is a minor bug fix release.

Fixes #55547.

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/package-lock.json

    r53278 r53296  
    2339623396        },
    2339723397        "underscore": {
    23398             "version": "1.13.2",
    23399             "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.2.tgz",
    23400             "integrity": "sha512-ekY1NhRzq0B08g4bGuX4wd2jZx5GnKz6mKSqFL4nqBlfyMGiG10gDFhDTMEfYmDL6Jy0FUIZp7wiRB+0BP7J2g=="
     23398            "version": "1.13.3",
     23399            "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.3.tgz",
     23400            "integrity": "sha512-QvjkYpiD+dJJraRA8+dGAU4i7aBbb2s0S3jA45TFOvg2VgqvdCDd/3N6CqA8gluk1W91GLoXg5enMUx560QzuA=="
    2340123401        },
    2340223402        "underscore.string": {
  • trunk/package.json

    r53278 r53296  
    151151        "regenerator-runtime": "0.13.9",
    152152        "twemoji": "14.0.2",
    153         "underscore": "1.13.2",
     153        "underscore": "1.13.3",
    154154        "whatwg-fetch": "3.6.2"
    155155    },
  • trunk/src/wp-includes/script-loader.php

    r53288 r53296  
    969969    did_action( 'init' ) && $scripts->add_data( 'json2', 'conditional', 'lt IE 8' );
    970970
    971     $scripts->add( 'underscore', "/wp-includes/js/underscore$dev_suffix.js", array(), '1.13.2', 1 );
     971    $scripts->add( 'underscore', "/wp-includes/js/underscore$dev_suffix.js", array(), '1.13.3', 1 );
    972972    $scripts->add( 'backbone', "/wp-includes/js/backbone$dev_suffix.js", array( 'underscore', 'jquery' ), '1.4.1', 1 );
    973973
Note: See TracChangeset for help on using the changeset viewer.