Make WordPress Core


Ignore:
Timestamp:
01/18/2022 03:37:47 AM (3 years ago)
Author:
noisysocks
Message:

Update @wordpress packages

Update packages to include these bug fixes from Gutenberg:

  • Stop keypresses being caught by other elements when they happen in a CustomSelectControl
  • Remove color, spacing, and layout options for Template Part block
  • Try: parse shortcode blocks outside the content
  • Fix aria-modal attribution with multiple navs on page
  • Gallery block: Remove warning notice about mobile version required
  • Fix Home template description typo
  • Fix enqueueing additional styles for blocks only when rendered
  • fix typo (hanle -> handle)
  • SelectControl: mark the children prop as optional
  • Remove warning for enqueued styles in Editor
  • Add context to font style and font weight related translation strings
  • Temporarily remove text decoration from Nav block
  • Fix empty secondary sidebar overlapping widget editor content on mobile viewports
  • Fix hiding the bottom of tablet/mobile preview in Site Editor

See #54487.
Props isabel_brison.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/block-template.php

    r52316 r52595  
    236236    $content = do_blocks( $content );
    237237    $content = wptexturize( $content );
     238    $content = convert_smilies( $content );
     239    $content = shortcode_unautop( $content );
    238240    $content = wp_filter_content_tags( $content );
     241    $content = do_shortcode( $content );
    239242    $content = str_replace( ']]>', ']]>', $content );
    240243
Note: See TracChangeset for help on using the changeset viewer.