Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenaka <diosmosis@users.noreply.github.com>2015-08-31 21:19:27 +0300
committerBenaka <diosmosis@users.noreply.github.com>2015-08-31 21:19:27 +0300
commit1b91a510bac0f7641d15e428972d0de5c5b550f8 (patch)
tree27b70b0a09803dae7717d4a0bf019ae3330b5c00 /CHANGELOG.md
parent4aafb7ec7edf1baaff4356dcd6288ea2e718d790 (diff)
parent67b2eedc770dfe8df86372cbaae47dd60d4acb2a (diff)
Merge pull request #8571 from piwik/8066
Fixes #8066, do not use SQL query in CronArchive to find websites with traffic since last successful archiving since it can take 6+ hours, instead use fast query for each individual website and use shorter timeframe for visits check.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md5
1 files changed, 4 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e22b56d36e..0d70ab9f3a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,7 +9,7 @@ This is a changelog for Piwik platform developers. All changes for our HTTP API'
* We fixed a bug where the API method `Sites.getPatternMatchSites` only returned a very limited number of websites by default. We now return all websites by default unless a limit is specified specifically.
### Deprecations
-
+* The API method `SitesManager.getSitesIdWithVisits` has been deprecated and will be removed in Piwik 3.0
* The following events have been deprecated and will be removed in Piwik 3.0. Use [dimensions](http://developer.piwik.org/guides/dimensions) instead.
* `Tracker.existingVisitInformation`
* `Tracker.getVisitFieldsToPersist`
@@ -22,6 +22,9 @@ This is a changelog for Piwik platform developers. All changes for our HTTP API'
### Internal Change
* The option `branch` of the console command `development:sync-system-test-processed` was removed as it is no longer needed.
+### APIs
+* There is a new event `CronArchive.getIdSitesNotUsingTracker` that allows you to set a list of idSites that do not use the Tracker API to make sure we archive these sites if needed.
+
## Piwik 2.14.0
### Breaking Changes