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/src/wp-includes/blocks/calendar.php

    r56710 r57377  
    3434            str_contains( $permalink_structure, '%year%' )
    3535        ) {
    36             // phpcs:ignore WordPress.WP.GlobalVariablesOverride.OverrideProhibited
    3736            $monthnum = $attributes['month'];
    38             // phpcs:ignore WordPress.WP.GlobalVariablesOverride.OverrideProhibited
    39             $year = $attributes['year'];
     37            $year     = $attributes['year'];
    4038        }
    4139    }
     
    7169    );
    7270
    73     // phpcs:ignore WordPress.WP.GlobalVariablesOverride.OverrideProhibited
    7471    $monthnum = $previous_monthnum;
    75     // phpcs:ignore WordPress.WP.GlobalVariablesOverride.OverrideProhibited
    76     $year = $previous_year;
     72    $year     = $previous_year;
    7773
    7874    return $output;
Note: See TracChangeset for help on using the changeset viewer.