Skip to content

Commit 270d51d

Browse files
update changelog
1 parent d070e8f commit 270d51d

File tree

2 files changed

+3
-12
lines changed

2 files changed

+3
-12
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
# Changelog
22

3-
### 1.6.2 - Jan 21, 2025
3+
### 1.6.3 - Jan 21, 2025
44

55
- Schedule missing `koko_analytics_aggregate_stats` event.
66
- Ensure pageview counts are always added to the correct day, even if WP Cron stalls for more than 24 hours.
77
- Improved correctness of the realtime visitor count in case of WP Cron stalls.
88
- Move the temporary buffer file to its own directory inside the uploads directory.
99
- Bump HTTP request timeout for Jetpack importer up from 5 seconds to 90 seconds.
1010
- Fix division by zero if importing a single day of data with Jetpack Importer.
11+
- Fix syntax error on PHP 7.4 introduced in version 1.6.2
12+
- Do not delete database tables on plugin uninstall by default.
1113

1214

1315
### 1.6.1 - Jan 20, 2025

uninstall.php

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,6 @@
2020
delete_option("koko_analytics_realtime_pageview_count");
2121
delete_option('koko_analytics_jetpack_import_params');
2222

23-
// drop koko tables
24-
global $wpdb;
25-
$wpdb->query(
26-
"DROP TABLE IF EXISTS
27-
{$wpdb->prefix}koko_analytics_site_stats,
28-
{$wpdb->prefix}koko_analytics_post_stats,
29-
{$wpdb->prefix}koko_analytics_referrer_stats,
30-
{$wpdb->prefix}koko_analytics_dates,
31-
{$wpdb->prefix}koko_analytics_referrer_urls"
32-
);
33-
3423
// delete custom endpoint file
3524
if (file_exists(ABSPATH . '/koko-analytics-collect.php')) {
3625
unlink(ABSPATH . '/koko-analytics-collect.php');

0 commit comments

Comments
 (0)