Make WordPress Core

Changeset 53660


Ignore:
Timestamp:
07/05/2022 02:59:17 PM (2 years ago)
Author:
desrosj
Message:

External Libraries: Update the Underscore library to version 1.13.4.

This is a minor documentation and bug fix release.

Props christinavoudouris, dilipbheda.
Fixes #56030.

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/package-lock.json

    r53657 r53660  
    2545025450        },
    2545125451        "underscore": {
    25452             "version": "1.13.3",
    25453             "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.3.tgz",
    25454             "integrity": "sha512-QvjkYpiD+dJJraRA8+dGAU4i7aBbb2s0S3jA45TFOvg2VgqvdCDd/3N6CqA8gluk1W91GLoXg5enMUx560QzuA=="
     25452            "version": "1.13.4",
     25453            "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.4.tgz",
     25454            "integrity": "sha512-BQFnUDuAQ4Yf/cYY5LNrK9NCJFKriaRbD9uR1fTeXnBeoa97W0i41qkZfGO9pSo8I5KzjAcSY2XYtdf0oKd7KQ=="
    2545525455        },
    2545625456        "underscore.string": {
  • trunk/package.json

    r53657 r53660  
    152152        "regenerator-runtime": "0.13.9",
    153153        "twemoji": "14.0.2",
    154         "underscore": "1.13.3",
     154        "underscore": "1.13.4",
    155155        "whatwg-fetch": "3.6.2"
    156156    },
  • trunk/src/wp-includes/script-loader.php

    r53455 r53660  
    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.3', 1 );
     971    $scripts->add( 'underscore', "/wp-includes/js/underscore$dev_suffix.js", array(), '1.13.4', 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.