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:
authormattab <matthieu.aubry@gmail.com>2016-12-05 10:52:02 +0300
committermattab <matthieu.aubry@gmail.com>2016-12-05 10:52:02 +0300
commitd97e3e9b8be8d27e4faca0869ef1f766474f0793 (patch)
tree0064b3a5ba9bbdb73795333f360d6737bd7c3150 /CHANGELOG.md
parent60df8547029d69f8279a11576a1573a1773e6362 (diff)
Don't change json2 format for Piwik 3
Reverts https://github.com/piwik/piwik/pull/10928/files Refs https://github.com/piwik/piwik/issues/8566
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md1
1 files changed, 0 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0acf77785c..6764613a89 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -12,7 +12,6 @@ Read more about migrating a plugin from Piwik 2.X to Piwik 3 in [our Migration g
### Breaking Changes
* The UserManager API methods do no longer return any `token_auth` properties when requesting a user
-* Reporting API: if you call the Reporting API requesting data in `json` format then you may be affected. The `json` formatting has changed, a bug was fixed so that API methods that return simple associative arrays like `array('name' => 'value', 'name2' => 'value2')` will now appear correctly as `{"name":"value","name2":"value2"}` in JSON API output instead of `[{"name":"value","name2":"value2"}]` (as it used to be in Piwik 2). API methods like **SitesManager.getSiteFromId** & **UsersManager.getUser** and others are affected.
* The menu classes `Piwik\Menu\MenuReporting` and `Piwik\Menu\MenuMain` have been removed
* The class `Piwik\Plugin\Widgets` has been removed and replaced by `Piwik\Widget\Widget`. For each widget one class is needed from now on. You can generate a widget via `./console generate:widget`.
* The class `Piwik\WidgetList` class has been moved to `Piwik\Widget\WidgetsList`.