Skip to content

Commit

Permalink
refs #5987 fix test which proofs issue is fixed now and added change …
Browse files Browse the repository at this point in the history
…to changlog
  • Loading branch information
tsteur committed Aug 12, 2014
1 parent 94a5d3e commit bbdd5be
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 9 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ This is a changelog for Piwik platform developers. All changes for our HTTP API'
`$setting->transform = function ($value) { return Common::sanitizeInputValue($value); }`
* Config setting `disable_merged_assets` moved from `Debug` section to `Development`. The updater will automatically change the section for you.
* `API.getRowEvolution` will throw an exception if a report is requested that does not have a dimension, for instance `VisitsSummary.get`. This is a fix as an invalid format was returned before see [#5951](https://github.com/piwik/piwik/issues/5951)
* `MultiSites.getAll` returns from now on always an array of websites. In the past it returned a single object and it didn't contain all properties in case only one website was found which was a bug see [#5987](https://github.com/piwik/piwik/issues/5987)

### Deprecations
The following events are considered as deprecated and the new structure should be used in the future. We have not scheduled when those events will be removed but probably in Piwik 3.0 which is not scheduled yet and won't be soon. New features will be added only to the new classes.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
<?xml version="1.0" encoding="utf-8" ?>
<result>
<nb_visits>2</nb_visits>
<nb_actions>3</nb_actions>
<label>Site AAAAAA</label>
<visits_evolution>0%</visits_evolution>
<actions_evolution>0%</actions_evolution>
<pageviews_evolution>0%</pageviews_evolution>
<revenue_evolution>0%</revenue_evolution>
<nb_pageviews>3</nb_pageviews>
<revenue>0</revenue>
<row>
<nb_visits>2</nb_visits>
<nb_actions>3</nb_actions>
<label>Site AAAAAA</label>
<visits_evolution>0%</visits_evolution>
<actions_evolution>0%</actions_evolution>
<pageviews_evolution>0%</pageviews_evolution>
<revenue_evolution>0%</revenue_evolution>
<nb_pageviews>3</nb_pageviews>
<revenue>0</revenue>
<group />
<main_url>http://piwik.net</main_url>
<idsite>1</idsite>
</row>
</result>

1 comment on commit bbdd5be

@mattab
Copy link
Member

@mattab mattab commented on bbdd5be Aug 12, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice fix and good point to add it to CHANGELOG.md

Please sign in to comment.