Skip to content

Commit a4bd5fa

Browse files
author
Hai Zheng
committed
[v] v7.9.1
1 parent 97bc7c4 commit a4bd5fa

4 files changed

Lines changed: 9 additions & 7 deletions

File tree

litespeed-cache.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: LiteSpeed Cache
44
* Plugin URI: https://www.litespeedtech.com/products/cache-plugins/wordpress-acceleration
55
* Description: High-performance page caching and site optimization from LiteSpeed
6-
* Version: 7.9.1-rc3
6+
* Version: 7.9.1
77
* Author: LiteSpeed Technologies
88
* Author URI: https://www.litespeedtech.com
99
* License: GPLv3
@@ -35,7 +35,7 @@
3535
return;
3636
}
3737

38-
! defined( 'LSCWP_V' ) && define( 'LSCWP_V', '7.9.1-rc3' );
38+
! defined( 'LSCWP_V' ) && define( 'LSCWP_V', '7.9.1' );
3939

4040
! defined( 'LSCWP_CONTENT_DIR' ) && define( 'LSCWP_CONTENT_DIR', WP_CONTENT_DIR );
4141
! defined( 'LSCWP_DIR' ) && define( 'LSCWP_DIR', __DIR__ . '/' ); // Full absolute path '/var/www/html/***/wp-content/plugins/litespeed-cache/' or MU

readme.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ Contributors: LiteSpeedTech
33
Tags: caching, optimize, performance, pagespeed, seo, image optimize, object cache, redis, memcached, database cleaner
44
Requires at least: 6.0
55
Requires PHP: 7.4
6-
Tested up to: 7.0
7-
Stable tag: 7.9
6+
Tested up to: 7.1
7+
Stable tag: 7.9.1
88
License: GPLv3
99
License URI: http://www.gnu.org/licenses/gpl.html
1010

@@ -265,8 +265,9 @@ Please don't report a suspected vulnerability in this support forum. Reporting d
265265
= 8.0 - Coming soon 2026 =
266266
* 🌱**OptiMax** OptiMax to maximize the page score.
267267

268-
= 7.9.1 - Aug 18 2026 =
268+
= 7.9.1 - Sep 1 2026 =
269269
* **Core** Aligned the runtime PHP and WordPress guards with the published minimum requirements.
270+
* **ESI** Prevented Guest Mode pages from creating ESI subrequests when an integration registered its ESI hooks before Guest Mode detection.
270271
* **ESI** Bound ESI execution to the signed query payload so POST parameters cannot replace validated block data.
271272
* **Image Optimize** Fixed a fatal error when the WordPress HTTP fallback could not download an image.
272273
* **Image Optimize** The image optimization callback is now verified by a QUIC.cloud signature instead of the source IP address, and every notified download location is validated before use.

src/esi.cls.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -475,8 +475,8 @@ public function sub_esi_block(
475475
return false;
476476
}
477477

478-
if (defined('LITESPEED_ESI_OFF')) {
479-
self::debug('[ESI] ESI OFF so force loading [block_id] ' . $block_id);
478+
if (defined('LITESPEED_ESI_OFF') || !defined('LITESPEED_ESI_INITED')) {
479+
self::debug('[ESI] ESI unavailable so force loading [block_id] ' . $block_id);
480480
do_action('litespeed_esi_load-' . $block_id, $params);
481481
return;
482482
}

tpl/toolbox/beta_test.tpl.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
// List of available public versions
1616
$v_list = array(
17+
'7.9.1',
1718
'7.9',
1819
'7.8.1',
1920
'7.8.0.1',

0 commit comments

Comments
 (0)