Plugin Directory

Changeset 3388725


Ignore:
Timestamp:
11/03/2025 09:37:35 AM (6 weeks ago)
Author:
ignatggeorgiev
Message:

Bump to 7.7.3

Location:
sg-cachepress/trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • sg-cachepress/trunk/core/Cli/Cli_Images.php

    r2971883 r3388725  
    66 * WP-CLI: wp sg images value.
    77 *
    8  * Run the `wp sg images {compression-level} {frequency}` command to change the settgins of specific plugin functionality.
     8 * Run the `wp sg images {compression-level} {frequency}` command to change the settings of specific plugin functionality.
    99 *
    1010 * @since 6.0.0
     
    2828     * ---
    2929     * options:
    30      *  - 0
    3130     *  - 1
    3231     *  - 2
    33     *  - 3
     32    *  - 3
    3433     */
    3534    public function __invoke( $args, $assoc_args ) {
    36         $possible_entries = array( 1, 2, 3 );
    37         if ( ! isset ( $assoc_args['compression-level'] ) || ! in_array( intval( $assoc_args['compression-level'] ), $possible_entries ) ) {
     35        $possible_entries = array( 1, 2, 3 );
     36        if ( ! isset( $assoc_args['compression-level'] ) || ! in_array( intval( $assoc_args['compression-level'] ), $possible_entries ) ) {
    3837            return \WP_CLI::error( 'Please specify the compression level' );
    3938        }
    4039        $image_optimizer  = new Images_Optimizer();
    4140
    42         \WP_CLI::log( 'Start Image Optimization');
     41        \WP_CLI::log( 'Start Image Optimization' );
    4342
    4443        // Add empty line.
  • sg-cachepress/trunk/core/File_Cacher/File_Cacher.php

    r3204886 r3388725  
    593593
    594594    /**
    595      * Clean the file based cache dir and maybe preheatthe cache.
     595     * Clean the file based cache dir and maybe preheat the cache.
    596596     *
    597597     * @since  7.0.1
     
    601601        $this->wp_filesystem->delete( $this->get_cache_dir(), true );
    602602
     603        $this->schedule_cleanup();
     604
    603605        // Bail if WP Cron is disabled.
    604606        if ( Helper_Service::is_cron_disabled() ) {
    605607            return;
    606608        }
    607 
    608         $this->schedule_cleanup();
    609609
    610610        if (
  • sg-cachepress/trunk/core/Front_End_Optimization/Front_End_Optimization.php

    r3163985 r3388725  
    502502        Supercacher::purge_cache();
    503503        Supercacher::flush_memcache();
    504         File_Cacher::purge_everything();
     504        File_Cacher::get_instance()->purge_everything();
    505505    }
    506506
  • sg-cachepress/trunk/core/Message_Service/Message_Service.php

    r3150542 r3388725  
    7070            'siteground_optimizer_images_permissions'      => __( 'Can Optimize Images', 'sg-cachepress' ),
    7171            'siteground_optimizer_environment_permissions' => __( 'Can Optimize Environment', 'sg-cachepress' ),
     72            'purge_rest_cache'                             => __( 'Autoflush WordPress API Cache', 'sg-cachepress' ),
     73            'ssl_enabled'                                  => __( 'HTTPS', 'sg-cachepress' ),
    7274        );
    7375
  • sg-cachepress/trunk/core/Supercacher/Supercacher.php

    r3204886 r3388725  
    120120            'update_option_woocommerce_coming_soon',
    121121            'update_option_woocommerce_store_pages_only',
     122            'elementor/core/files/clear_cache',
    122123        ),
    123124    );
  • sg-cachepress/trunk/readme.txt

    r3273064 r3388725  
    55Requires PHP: 7.0
    66Tested up to: 6.8
    7 Stable tag: 7.7.2
     7Stable tag: 7.7.3
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    119119== Changelog ==
    120120
     121= Version 7.7.3 =
     122Release Date: Nov 3rd, 2025
     123
     124* File-based cache purge improvements
     125* Third-Party plugins compatibility improvements
     126* WP CLI improvements
     127
     128
    121129= Version 7.7.2 =
    122130Release Date: Dec 9th, 2024
     
    173181* Improved memcache handling of autoload options
    174182* Improved handling of heartbeat optimizations
    175 
    176183
    177184= Version 7.6.3 =
  • sg-cachepress/trunk/sg-cachepress.php

    r3204886 r3388725  
    1111 * Plugin URI:        https://siteground.com
    1212 * Description:       This plugin will link your WordPress application with all the performance optimizations provided by SiteGround
    13  * Version:           7.7.2
     13 * Version:           7.7.3
    1414 * Author:            SiteGround
    1515 * Author URI:        https://www.siteground.com
     
    3434// Define version constant.
    3535if ( ! defined( __NAMESPACE__ . '\VERSION' ) ) {
    36     define( __NAMESPACE__ . '\VERSION', '7.7.2' );
     36    define( __NAMESPACE__ . '\VERSION', '7.7.3' );
    3737}
    3838
Note: See TracChangeset for help on using the changeset viewer.