Skip to content

Commit 7dd5234

Browse files
author
Hai Zheng
committed
v7.0.1 prepare
1 parent 6158ca8 commit 7dd5234

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

litespeed-cache.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* Text Domain: litespeed-cache
1313
* Domain Path: /lang
1414
*
15-
* Copyright (C) 2015-2024 LiteSpeed Technologies, Inc.
15+
* Copyright (C) 2015-2025 LiteSpeed Technologies, Inc.
1616
*
1717
* This program is free software: you can redistribute it and/or modify
1818
* it under the terms of the GNU General Public License as published by

readme.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,9 @@ You can report security bugs through the Patchstack Vulnerability Disclosure Pro
261261
* **Crawler** Dropped non-WebP/AVIF crawler if Next Gen Images are being used.
262262
* **Debug** Added a Click to copy logs button under Debug tab.
263263

264+
= 7.0.1 - Apr 8 2025 =
265+
* **Page Optimize** Migrate legacy data to append trailing slash for better compatibility with v7.0-optimized UCSS/CCSS data.
266+
264267
= 7.0.0.1 - Mar 27 2025 =
265268
* **GUI** Resolved a banner message display error in certain old version cases.
266269
* **GUI** Fixed a continual error banner when site doesn't use QC.

src/data.cls.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class Data extends Root
2525
'4.4.4-b1' => array('litespeed_update_4_4_4'),
2626
'5.3-a5' => array('litespeed_update_5_3'),
2727
'7.0-b26' => array('litespeed_update_7'),
28-
'7.1-b1' => array('litespeed_update_7_1'),
28+
'7.0.1-b1' => array('litespeed_update_7_0_1'),
2929
);
3030

3131
private $_db_site_updater = array(

src/data.upgrade.func.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717

1818
/**
1919
* Migrate v7.0- url_files URL from no trailing slash to trailing slash
20-
* @since 7.1
20+
* @since 7.0.1
2121
*/
22-
function litespeed_update_7_1()
22+
function litespeed_update_7_0_1()
2323
{
2424
global $wpdb;
25-
Debug2::debug('[Data] v7.1 upgrade started');
25+
Debug2::debug('[Data] v7.0.1 upgrade started');
2626

2727
$tb_url = $wpdb->prefix . 'litespeed_url';
2828
$tb_exists = $wpdb->get_var("SHOW TABLES LIKE '" . $tb_url . "'");

tpl/toolbox/beta_test.tpl.php

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

77
// Existing public version list
88
$v_list = array(
9+
'7.0.1',
910
'7.0.0.1',
1011
'6.5.4',
1112
'6.4.1',

0 commit comments

Comments
 (0)