Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use unformatted / raw data for new All Websites dashboard #22751

Merged
merged 10 commits into from
Nov 21, 2024
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ The Product Changelog at **[matomo.org/changelog](https://matomo.org/changelog)*

## Matomo 5.2.0

### Breaking Changes

* The MultiSites API has been reworked. The previously incorrectly named metrics for the previous period now have correct names:
* `previous_Actions_nb_pageviews` => `previous_nb_pageviews`
* `previous_Goal_revenue` => `previous_revenue`
* `previous_Goal_nb_conversions` => `previous_nb_conversions`
* `previous_Goal_0_nb_conversions` => `previous_orders`
* `previous_Goal_0_revenue` => `previous_ecommerce_revenue`

## Deprecations

* The methods `Db::isOptimizeInnoDBSupported`, `Db::optimizeTables` have been deprecated. Use `Db\Schema::getInstance()->isOptimizeInnoDBSupported` and `Db\Schema::getInstance()->optimizeTables` instead
Expand Down
1 change: 0 additions & 1 deletion plugins/CoreHome/CoreHome.php
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,6 @@ public function getJsFiles(&$jsFiles)
$jsFiles[] = "libs/jqplot/jqplot-custom.min.js";
$jsFiles[] = "plugins/CoreHome/javascripts/color_manager.js";
$jsFiles[] = "plugins/CoreHome/javascripts/notification.js";
$jsFiles[] = "plugins/CoreHome/javascripts/numberFormatter.js";
$jsFiles[] = "plugins/CoreHome/javascripts/listingFormatter.js";

// we have to load these CorePluginsAdmin files here. If we loaded them in CorePluginsAdmin,
Expand Down
143 changes: 0 additions & 143 deletions plugins/CoreHome/javascripts/numberFormatter.js

This file was deleted.

Loading
Loading