Make WordPress Core

Changeset 56391

Timestamp:
08/11/2023 04:10:38 PM (11 months ago)
Author:
desrosj
Message:

External Libraries: Update Backbone.js to version 1.5.0.

This release contains bug fixes and documentation improvements.

A full list of changes can be found on GitHub: https://github.com/jashkenas/backbone/compare/1.4.1...1.5.0.

Props rajinsharwar, hareesh-pillai.
Fixes #58930.

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/package-lock.json

    r56390 r56391  
    7272                "@wordpress/widgets": "3.12.12",
    7373                "@wordpress/wordcount": "3.35.1",
    74                 "backbone": "1.4.1",
     74                "backbone": "1.",
    7575                "clipboard": "2.0.11",
    7676                "core-js-url-browser": "3.6.4",
     
    96449644        },
    96459645        "node_modules/backbone": {
    9646             "version": "1.4.1",
    9647             "resolved": "https://registry.npmjs.org/backbone/-/backbone-1.4.1.tgz",
    9648             "integrity": "sha512-ADy1ztN074YkWbHi8ojJVFe3vAanO/lrzMGZWUClIP7oDD/Pjy2vrASraUP+2EVCfIiTtCW4FChVow01XneivA==",
     9646            "version": "1.",
     9647            "resolved": "https://registry.npmjs.org/backbone/-/backbone-1..tgz",
     9648            "integrity": "sha512-A==",
    96499649            "dependencies": {
    96509650                "underscore": ">=1.8.3"
  • trunk/package.json

    r56390 r56391  
    139139        "@wordpress/widgets": "3.12.12",
    140140        "@wordpress/wordcount": "3.35.1",
    141         "backbone": "1.4.1",
     141        "backbone": "1.",
    142142        "clipboard": "2.0.11",
    143143        "core-js-url-browser": "3.6.4",
  • trunk/src/wp-includes/script-loader.php

    r56389 r56391  
    10141014
    10151015    $scripts->add( 'underscore', "/wp-includes/js/underscore$dev_suffix.js", array(), '1.13.4', 1 );
    1016     $scripts->add( 'backbone', "/wp-includes/js/backbone$dev_suffix.js", array( 'underscore', 'jquery' ), '1.4.1', 1 );
     1016    $scripts->add( 'backbone', "/wp-includes/js/backbone$dev_suffix.js", array( 'underscore', 'jquery' ), '1.', 1 );
    10171017
    10181018    $scripts->add( 'wp-util', "/wp-includes/js/wp-util$suffix.js", array( 'underscore', 'jquery' ), false, 1 );
Note: See TracChangeset for help on using the changeset viewer.