Plugin Directory

Changeset 3418372


Ignore:
Timestamp:
12/12/2025 03:01:42 PM (5 weeks ago)
Author:
Yoast
Message:

Committing 26.6-RC5 to trunk

Location:
wordpress-seo/trunk
Files:
75 added
75 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • wordpress-seo/trunk/readme.txt

    r3412286 r3418372  
    315315#### Bugfixes
    316316
    317 * Fixes a bug where the `Show more` list for categries and content types would collapse when clicking on menu items in the settings sidebar navigation.
     317* Fixes a bug where the `Show more` list for categories and content types would collapse when clicking on menu items in the settings sidebar navigation.
    318318* Fixes a bug where translations for the content analysis were not displayed on WordPress 6.9.
    319319* Fixes a security bug that would allow users with limited capabilities to read metadata of posts that they should not have access to.
     
    323323* Highlights the Google Docs & Yoast Duplicate post add-ons on the Plans page.
    324324* Improves the behavior of the upgrade button in the Yoast sidebar and admin menus.
    325 * Improves the focus behaviour for some buttons and links in the Yoast SEO admin pages.
     325* Improves the focus behavior for some buttons and links in the Yoast SEO admin pages.
    326326* Redesigns the AI Brand Insights button in the Yoast sidebar and admin menus.
    327327
  • wordpress-seo/trunk/src/task-list/application/tasks/delete-hello-world.php

    r3408053 r3418372  
    33namespace Yoast\WP\SEO\Task_List\Application\Tasks;
    44
     5use WP_Comment;
    56use WP_Post;
    67use Yoast\WP\SEO\Task_List\Domain\Components\Call_To_Action_Entry;
     
    4647        }
    4748
     49        // Check if this is the actual Hello World post by checking the first comment.
     50        $comments = \get_comments(
     51            [
     52                'post_id' => 1,
     53                'number'  => 1,
     54                'order'   => 'ASC',
     55            ]
     56        );
     57
     58        if ( empty( $comments ) || \is_a( $comments[0], WP_Comment::class ) === false || $comments[0]->comment_author_email !== 'wapuu@wordpress.example' ) {
     59            // Not the Hello World post, so consider task completed.
     60            return true;
     61        }
     62
    4863        return $post->post_date !== $post->post_modified;
    4964    }
     
    6984
    7085        if ( $post instanceof WP_Post ) {
    71             $result = \wp_delete_post( $post->ID, true );
     86            $result = \wp_delete_post( $post->ID );
    7287
    7388            if ( ! $result ) {
  • wordpress-seo/trunk/vendor/composer/installed.php

    r3412286 r3418372  
    44        'pretty_version' => 'dev-trunk',
    55        'version' => 'dev-trunk',
    6         'reference' => '294b9f2c5ffae40a1477043d139333e495262266',
     6        'reference' => '2939f86619ed631f19852574dad5c0f5fd31f24d',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    2323            'pretty_version' => 'dev-trunk',
    2424            'version' => 'dev-trunk',
    25             'reference' => '294b9f2c5ffae40a1477043d139333e495262266',
     25            'reference' => '2939f86619ed631f19852574dad5c0f5fd31f24d',
    2626            'type' => 'wordpress-plugin',
    2727            'install_path' => __DIR__ . '/../../',
  • wordpress-seo/trunk/wp-seo-main.php

    r3412286 r3418372  
    1616 *            serious issues with the options, so no if ( ! defined() ).}}
    1717 */
    18 define( 'WPSEO_VERSION', '26.6-RC4' );
     18define( 'WPSEO_VERSION', '26.6-RC5' );
    1919
    2020
  • wordpress-seo/trunk/wp-seo.php

    r3412286 r3418372  
    99 * @wordpress-plugin
    1010 * Plugin Name: Yoast SEO
    11  * Version:     26.6-RC4
     11 * Version:     26.6-RC5
    1212 * Plugin URI:  https://yoa.st/1uj
    1313 * Description: The first true all-in-one SEO solution for WordPress, including on-page content analysis, XML sitemaps and much more.
     
    2121 *
    2222 * WC requires at least: 7.1
    23  * WC tested up to: 10.3
     23 * WC tested up to: 10.4
    2424 *
    2525 * This program is free software: you can redistribute it and/or modify
Note: See TracChangeset for help on using the changeset viewer.