Make WordPress Core


Ignore:
Timestamp:
01/29/2024 09:04:18 PM (17 months ago)
Author:
youknowriad
Message:

Editor: Update the WordPress packages to the Gutenberg 16.7 RC2 version.

This patch, somewhat small brings a lot to WordPress.
This includes features like:

  • DataViews.
  • Customization tools like box shadow, background size and repeat.
  • UI improvements in the site editor.
  • Preferences sharing between the post and site editors.
  • Unified panels and editors between post and site editors.
  • Improved template mode in the post editor.
  • Iterations to multiple interactive blocks.
  • Preparing the blocks and UI for pattern overrides.
  • and a lot more.

Props luisherranz, gziolo, isabel_brison, costdev, jonsurrell, peterwilsoncc, get_dave, antonvlasenko, desrosj.
See #60315.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/includes/unregister-blocks-hooks.php

    r57034 r57377  
    6565remove_action( 'init', 'register_block_core_template_part' );
    6666remove_action( 'init', 'register_block_core_term_description' );
     67
     68// Temporary hook removals to prevent impacting the phpunit tests timing.
     69remove_action( 'registered_post_type', 'block_core_navigation_link_register_post_type_variation' );
     70remove_action( 'registered_taxonomy', 'block_core_navigation_link_register_taxonomy_variation' );
     71remove_action( 'unregistered_post_type', 'block_core_navigation_link_unregister_post_type_variation' );
     72remove_action( 'unregistered_taxonomy', 'block_core_navigation_link_unregister_taxonomy_variation' );
Note: See TracChangeset for help on using the changeset viewer.