LiteSpeed Cache - Version 2.9.4.1

Version Description

  • Feb 28 2019 =
  • Tag: Fixed issue where unnecessary warning potentially displayed after upgrade process when object cache is enabled.
Download this release

Release Info

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

Code changes from version 2.9.4 to 2.9.4.1

inc/litespeed-cache.class.php CHANGED
@@ -26,7 +26,7 @@ class LiteSpeed_Cache
26
  const NAME = 'LiteSpeed Cache' ;
27
  const PLUGIN_NAME = 'litespeed-cache' ;
28
  const PLUGIN_FILE = 'litespeed-cache/litespeed-cache.php' ;
29
- const PLUGIN_VERSION = '2.9.4' ;
30
 
31
  const PAGE_EDIT_HTACCESS = 'lscache-edit-htaccess' ;
32
 
26
  const NAME = 'LiteSpeed Cache' ;
27
  const PLUGIN_NAME = 'litespeed-cache' ;
28
  const PLUGIN_FILE = 'litespeed-cache/litespeed-cache.php' ;
29
+ const PLUGIN_VERSION = '2.9.4.1' ;
30
 
31
  const PAGE_EDIT_HTACCESS = 'lscache-edit-htaccess' ;
32
 
inc/utility.class.php CHANGED
@@ -17,6 +17,18 @@ class LiteSpeed_Cache_Utility
17
 
18
  const TYPE_SCORE_CHK = 'score_chk' ;
19
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  /**
21
  * Check page score
22
  *
17
 
18
  const TYPE_SCORE_CHK = 'score_chk' ;
19
 
20
+ /**
21
+ * Check if an URL or current page is REST req or not
22
+ *
23
+ * @since 2.9.3
24
+ * @deprecated 2.9.4 Moved to REST class
25
+ * @access public
26
+ */
27
+ public static function is_rest( $url = false )
28
+ {
29
+ return false ;
30
+ }
31
+
32
  /**
33
  * Check page score
34
  *
includes/litespeed-cache-utility.class.php CHANGED
@@ -17,6 +17,18 @@ class LiteSpeed_Cache_Utility
17
 
18
  const TYPE_SCORE_CHK = 'score_chk' ;
19
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  /**
21
  * Check page score
22
  *
17
 
18
  const TYPE_SCORE_CHK = 'score_chk' ;
19
 
20
+ /**
21
+ * Check if an URL or current page is REST req or not
22
+ *
23
+ * @since 2.9.3
24
+ * @deprecated 2.9.4 Moved to REST class
25
+ * @access public
26
+ */
27
+ public static function is_rest( $url = false )
28
+ {
29
+ return false ;
30
+ }
31
+
32
  /**
33
  * Check page score
34
  *
includes/litespeed-cache.class.php CHANGED
@@ -26,7 +26,7 @@ class LiteSpeed_Cache
26
  const NAME = 'LiteSpeed Cache' ;
27
  const PLUGIN_NAME = 'litespeed-cache' ;
28
  const PLUGIN_FILE = 'litespeed-cache/litespeed-cache.php' ;
29
- const PLUGIN_VERSION = '2.9.4' ;
30
 
31
  const PAGE_EDIT_HTACCESS = 'lscache-edit-htaccess' ;
32
 
26
  const NAME = 'LiteSpeed Cache' ;
27
  const PLUGIN_NAME = 'litespeed-cache' ;
28
  const PLUGIN_FILE = 'litespeed-cache/litespeed-cache.php' ;
29
+ const PLUGIN_VERSION = '2.9.4.1' ;
30
 
31
  const PAGE_EDIT_HTACCESS = 'lscache-edit-htaccess' ;
32
 
litespeed-cache.php CHANGED
@@ -15,7 +15,7 @@
15
  * Plugin Name: LiteSpeed Cache
16
  * Plugin URI: https://www.litespeedtech.com/products/cache-plugins/wordpress-acceleration
17
  * Description: High-performance page caching and site optimization from LiteSpeed
18
- * Version: 2.9.4
19
  * Author: LiteSpeed Technologies
20
  * Author URI: https://www.litespeedtech.com
21
  * License: GPLv3
15
  * Plugin Name: LiteSpeed Cache
16
  * Plugin URI: https://www.litespeedtech.com/products/cache-plugins/wordpress-acceleration
17
  * Description: High-performance page caching and site optimization from LiteSpeed
18
+ * Version: 2.9.4.1
19
  * Author: LiteSpeed Technologies
20
  * Author URI: https://www.litespeedtech.com
21
  * License: GPLv3
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: LiteSpeedTech
3
  Tags: caching, optimize, performance, pagespeed, seo, speed, image optimize, compress, object cache, redis, memcached, database cleaner
4
  Requires at least: 4.0
5
  Tested up to: 5.1
6
- Stable tag: 2.9.4
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl.html
9
 
@@ -283,6 +283,9 @@ Click on the `Advanced View` link at the top of the page, and several more tabs
283
 
284
  == Changelog ==
285
 
 
 
 
286
  = 2.9.4 - Feb 27 2019 =
287
  * 🐞<strong>REST</strong>: New REST class with better WP5 Gutenberg and internal REST call support when ESI is embedded.
288
  * <strong>ESI</strong>: ESI block ID is now in plain text in ESI URL parameters.
3
  Tags: caching, optimize, performance, pagespeed, seo, speed, image optimize, compress, object cache, redis, memcached, database cleaner
4
  Requires at least: 4.0
5
  Tested up to: 5.1
6
+ Stable tag: 2.9.4.1
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl.html
9
 
283
 
284
  == Changelog ==
285
 
286
+ = 2.9.4.1 - Feb 28 2019 =
287
+ * 🔥🐞<strong>Tag</strong>: Fixed issue where unnecessary warning potentially displayed after upgrade process when object cache is enabled.
288
+
289
  = 2.9.4 - Feb 27 2019 =
290
  * 🐞<strong>REST</strong>: New REST class with better WP5 Gutenberg and internal REST call support when ESI is embedded.
291
  * <strong>ESI</strong>: ESI block ID is now in plain text in ESI URL parameters.