Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: olethomas/wordpress-develop
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: WordPress/wordpress-develop
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 16 commits
  • 35 files changed
  • 6 contributors

Commits on Nov 5, 2021

  1. Coding Standards: Consistently escape attribute in `wp-admin/themes.p…

    …hp`.
    
    Follow-up to [27012], [38057], [47816], [51083].
    
    Props sabbirshouvo, audrasjb.
    Fixes #54256.
    
    git-svn-id: https://develop.svn.wordpress.org/trunk@52020 602fd350-edb4-49c9-b593-d223f7449a82
    SergeyBiryukov committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    b64d06f View commit details
    Browse the repository at this point in the history
  2. Site Health: Add the constant WP_ENVIRONMENT_TYPE for debug data.

    As a legacy from the old Health Check plugin, the constant `WP_LOCAL_DEV` was included in the debug data under the "WordPress Constants" section. This was incorrect, and has never been a constant used by core.
    
    Instead, that field is now replaced by `WP_ENVIRONMENT_TYPE`, which was introduced with WordPress 5.5, and is a much more appropriate value to provide in a debug scenario.
    
    Props johnbillion, bgoewert, sabbirshouvo.
    Fixes #54340.
    
    git-svn-id: https://develop.svn.wordpress.org/trunk@52021 602fd350-edb4-49c9-b593-d223f7449a82
    Clorith committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    3d679af View commit details
    Browse the repository at this point in the history
  3. Bundled Theme: Ensure logo displays in Customizer previewer.

    Fixes an issue with the logo not displaying the Customizer previewer when changing the site title or description.
    
    Follow-up to [46271].
    
    Props acosmin, boniu91, sabernhardt.
    Fixes #51337.
    
    git-svn-id: https://develop.svn.wordpress.org/trunk@52022 602fd350-edb4-49c9-b593-d223f7449a82
    hellofromtonya committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    76cf854 View commit details
    Browse the repository at this point in the history
  4. Bundled Theme: Add privacy policy link to Twenty Twenty footer.

    If a privacy policy is set, its page is now linked in the footer.
    
    Follow-up to [46271].
    
    Props audrasjb, justinahinon, kapilpaul, ryelle, sabernhardt.
    Fixes #53446.
    
    git-svn-id: https://develop.svn.wordpress.org/trunk@52023 602fd350-edb4-49c9-b593-d223f7449a82
    hellofromtonya committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    c3d8812 View commit details
    Browse the repository at this point in the history
  5. Posts/Post Types: Add filter to is_post_type_viewable().

    Introduces a new filter `'is_post_type_viewable'` which allows overriding the check. The expected filtered value is a boolean. As filtered values can change, including the data type, this commit includes a `is_bool()` check, thus ensuring backwards-compatibility.
    
    Follow-up to [33666], [36402].
    
    Props audrasjb, deepaklalwani, hellofromTonya, peterwilsoncc, powerbuoy, sergeybiryukov.
    Fixes #49628.
    
    git-svn-id: https://develop.svn.wordpress.org/trunk@52024 602fd350-edb4-49c9-b593-d223f7449a82
    hellofromtonya committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    9c72fd7 View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2021

  1. Coding Standards: Rename the $strResponse argument to `$str_respons…

    …e` in `WP_Http::processResponse()`.
    
    This fixes a `Variable "$strResponse" is not in valid snake_case format` WPCS warning.
    
    Additionally, rename a `$res` variable to `$response` for clarity.
    
    Follow-up to [8516], [51823], [51826], [51877].
    
    See #53359.
    
    git-svn-id: https://develop.svn.wordpress.org/trunk@52025 602fd350-edb4-49c9-b593-d223f7449a82
    SergeyBiryukov committed Nov 6, 2021
    Configuration menu
    Copy the full SHA
    6523e72 View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2021

  1. Coding Standards: Move wp-includes/class-http.php to `wp-includes/c…

    …lass-wp-http.php`.
    
    This renames the file containing the `WP_Http` class to conform to the coding standards.
    
    This commit also includes:
    
    - A new `class-http.php` that includes the new file, for anyone that may've been including the file directly.
    - Replaces references to the old filename with the new filename.
    
    Follow-up to [8516], [13274], [33748].
    
    Fixes #54389. See #53359.
    
    git-svn-id: https://develop.svn.wordpress.org/trunk@52026 602fd350-edb4-49c9-b593-d223f7449a82
    SergeyBiryukov committed Nov 7, 2021
    Configuration menu
    Copy the full SHA
    b7bbb52 View commit details
    Browse the repository at this point in the history
  2. Media: Add filter for post thumbnail url.

    Introduces new filter `post_thumbnail_url` which allows overriding the default url returned from `wp_get_attachement_image_url()`.
    
    Props ibenic, SergeyBiryukov, jackreichert, audrasjb.
    Fixes #40547.
    
    
    
    git-svn-id: https://develop.svn.wordpress.org/trunk@52027 602fd350-edb4-49c9-b593-d223f7449a82
    antpb committed Nov 7, 2021
    Configuration menu
    Copy the full SHA
    ff0425a View commit details
    Browse the repository at this point in the history
  3. Media: Add filter for post thumbnail id.

    Introduces new filter `post_thumbnail_id` which allows overriding the default id returned from `get_post_thumbnail_id()`.
    
    Props engelen, alexvorn2, gilbitron, sebastianpisula, SergeyBiryukov, leogermani, rzen, joemcgill, audrasjb.
    Fixes #23983.
    
    
    
    git-svn-id: https://develop.svn.wordpress.org/trunk@52028 602fd350-edb4-49c9-b593-d223f7449a82
    antpb committed Nov 7, 2021
    Configuration menu
    Copy the full SHA
    cdb15e3 View commit details
    Browse the repository at this point in the history
  4. Comments: Mark comment text field as required.

    Add required asterisk to the comment text field. Historically, the name and email fields are marked as required, but the comment text field is not, though it is actually a required field.
    
    Props infected, solarissmoke, rianrietveld, afercia, sabernhardt, strider72, mai21, audrasjb.
    Fixes #16206.
    
    git-svn-id: https://develop.svn.wordpress.org/trunk@52029 602fd350-edb4-49c9-b593-d223f7449a82
    joedolson committed Nov 7, 2021
    Configuration menu
    Copy the full SHA
    99705b3 View commit details
    Browse the repository at this point in the history
  5. Editor: Update structure of title element for editing.

    Re-format the title element for post editing to follow general scheme for WordPress admin screens.
    
    Props SergeyBiryukov.
    Fixes #52314.
    
    git-svn-id: https://develop.svn.wordpress.org/trunk@52030 602fd350-edb4-49c9-b593-d223f7449a82
    joedolson committed Nov 7, 2021
    Configuration menu
    Copy the full SHA
    4f2ce07 View commit details
    Browse the repository at this point in the history
  6. Widgets: Add filter to disable RSS widget icon.

    Add a filter that disables output of the icon on RSS feed widgets. Improves accessibility by providing a path to prevent duplicate or invisible links.
    
    Props sabernhardt, Boniu91.
    Fixes #52224.
    
    git-svn-id: https://develop.svn.wordpress.org/trunk@52031 602fd350-edb4-49c9-b593-d223f7449a82
    joedolson committed Nov 7, 2021
    Configuration menu
    Copy the full SHA
    2ce222c View commit details
    Browse the repository at this point in the history
  7. Media: Remove security messaging in media upload failures.

    Previously, when uploading a media item type that is not supported, the default error message claims that the reason it cannot upload is due to security reasons. This is not always true. Now the warning says that the type is not allowed, which is always true.
    
    Props antpb, Presskopp, peterwilsoncc, desrosj, iluy, circlecube, mikeschroder.
    Fixes #53626.
    
    
    
    git-svn-id: https://develop.svn.wordpress.org/trunk@52032 602fd350-edb4-49c9-b593-d223f7449a82
    antpb committed Nov 7, 2021
    Configuration menu
    Copy the full SHA
    8ac6425 View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2021

  1. Media: Adjust alt text info link text.

    Previous messaging of this link was confusing given it went to an external source. This change describes more accurately that it will perform the action of taking you to the resource.
    
    Props karmatosed, joedolson, melchoyce, hellofromTonya, afercia, sabernhardt, antpb.
    Fixes #48939.
    
    
    
    git-svn-id: https://develop.svn.wordpress.org/trunk@52033 602fd350-edb4-49c9-b593-d223f7449a82
    antpb committed Nov 8, 2021
    Configuration menu
    Copy the full SHA
    9c00ed2 View commit details
    Browse the repository at this point in the history
  2. Docs: Fix some docblock syntax errors and add a missing canonical ref…

    …erence.
    
    See #53399, #52867, #38942, #53668
    
    
    git-svn-id: https://develop.svn.wordpress.org/trunk@52034 602fd350-edb4-49c9-b593-d223f7449a82
    johnbillion committed Nov 8, 2021
    Configuration menu
    Copy the full SHA
    a247caa View commit details
    Browse the repository at this point in the history
  3. Docs: Various docblock improvements and corrections.

    See #53399
    
    
    git-svn-id: https://develop.svn.wordpress.org/trunk@52035 602fd350-edb4-49c9-b593-d223f7449a82
    johnbillion committed Nov 8, 2021
    Configuration menu
    Copy the full SHA
    d088e31 View commit details
    Browse the repository at this point in the history
Loading