Make WordPress Core


Ignore:
Timestamp:
09/08/2021 09:11:10 PM (5 years ago)
Author:
desrosj
Message:

Grouped merges for 5.6.5.

  • Update lodash to the latest version 4.17.21.
  • Disable some attributes for rich text.
  • Use hashed/deterministic moduleIDs in webpack config.

Props ellatrix, peterwilsoncc, get_dave, mcsf, talldanwp, youknowriad, desrosj, nerrad, gziolo.
Merges [50940-50941,50984-50985,51426] to the 5.6 branch.

Location:
branches/5.6
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/5.6

  • branches/5.6/src/wp-admin/about.php

    r50870 r51751  
    7474                <div class="about__section changelog">
    7575                        <div class="column has-border has-subtle-background-color">
    76                                 <h2 class="is-smaller-heading"><?php _e( 'Maintenance and Security Releases' ); ?></h2>
     76                                <h2 class="is-smaller-heading"><?php _e( 'Maintenance and Security Releases' ); ?></h2>
     77                                <p>
     78                                        <?php
     79                                        printf(
     80                                                /* translators: %s: WordPress version number */
     81                                                __( '<strong>Version %s</strong> addressed some security issues.' ),
     82                                                '5.6.5'
     83                                        );
     84                                        ?>
     85                                        <?php
     86                                        printf(
     87                                                /* translators: %s: HelpHub URL */
     88                                                __( 'For more information, see <a href="%s">the release notes</a>.' ),
     89                                                sprintf(
     90                                                        /* translators: %s: WordPress version */
     91                                                        esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
     92                                                        sanitize_title( '5.6.5' )
     93                                                )
     94                                        );
     95                                        ?>
     96                                </p>
    7797                                <p>
    7898                                        <?php
Note: See TracChangeset for help on using the changeset viewer.