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:
authordiosmosis <benakamoorthi@fastmail.fm>2014-08-25 06:54:58 +0400
committerdiosmosis <benakamoorthi@fastmail.fm>2014-08-25 06:55:34 +0400
commitd63595290a25f1920ba60f7aeafbd8e9e9f0b32e (patch)
treecfb6742e2e83d9f6b61eb0166dee11dbe0a569e6 /CHANGELOG.md
parentfb52fd827ebb2fc804c3da764acebbe3a844c248 (diff)
Refs #6057, add entry to changelog about breaking change caused by JSON formatter bug fix.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9507bf3838..e21a5280bf 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -15,6 +15,9 @@ We removed our own autoloader that was used to load Piwik files in favor of the
### New commmands
* `core:run-scheduled-tasks` Let's you run all scheduled tasks due to run at this time. Useful for instance when testing tasks.
+### Breaking Changes
+* A bug in JSON formatting was fixed so 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"}]`. API methods like **SitesManager.getSiteFromId** & **UsersManager.getUser** are affected
+
## Piwik 2.5.0
### Breaking Changes