From 50779d20bc2f6395c8060feb72de358d3a3f1da4 Mon Sep 17 00:00:00 2001 From: Thomas Steur Date: Mon, 24 Nov 2025 06:44:49 +0100 Subject: [PATCH 1/2] No longer disable Provider plugin automatically --- CHANGELOG.md | 3 +++ Commands/Process.php | 1 - plugin.json | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 953176e..bbfdf1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ ## Changelog +5.2.0 - 2025-11-24 +- No longer disable Provider plugin automatically. If performance issues occur, please disable it manually or install an ASN geolocation database (https://matomo.org/faq/how-to/setting-up-accurate-visitors-geolocation/). + 5.1.3 - 2025-09-01 - Add support for Sentinel password - Security hardening diff --git a/Commands/Process.php b/Commands/Process.php index 1290fa8..1a07a92 100644 --- a/Commands/Process.php +++ b/Commands/Process.php @@ -75,7 +75,6 @@ protected function doExecute(): int Log::unsetInstance(); $trackerEnvironment->getContainer()->get('Piwik\Access')->setSuperUserAccess(false); - $trackerEnvironment->getContainer()->get('Piwik\Plugin\Manager')->setTrackerPluginsNotToLoad(array('Provider')); Tracker::loadTrackerEnvironment(); $backend = Queue\Factory::makeBackend(); diff --git a/plugin.json b/plugin.json index 1875b6b..d932228 100644 --- a/plugin.json +++ b/plugin.json @@ -1,6 +1,6 @@ { "name": "QueuedTracking", - "version": "5.1.3", + "version": "5.2.0", "description": "Scale your large traffic Matomo service by queuing tracking requests in Redis or MySQL for better performance and reliability when experiencing peaks.", "theme": false, "keywords": ["tracker", "tracking", "queue", "redis"], From 1d16d4460b9a458b337bbb48b98752a2d086c6b4 Mon Sep 17 00:00:00 2001 From: Altamash Shaikh Date: Tue, 25 Nov 2025 13:01:39 +0530 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bbfdf1c..1310295 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ ## Changelog -5.2.0 - 2025-11-24 +5.2.0 - 2025-11-25 - No longer disable Provider plugin automatically. If performance issues occur, please disable it manually or install an ASN geolocation database (https://matomo.org/faq/how-to/setting-up-accurate-visitors-geolocation/). 5.1.3 - 2025-09-01