Plugin Directory

Changeset 3490572


Ignore:
Timestamp:
03/25/2026 06:42:50 AM (3 days ago)
Author:
PierreLannoy
Message:

APCu Manager 4.4.0 released from GitHub

Location:
apcu-manager
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • apcu-manager/tags/4.4.0/CHANGELOG.md

    r3400952 r3490572  
    33
    44The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and **APCu Manager** adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
     5
     6## [4.4.0] - 2026-03-25
     7
     8### Added
     9- Compatibility with WordPress 7.0.
     10
     11### Changed
     12- Minimal requirements are now PHP 8.2 and WordPress 6.4.
     13- Some strings in `readme.txt` have been updated.
     14
     15### Removed
     16- Compatibility with PHP 8.1.
     17- Compatibility with WordPress 6.2 & 6.3.
    518
    619## [4.3.0] - 2025-11-22
  • apcu-manager/tags/4.4.0/apcu-manager.php

    r3400952 r3490572  
    1111 * Plugin URI:        https://perfops.one/apcu-manager
    1212 * Description:       APCu statistics and management right in the WordPress admin dashboard.
    13  * Version:           4.3.0
    14  * Requires at least: 6.2
    15  * Requires PHP:      8.1
     13 * Version:           4.4.0
     14 * Requires at least: 6.4
     15 * Requires PHP:      8.2
    1616 * Author:            Pierre Lannoy / PerfOps One
    1717 * Author URI:        https://perfops.one
  • apcu-manager/tags/4.4.0/includes/system/class-uuid.php

    r2658575 r3490572  
    5454
    5555    /**
     56     * Check if a string is a valid v4 UUID
     57     *
     58     * @param mixed $uuid The string to check
     59     * @return  boolean True if the string is a valid v4 UUID, false otherwise.
     60     * @since  2.0.0
     61     */
     62    public static function is_valid_v4( $uuid ) {
     63        return is_string( $uuid ) && preg_match( '/^[a-f\d]{8}(-[a-f\d]{4}){4}[a-f\d]{8}$/i', $uuid );
     64    }
     65
     66    /**
     67     * Sanitize a v4 UUID
     68     *
     69     * @param mixed $uuid The string to sanitize
     70     * @return  string The sanitized v4 UUID.
     71     * @since  2.0.0
     72     */
     73    public static function sanitize_v4( $uuid ) {
     74        return self::is_valid_v4( $uuid ) ? (string) $uuid : '00000000-0000-4000-0000-000000000000';
     75    }
     76
     77    /**
    5678     * Generates a (pseudo) unique ID.
    5779     * This function does not generate cryptographically secure values, and should not be used for cryptographic purposes.
  • apcu-manager/tags/4.4.0/init.php

    r3400952 r3490572  
    1313define( 'APCM_PRODUCT_ABBREVIATION', 'apcm' );
    1414define( 'APCM_SLUG', 'apcu-manager' );
    15 define( 'APCM_VERSION', '4.3.0' );
     15define( 'APCM_VERSION', '4.4.0' );
    1616define( 'APCM_CODENAME', '"-"' );
    1717
  • apcu-manager/tags/4.4.0/readme.txt

    r3400952 r3490572  
    22Contributors: PierreLannoy, hosterra
    33Tags: APCu, cache, monitor, object cache, w3tc
    4 Requires at least: 6.2
    5 Requires PHP: 8.1
    6 Tested up to: 6.9
    7 Stable tag: 4.3.0
     4Requires at least: 6.4
     5Requires PHP: 8.2
     6Tested up to: 7.0
     7Stable tag: 4.4.0
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    1515**APCu statistics and management right in the WordPress admin dashboard.**
    1616
     17**APCu Manager** offers a persistent object cache backend to WordPress: just activate the option in the settings and you will experience a real speed up of your site or network.
     18
    1719**APCu Manager** is a full featured APCu management and analytics reporting tool. It allows you to monitor and optimize APCu operations on your WordPress site or network.
    1820
    19 **APCu Manager** offers a persistent object cache backend to WordPress: just activate the option in the settings and you will experience a real speed up of your site or network.
    20 
    21 **APCu Manager** works on dedicated or shared servers. It is compatible with all plugins using APCu, like PerfOps One suite or W3 Total Cache. Its main management features are:
     21**APCu Manager** works on dedicated or shared servers. It is compatible with all plugins using WordPress object caching. Its main management features are:
    2222
    2323* drop-in replacement for WordPress object caching;
     
    5454This plugin is free and provided without warranty of any kind. Use it at your own risk, I'm not responsible for any improper use of this plugin, nor for any damage it might cause to your site. Always backup all your data before installing a new plugin.
    5555
    56 Anyway, I'll be glad to help you if you encounter issues when using this plugin. Just use the support section of this plugin page.
     56Anyway, I'll be glad to help you if you encounter issues when using this plugin. Please read carefully the FAQ at the bottom of this page before requesting support.
    5757
    5858= Privacy =
     
    9292= What are the requirements for this plugin to work? =
    9393
    94 You need at least **WordPress 6.2** and **PHP 8.1**.
    95 
    9694You need APCu enabled on your server.
    9795
     
    106104= Where can I get support? =
    107105
    108 Support is provided via the official [WordPress page](https://wordpress.org/support/plugin/apcu-manager/).
     106Support is provided via the official [WordPress page](https://wordpress.org/support/plugin/apcu-manager/). Because I am human myself, please note that I only answer to support requests made by humans, who behave like humans. This excludes requests or bug reports written by AI or those that do not adhere to basic rules of courtesy.
    109107
    110108= Where can I report a bug? =
  • apcu-manager/trunk/CHANGELOG.md

    r3400952 r3490572  
    33
    44The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and **APCu Manager** adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
     5
     6## [4.4.0] - 2026-03-25
     7
     8### Added
     9- Compatibility with WordPress 7.0.
     10
     11### Changed
     12- Minimal requirements are now PHP 8.2 and WordPress 6.4.
     13- Some strings in `readme.txt` have been updated.
     14
     15### Removed
     16- Compatibility with PHP 8.1.
     17- Compatibility with WordPress 6.2 & 6.3.
    518
    619## [4.3.0] - 2025-11-22
  • apcu-manager/trunk/apcu-manager.php

    r3400952 r3490572  
    1111 * Plugin URI:        https://perfops.one/apcu-manager
    1212 * Description:       APCu statistics and management right in the WordPress admin dashboard.
    13  * Version:           4.3.0
    14  * Requires at least: 6.2
    15  * Requires PHP:      8.1
     13 * Version:           4.4.0
     14 * Requires at least: 6.4
     15 * Requires PHP:      8.2
    1616 * Author:            Pierre Lannoy / PerfOps One
    1717 * Author URI:        https://perfops.one
  • apcu-manager/trunk/includes/system/class-uuid.php

    r2658575 r3490572  
    5454
    5555    /**
     56     * Check if a string is a valid v4 UUID
     57     *
     58     * @param mixed $uuid The string to check
     59     * @return  boolean True if the string is a valid v4 UUID, false otherwise.
     60     * @since  2.0.0
     61     */
     62    public static function is_valid_v4( $uuid ) {
     63        return is_string( $uuid ) && preg_match( '/^[a-f\d]{8}(-[a-f\d]{4}){4}[a-f\d]{8}$/i', $uuid );
     64    }
     65
     66    /**
     67     * Sanitize a v4 UUID
     68     *
     69     * @param mixed $uuid The string to sanitize
     70     * @return  string The sanitized v4 UUID.
     71     * @since  2.0.0
     72     */
     73    public static function sanitize_v4( $uuid ) {
     74        return self::is_valid_v4( $uuid ) ? (string) $uuid : '00000000-0000-4000-0000-000000000000';
     75    }
     76
     77    /**
    5678     * Generates a (pseudo) unique ID.
    5779     * This function does not generate cryptographically secure values, and should not be used for cryptographic purposes.
  • apcu-manager/trunk/init.php

    r3400952 r3490572  
    1313define( 'APCM_PRODUCT_ABBREVIATION', 'apcm' );
    1414define( 'APCM_SLUG', 'apcu-manager' );
    15 define( 'APCM_VERSION', '4.3.0' );
     15define( 'APCM_VERSION', '4.4.0' );
    1616define( 'APCM_CODENAME', '"-"' );
    1717
  • apcu-manager/trunk/readme.txt

    r3400952 r3490572  
    22Contributors: PierreLannoy, hosterra
    33Tags: APCu, cache, monitor, object cache, w3tc
    4 Requires at least: 6.2
    5 Requires PHP: 8.1
    6 Tested up to: 6.9
    7 Stable tag: 4.3.0
     4Requires at least: 6.4
     5Requires PHP: 8.2
     6Tested up to: 7.0
     7Stable tag: 4.4.0
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    1515**APCu statistics and management right in the WordPress admin dashboard.**
    1616
     17**APCu Manager** offers a persistent object cache backend to WordPress: just activate the option in the settings and you will experience a real speed up of your site or network.
     18
    1719**APCu Manager** is a full featured APCu management and analytics reporting tool. It allows you to monitor and optimize APCu operations on your WordPress site or network.
    1820
    19 **APCu Manager** offers a persistent object cache backend to WordPress: just activate the option in the settings and you will experience a real speed up of your site or network.
    20 
    21 **APCu Manager** works on dedicated or shared servers. It is compatible with all plugins using APCu, like PerfOps One suite or W3 Total Cache. Its main management features are:
     21**APCu Manager** works on dedicated or shared servers. It is compatible with all plugins using WordPress object caching. Its main management features are:
    2222
    2323* drop-in replacement for WordPress object caching;
     
    5454This plugin is free and provided without warranty of any kind. Use it at your own risk, I'm not responsible for any improper use of this plugin, nor for any damage it might cause to your site. Always backup all your data before installing a new plugin.
    5555
    56 Anyway, I'll be glad to help you if you encounter issues when using this plugin. Just use the support section of this plugin page.
     56Anyway, I'll be glad to help you if you encounter issues when using this plugin. Please read carefully the FAQ at the bottom of this page before requesting support.
    5757
    5858= Privacy =
     
    9292= What are the requirements for this plugin to work? =
    9393
    94 You need at least **WordPress 6.2** and **PHP 8.1**.
    95 
    9694You need APCu enabled on your server.
    9795
     
    106104= Where can I get support? =
    107105
    108 Support is provided via the official [WordPress page](https://wordpress.org/support/plugin/apcu-manager/).
     106Support is provided via the official [WordPress page](https://wordpress.org/support/plugin/apcu-manager/). Because I am human myself, please note that I only answer to support requests made by humans, who behave like humans. This excludes requests or bug reports written by AI or those that do not adhere to basic rules of courtesy.
    109107
    110108= Where can I report a bug? =
Note: See TracChangeset for help on using the changeset viewer.