Plugin Directory

Changeset 3137775


Ignore:
Timestamp:
08/19/2024 06:55:07 PM (16 months ago)
Author:
LiteSpeedTech
Message:

Release v6.4.1

Location:
litespeed-cache
Files:
337 added
5 edited

Legend:

Unmodified
Added
Removed
  • litespeed-cache/trunk/litespeed-cache.php

    r3135111 r3137775  
    55 * Plugin URI:        https://www.litespeedtech.com/products/cache-plugins/wordpress-acceleration
    66 * Description:       High-performance page caching and site optimization from LiteSpeed
    7  * Version:           6.4
     7 * Version:           6.4.1
    88 * Author:            LiteSpeed Technologies
    99 * Author URI:        https://www.litespeedtech.com
     
    3535}
    3636
    37 !defined('LSCWP_V') && define('LSCWP_V', '6.4');
     37!defined('LSCWP_V') && define('LSCWP_V', '6.4.1');
    3838
    3939!defined('LSCWP_CONTENT_DIR') && define('LSCWP_CONTENT_DIR', WP_CONTENT_DIR);
     
    180180        }
    181181
    182         //Check minimum WP requirements, which is 4.0 at the moment.
    183         if (version_compare($GLOBALS['wp_version'], '4.0', '<')) {
     182        //Check minimum WP requirements, which is 4.9 at the moment.
     183        if (version_compare($GLOBALS['wp_version'], '4.9', '<')) {
    184184            return;
    185185        }
  • litespeed-cache/trunk/readme.txt

    r3135111 r3137775  
    22Contributors: LiteSpeedTech
    33Tags: caching, optimize, performance, pagespeed, seo, image optimize, object cache, redis, memcached, database cleaner
    4 Requires at least: 4.0
     4Requires at least: 4.9
    55Tested up to: 6.6.1
    6 Stable tag: 6.4
     6Stable tag: 6.4.1
    77License: GPLv3
    88License URI: http://www.gnu.org/licenses/gpl.html
     
    249249The vast majority of plugins and themes are compatible with LiteSpeed Cache. The most up-to-date compatibility information can be found [in our documentation](https://docs.litespeedtech.com/lscache/lscwp/thirdparty/)
    250250
     251= How can I report security bugs? =
     252
     253You can report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team help validate, triage and handle any security vulnerabilities. [Report a security vulnerability.](https://patchstack.com/database/vdp/litespeed-cache)
     254
    251255== Changelog ==
     256
     257= 6.4.1 - Aug 19 2024 =
     258* ❗**Security** This release patches a security issue that may affect previous LSCWP versions since v1.9.
     259* 🐞**Page Optimize** Fixed HTML minification returning blank page issue. (#706)
     260* 🐞**CDN** Fixed a bug when Cloudflare status option is empty. (#684 #992174)
     261* **Core** Minimum required WP version escalated to WP v4.9.
    252262
    253263= 6.4 - Aug 13 2024 =
  • litespeed-cache/trunk/src/cdn/cloudflare.cls.php

    r3123399 r3137775  
    7676        Debug2::debug('[Cloudflare] _get_devmode result ', $res);
    7777
    78         $curr_status = self::get_option(self::ITEM_STATUS, array());
     78        // Make sure is array: #992174
     79        $curr_status = self::get_option(self::ITEM_STATUS, array()) ?: array();
    7980        $curr_status['devmode'] = $res['value'];
    8081        $curr_status['devmode_expired'] = $res['time_remaining'] + time();
  • litespeed-cache/trunk/src/optimizer.cls.php

    r3123399 r3137775  
    5757            $obj = new Lib\HTML_MIN($content, $options);
    5858            $content_final = $obj->process();
     59            // check if content from minification is empty
     60            if($content_final == ''){
     61                Debug2::debug('Failed to minify HTML: HTML minification resulted in empty HTML');
     62                return $content;
     63            }
    5964            if (!defined('LSCACHE_ESI_SILENCE')) {
    6065                $content_final .= "\n" . '<!-- Page optimized by LiteSpeed Cache @' . date('Y-m-d H:i:s', time() + LITESPEED_TIME_OFFSET) . ' -->';
  • litespeed-cache/trunk/tpl/toolbox/beta_test.tpl.php

    r3135111 r3137775  
    77// Existing public version list
    88$v_list = array(
    9     '6.4',
     9    '6.4.1',
    1010    '6.3.0.1',
    1111    '6.2.0.1',
Note: See TracChangeset for help on using the changeset viewer.