Plugin Directory

Changeset 3326069


Ignore:
Timestamp:
07/11/2025 05:21:30 AM (6 months ago)
Author:
afragen
Message:

Update to version 3.6.4 from GitHub

Location:
wordpress-beta-tester
Files:
1 deleted
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wordpress-beta-tester/tags/3.6.4/CHANGES.md

    r3261736 r3326069  
    11[unreleased]
     2
     3#### 3.6.4 / 2025-07-10
     4* update readme
     5* fixed incorrect path to `delete_plugins()`
     6* check for `require_filesystem_credentials()` as missing during update.
    27
    38#### 3.6.3 / 2025-03-25
  • wordpress-beta-tester/tags/3.6.4/README.md

    r3166156 r3326069  
    11# WordPress Beta Tester
    22* Tags: beta, advanced, testing
    3 * Contributors: [westi](https://github.com/westi), [mlteal](https://github.com/mlteal), [afragen](https://github.com/afragen), [pbiron](https://github.com/pbiron), [costdev](https:/github.com/costdev)
     3* Contributors: [afragen](https://github.com/afragen), [costdev](https:/github.com/costdev), [pbiron](https://github.com/pbiron), [westi](https://github.com/westi), [mlteal](https://github.com/mlteal)
    44* License: GPLv2
    55* License URI: https://www.opensource.org/licenses/GPL-2.0
  • wordpress-beta-tester/tags/3.6.4/readme.txt

    r3261743 r3326069  
    22
    33Tags: beta, advanced, testing
    4 Contributors: westi, mlteal, afragen, pbiron, costdev
     4Contributors: afragen, costdev, pbiron, mlteal, westi
    55License: GPLv2
    66License URI: https://www.opensource.org/licenses/GPL-2.0
     
    88Requires PHP: 5.6
    99Tested up to: 6.8
    10 Stable Tag: 3.6.3
     10Stable Tag: 3.6.4
    1111
    1212Allows you to easily upgrade for testing the next versions of WordPress.
     
    3232
    3333## Changelog
     34
     35#### 3.6.4 / 2025-07-10
     36* update readme
     37* fixed incorrect path to `delete_plugins()`
     38* check for `require_filesystem_credentials()` as missing during update.
    3439
    3540#### 3.6.3 / 2025-03-25
     
    3643692. This shows the Extra Settings page for the plugin
    3653703. This shows the Dashboard callout
    366 4. This shows the 'Report a Bug' tab
  • wordpress-beta-tester/tags/3.6.4/src/WPBT/WPBT_Extras.php

    r3261736 r3326069  
    220220
    221221        // Needed as sometimes `delete_plugins()` not ready.
    222         require_once ABSPATH . 'wp-admin/includes/file.php';
    223         add_action( 'init', fn() => delete_plugins( array( 'akismet/akismet.php' ) ) );
     222        require_once ABSPATH . 'wp-admin/includes/plugin.php';
     223        add_action(
     224            'init',
     225            function () {
     226                if ( function_exists( 'request_filesystem_credentials' ) ) {
     227                    delete_plugins( array( 'akismet/akismet.php' ) );
     228                }
     229            }
     230        );
    224231    }
    225232}
  • wordpress-beta-tester/tags/3.6.4/wp-beta-tester.php

    r3261736 r3326069  
    1414 * Description:       Allows you to easily upgrade to Beta releases.
    1515 * Author:            WordPress Upgrade/Install Team
    16  * Version:           3.6.3
     16 * Version:           3.6.4
    1717 * Network:           true
    1818 * Author URI:        https://make.wordpress.org/core/components/upgrade-install/
  • wordpress-beta-tester/trunk/CHANGES.md

    r3261736 r3326069  
    11[unreleased]
     2
     3#### 3.6.4 / 2025-07-10
     4* update readme
     5* fixed incorrect path to `delete_plugins()`
     6* check for `require_filesystem_credentials()` as missing during update.
    27
    38#### 3.6.3 / 2025-03-25
  • wordpress-beta-tester/trunk/README.md

    r3166156 r3326069  
    11# WordPress Beta Tester
    22* Tags: beta, advanced, testing
    3 * Contributors: [westi](https://github.com/westi), [mlteal](https://github.com/mlteal), [afragen](https://github.com/afragen), [pbiron](https://github.com/pbiron), [costdev](https:/github.com/costdev)
     3* Contributors: [afragen](https://github.com/afragen), [costdev](https:/github.com/costdev), [pbiron](https://github.com/pbiron), [westi](https://github.com/westi), [mlteal](https://github.com/mlteal)
    44* License: GPLv2
    55* License URI: https://www.opensource.org/licenses/GPL-2.0
  • wordpress-beta-tester/trunk/readme.txt

    r3261743 r3326069  
    22
    33Tags: beta, advanced, testing
    4 Contributors: westi, mlteal, afragen, pbiron, costdev
     4Contributors: afragen, costdev, pbiron, mlteal, westi
    55License: GPLv2
    66License URI: https://www.opensource.org/licenses/GPL-2.0
     
    88Requires PHP: 5.6
    99Tested up to: 6.8
    10 Stable Tag: 3.6.3
     10Stable Tag: 3.6.4
    1111
    1212Allows you to easily upgrade for testing the next versions of WordPress.
     
    3232
    3333## Changelog
     34
     35#### 3.6.4 / 2025-07-10
     36* update readme
     37* fixed incorrect path to `delete_plugins()`
     38* check for `require_filesystem_credentials()` as missing during update.
    3439
    3540#### 3.6.3 / 2025-03-25
     
    3643692. This shows the Extra Settings page for the plugin
    3653703. This shows the Dashboard callout
    366 4. This shows the 'Report a Bug' tab
  • wordpress-beta-tester/trunk/src/WPBT/WPBT_Extras.php

    r3261736 r3326069  
    220220
    221221        // Needed as sometimes `delete_plugins()` not ready.
    222         require_once ABSPATH . 'wp-admin/includes/file.php';
    223         add_action( 'init', fn() => delete_plugins( array( 'akismet/akismet.php' ) ) );
     222        require_once ABSPATH . 'wp-admin/includes/plugin.php';
     223        add_action(
     224            'init',
     225            function () {
     226                if ( function_exists( 'request_filesystem_credentials' ) ) {
     227                    delete_plugins( array( 'akismet/akismet.php' ) );
     228                }
     229            }
     230        );
    224231    }
    225232}
  • wordpress-beta-tester/trunk/wp-beta-tester.php

    r3261736 r3326069  
    1414 * Description:       Allows you to easily upgrade to Beta releases.
    1515 * Author:            WordPress Upgrade/Install Team
    16  * Version:           3.6.3
     16 * Version:           3.6.4
    1717 * Network:           true
    1818 * Author URI:        https://make.wordpress.org/core/components/upgrade-install/
Note: See TracChangeset for help on using the changeset viewer.