LiteSpeed Cache - Version 5.0.0.1

Version Description

  • Jul 26 2022 =
  • Cloud Fixed an issue with the cloud request timestamp update which causes a usage sync failure. (Great thanks to Kevin)
Download this release

Release Info

Developer LiteSpeedTech
Plugin Icon 128x128 LiteSpeed Cache
Version 5.0.0.1
Comparing to
See all releases

Code changes from version 5.0 to 5.0.0.1

Files changed (3) hide show
  1. litespeed-cache.php +2 -2
  2. readme.txt +4 -1
  3. src/root.cls.php +1 -0
litespeed-cache.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: LiteSpeed Cache
4
  * Plugin URI: https://www.litespeedtech.com/products/cache-plugins/wordpress-acceleration
5
  * Description: High-performance page caching and site optimization from LiteSpeed
6
- * Version: 5.0
7
  * Author: LiteSpeed Technologies
8
  * Author URI: https://www.litespeedtech.com
9
  * License: GPLv3
@@ -33,7 +33,7 @@ if ( defined( 'LSCWP_V' ) ) {
33
  return;
34
  }
35
 
36
- ! defined( 'LSCWP_V' ) && define( 'LSCWP_V', '5.0' );
37
 
38
  ! defined( 'LSCWP_CONTENT_DIR' ) && define( 'LSCWP_CONTENT_DIR', WP_CONTENT_DIR ) ;
39
  ! defined( 'LSCWP_DIR' ) && define( 'LSCWP_DIR', __DIR__ . '/' ) ;// Full absolute path '/var/www/html/***/wp-content/plugins/litespeed-cache/' or MU
3
  * Plugin Name: LiteSpeed Cache
4
  * Plugin URI: https://www.litespeedtech.com/products/cache-plugins/wordpress-acceleration
5
  * Description: High-performance page caching and site optimization from LiteSpeed
6
+ * Version: 5.0.0.1
7
  * Author: LiteSpeed Technologies
8
  * Author URI: https://www.litespeedtech.com
9
  * License: GPLv3
33
  return;
34
  }
35
 
36
+ ! defined( 'LSCWP_V' ) && define( 'LSCWP_V', '5.0.0.1' );
37
 
38
  ! defined( 'LSCWP_CONTENT_DIR' ) && define( 'LSCWP_CONTENT_DIR', WP_CONTENT_DIR ) ;
39
  ! defined( 'LSCWP_DIR' ) && define( 'LSCWP_DIR', __DIR__ . '/' ) ;// Full absolute path '/var/www/html/***/wp-content/plugins/litespeed-cache/' or MU
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: LiteSpeedTech
3
  Tags: caching, optimize, performance, pagespeed, core web vitals, seo, speed, image optimize, compress, object cache, redis, memcached, database cleaner
4
  Requires at least: 4.0
5
  Tested up to: 6.0.1
6
- Stable tag: 5.0
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl.html
9
 
@@ -250,6 +250,9 @@ The vast majority of plugins and themes are compatible with LiteSpeed Cache. The
250
 
251
  == Changelog ==
252
 
 
 
 
253
  = 5.0 - Jul 25 2022 =
254
  * 🌱**VPI** Added Viewport Images feature to LiteSpeed Options metabox on Post Edit page.
255
  * 🌱**CDN** Added Auto CDN Setup feature for simple QUIC.cloud CDN setup. (Kevin)
3
  Tags: caching, optimize, performance, pagespeed, core web vitals, seo, speed, image optimize, compress, object cache, redis, memcached, database cleaner
4
  Requires at least: 4.0
5
  Tested up to: 6.0.1
6
+ Stable tag: 5.0.0.1
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl.html
9
 
250
 
251
  == Changelog ==
252
 
253
+ = 5.0.0.1 - Jul 26 2022 =
254
+ * 🔥🐞**Cloud** Fixed an issue with the cloud request timestamp update which causes a usage sync failure. (Great thanks to Kevin)
255
+
256
  = 5.0 - Jul 25 2022 =
257
  * 🌱**VPI** Added Viewport Images feature to LiteSpeed Options metabox on Post Edit page.
258
  * 🌱**CDN** Added Auto CDN Setup feature for simple QUIC.cloud CDN setup. (Kevin)
src/root.cls.php CHANGED
@@ -582,6 +582,7 @@ abstract class Root {
582
  }
583
  $new_summary = array_merge( $existing_summary, $data ?: array() );
584
  // self::debug2( 'Save after Reloaded summary', $new_summary );
 
585
 
586
  self::update_option( '_summary', $new_summary );
587
  }
582
  }
583
  $new_summary = array_merge( $existing_summary, $data ?: array() );
584
  // self::debug2( 'Save after Reloaded summary', $new_summary );
585
+ static::cls()->_summary = $new_summary;
586
 
587
  self::update_option( '_summary', $new_summary );
588
  }