Make WordPress Core

Changeset 63587


Ignore:
Timestamp:
09/10/2026 04:37:59 PM (less than one hour ago)
Author:
adamsilverstein
Message:

General: Bump the pinned hash for Gutenberg to dd294ab.

This updates the pinned commit hash of the Gutenberg repository from 943e0d825bb66ba582e9a10d32743cbb136de460 to dd294ab86ceaf9f3d7d42a09b78f399238ce8826 and merges cherry-picked changes to the wp/7.1 branch into the 7.1.1 release. Only the editor and upload-media package hashes changed in the regenerated manifest.

A full list of changes included in this commit can be found on GitHub:
https://github.com/WordPress/gutenberg/compare/943e0d825bb66ba582e9a10d32743cbb136de460...dd294ab86ceaf9f3d7d42a09b78f399238ce8826

The following commits are included:

The PHP changes carried by three of those pull requests do not travel through the package build and are already on the branch.

Follow-up to [63319], [63489], [63547], [63572].
Reviewed by jorbin.

Props andraganescu, wildworks.
Fixes #66037.

Location:
branches/7.1
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • branches/7.1/package.json

    r63414 r63587  
    88        },
    99        "gutenberg": {
    10                 "sha": "943e0d825bb66ba582e9a10d32743cbb136de460",
     10                "sha": "dd294ab86ceaf9f3d7d42a09b78f399238ce8826",
    1111                "ghcrRepo": "WordPress/gutenberg/gutenberg-wp-develop-build"
    1212        },
  • branches/7.1/src/wp-includes/assets/script-loader-packages.php

    r63319 r63587  
    105105                        'wp-warning'
    106106                ),
    107                 'version' => 'd3cbb2c45b145b27a5cf'
     107                'version' => '37e58da384b2558bd479'
    108108        ),
    109109        'block-library.js' => array(
     
    151151                        )
    152152                ),
    153                 'version' => '2e80403676c10cc0a473'
     153                'version' => '00e6e2a44788af201f35'
    154154        ),
    155155        'block-serialization-default-parser.js' => array(
     
    403403                        )
    404404                ),
    405                 'version' => 'a7750dea8d5c880ddf33'
     405                'version' => 'a6cb1641d13f718c01bd'
    406406        ),
    407407        'edit-site.js' => array(
     
    453453                        )
    454454                ),
    455                 'version' => '638e98d0061f4b9f1efb'
     455                'version' => '008f89f2cb2ad17a5947'
    456456        ),
    457457        'edit-widgets.js' => array(
     
    544544                        )
    545545                ),
    546                 'version' => '2cd3b932f41a420d5904'
     546                'version' => 'af070cfff88093363220'
    547547        ),
    548548        'element.js' => array(
     
    664664                        'wp-warning'
    665665                ),
    666                 'version' => 'b8bf604c1cc119e63ee6'
     666                'version' => '07c1c94f9b21baa97a96'
    667667        ),
    668668        'notices.js' => array(
     
    882882                        )
    883883                ),
    884                 'version' => 'f7174b0617bcd68e57c3'
     884                'version' => 'a2c026d433c295fd5145'
    885885        ),
    886886        'url.js' => array(
  • branches/7.1/src/wp-includes/assets/script-modules-packages.php

    r63319 r63587  
    361361                       
    362362                ),
    363                 'version' => '685442d334b2d3e70832'
     363                'version' => '7e33cd8c4128731126e8'
    364364        ),
    365365        'workflow/index.js' => array(
  • branches/7.1/src/wp-includes/build/pages/font-library/page.php

    r62896 r63587  
    311311        // phpcs:ignore WordPress.Security.NonceVerification.Recommended
    312312        if ( isset( $_GET['page'] ) && 'font-library' === $_GET['page'] ) {
     313                // The page renders outside the menu page callback flow, so it must
     314                // enforce authentication and capability checks itself. Without this,
     315                // any admin entry point firing `admin_init` (such as admin-post.php,
     316                // which serves logged-out requests) would render the page for
     317                // unauthenticated visitors.
     318                if ( ! is_user_logged_in() ) {
     319                        auth_redirect();
     320                }
     321
     322                if ( ! current_user_can( 'edit_theme_options' ) ) {
     323                        wp_die(
     324                                __( 'Sorry, you are not allowed to access this page.' ),
     325                                403
     326                        );
     327                }
     328
    313329                wp_font_library_render_page();
    314330                exit;
  • branches/7.1/src/wp-includes/build/pages/options-connectors/page.php

    r62896 r63587  
    311311        // phpcs:ignore WordPress.Security.NonceVerification.Recommended
    312312        if ( isset( $_GET['page'] ) && 'options-connectors' === $_GET['page'] ) {
     313                // The page renders outside the menu page callback flow, so it must
     314                // enforce authentication and capability checks itself. Without this,
     315                // any admin entry point firing `admin_init` (such as admin-post.php,
     316                // which serves logged-out requests) would render the page for
     317                // unauthenticated visitors.
     318                if ( ! is_user_logged_in() ) {
     319                        auth_redirect();
     320                }
     321
     322                if ( ! current_user_can( 'manage_options' ) ) {
     323                        wp_die(
     324                                __( 'Sorry, you are not allowed to access this page.' ),
     325                                403
     326                        );
     327                }
     328
    313329                wp_options_connectors_render_page();
    314330                exit;
Note: See TracChangeset for help on using the changeset viewer.