Make WordPress Core


Ignore:
Timestamp:
07/06/2021 02:36:26 PM (4 years ago)
Author:
youknowriad
Message:

Block Editor: Update packages with latest fixes for 5.8 RC2

Includes the following fixes:

  • [Block Library]: Less warnings when blocks try to render themselves.
  • Reset z-index on focused widget form
  • Refactor appender margin.
  • Fix slash inserter for widgets screen.
  • Widget screens: set html block as freeform content handler.
  • Widget Block: widget_id is undefined when a widget is placed.
  • Add <CopyHandler> to WidgetAreasBlockEditorProvider
  • Add width: 100% to components-base-control inside wp-block-legacy-widget
  • [Widgets editor] Replace the "technical" error notice a more user-friendly one
  • Fix legacy widget height overflow
  • Fix "Select all" behavior in the editor
  • Increase specificity of the NoPreview CSS rules to avoid conflicts with theme styles
  • Fix move to widget area checkmark
  • Replace legacy widget icon with its new version
  • [Block Library - Query Loop]: Set default block variations not to inherit from global query

See #53397.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/blocks/render-reusable.php

    r50382 r51344  
    101101    }
    102102
    103     /**
    104      * Throw a warning if blocks are recursively nested.
    105      *
    106      * @ticket 52364
    107      */
    108     public function test_recursive_render_warning() {
    109         $recursive_reusable_block = array(
    110             'ID'           => self::$block_id,
    111             'post_content' => '<!-- wp:block {"ref":' . self::$block_id . '} /-->',
    112         );
    113         wp_update_post( $recursive_reusable_block );
    114 
    115         $block_type = WP_Block_Type_Registry::get_instance()->get_registered( 'core/block' );
    116 
    117         // The block_render method for `core/block` triggers a user warning if it
    118         // encounters a recursively nested block.
    119         $this->expectException( 'PHPUnit_Framework_Error_Warning' );
    120         $block_type->render( array( 'ref' => self::$block_id ) );
    121     }
    122 
    123103    public function test_ref_empty() {
    124104        $block_type = WP_Block_Type_Registry::get_instance()->get_registered( 'core/block' );
Note: See TracChangeset for help on using the changeset viewer.