Plugin Directory

Changeset 3204886


Ignore:
Timestamp:
12/09/2024 01:26:31 PM (12 months ago)
Author:
ignatggeorgiev
Message:

Bump to 7.7.2

Location:
sg-cachepress/trunk
Files:
1 added
8 edited

Legend:

Unmodified
Added
Removed
  • sg-cachepress/trunk/core/Combinator/Js_Combinator.php

    r3163985 r3204886  
    506506        'wp-hooks',
    507507        'wc-square',
     508        'wp-dom-ready',
     509        'siteground-optimizer-lazy-sizes-js',
    508510    );
    509511
  • sg-cachepress/trunk/core/Database_Optimizer/Database_Optimizer.php

    r3174268 r3204886  
    264264        foreach ( $tables as $table ) {
    265265            // Check if we need to skip that specific table from the optimization.
    266             if ( in_array( $table->table_name, $all_tables ) ) {
     266            if ( empty( $table->table_name ) || in_array( $table->table_name, $all_tables ) ) {
    267267                continue;
    268268            }
  • sg-cachepress/trunk/core/File_Cacher/File_Cacher.php

    r3183808 r3204886  
    177177     */
    178178    public function get_cache_dir() {
     179        // Create the parent cache dir, if it does not exist for some reason.
     180        $parent_cache_dir = WP_CONTENT_DIR . '/cache/';
     181
     182        if ( ! $this->wp_filesystem->is_dir( $parent_cache_dir ) ) {
     183            $this->wp_filesystem->mkdir( $parent_cache_dir );
     184        }
     185
    179186        // Set the main cache dir.
    180187        $dir = WP_CONTENT_DIR . '/cache/sgo-cache/';
  • sg-cachepress/trunk/core/Install_Service/Install_Service.php

    r3090872 r3204886  
    3838use SiteGround_Optimizer\Install_Service\Install_7_2_7;
    3939use SiteGround_Optimizer\Install_Service\Install_7_4_0;
     40use SiteGround_Optimizer\Install_Service\Install_7_7_2;
    4041use SiteGround_Optimizer\Install_Service\Install_Cleanup;
    4142use SiteGround_Optimizer\Supercacher\Supercacher;
     
    9293            new Install_7_2_7(),
    9394            new Install_7_4_0(),
     95            new Install_7_7_2(),
    9496        );
    9597    }
  • sg-cachepress/trunk/core/Supercacher/Supercacher.php

    r3183808 r3204886  
    118118            'create_term',
    119119            'delete_term',
     120            'update_option_woocommerce_coming_soon',
     121            'update_option_woocommerce_store_pages_only',
    120122        ),
    121123    );
  • sg-cachepress/trunk/readme.txt

    r3194236 r3204886  
    55Requires PHP: 7.0
    66Tested up to: 6.7
    7 Stable tag: 7.7.1
     7Stable tag: 7.7.2
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    118118
    119119== Changelog ==
     120
     121= Version 7.7.2 =
     122Release Date: Dec 9th, 2024
     123
     124* Memcache improvements
     125* JavaScript Combination improvements
     126* Database Optimization improvements
     127* Woocommerce compatibility improvements
     128* File-caching improvements
     129
    120130= Version 7.7.1 =
    121131Release Date: Nov 21st, 2024
  • sg-cachepress/trunk/sg-cachepress.php

    r3194236 r3204886  
    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.1
     13 * Version:           7.7.2
    1414 * Author:            SiteGround
    1515 * Author URI:        https://www.siteground.com
     
    3434// Define version constant.
    3535if ( ! defined( __NAMESPACE__ . '\VERSION' ) ) {
    36     define( __NAMESPACE__ . '\VERSION', '7.7.1' );
     36    define( __NAMESPACE__ . '\VERSION', '7.7.2' );
    3737}
    3838
  • sg-cachepress/trunk/templates/memcached.tpl

    r3090872 r3204886  
    33Plugin Name: Memcached
    44Description: Memcached Dropin for SGO
    5 Version: 1.0.0
     5Version: 1.0.1
    66
    77Install this file to wp-content/object-cache.php
     
    245245        } else if ( in_array( $group, $this->no_mc_groups ) ) {
    246246            $this->cache[$key] = $value = false;
     247            if ( strpos( $key, 'atum-stock-manager-for-woocommerce' ) ) {
     248                $this->cache[$key] = $value = null;
     249            }
    247250        } else {
    248251            $value = $mc->get( $key );
Note: See TracChangeset for help on using the changeset viewer.