Skip to content

Commit

Permalink
Merge pull request #1137 from matomo-org/new-release-5.0.7
Browse files Browse the repository at this point in the history
new release 5.0.7
  • Loading branch information
diosmosis authored Jun 9, 2024
2 parents 5c0e2fa + 0e9e209 commit 0cbddae
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 8 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
== Changelog ===

= 5.0.7 =
* Bug fix: setting an email report's segment to "All Visits" did not work properly.
* Update core Matomo to version 5.0.3.
* Workaround bug in the SMTP2GO WordPress plugin causing PDF email reports to be sent without the attached report.
* Change PHP CLI diagnostic to avoid showing users an "error" that has no effect on Matomo's ability to function.
* Better error handling for Matomo cron tasks.
* Add a simple new setup wizard for the Matomo Marketplace for new users.

= 5.0.6 =
* Display previously inaccessible Matomo plugin per-site settings in new settings tabs.
* Added a notice to the WP plugins admin displaying whether deleting the plugin will delete analytics data or not.
Expand Down
2 changes: 1 addition & 1 deletion matomo.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Description: Privacy friendly, GDPR compliant and self-hosted. Matomo is the #1 Google Analytics alternative that gives you control of your data. Free and secure.
* Author: Matomo
* Author URI: https://matomo.org
* Version: 5.0.6
* Version: 5.0.7
* Domain Path: /languages
* WC requires at least: 2.4.0
* WC tested up to: 8.8.3
Expand Down
4 changes: 2 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
Contributors: matomoteam
Tags: matomo,analytics,statistics,stats,ecommerce
Requires at least: 4.8
Tested up to: 6.5.2
Stable tag: 5.0.6
Tested up to: 6.5.4
Stable tag: 5.0.7
Requires PHP: 7.2.5
License: GPLv3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions tests/e2e/pageobjects/wp-admin/plugins-admin.page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,16 @@ class PluginsAdminPage extends Page {
window.jQuery('.subsubsub').hide();
});
}

async hidePluginVersion() {
await browser.execute(() => {
window.jQuery('.plugin-version-author-uri').each(function () {
window.jQuery(this).html(
window.jQuery(this).html().replace(/Version \d+\.\d+\.\d+/g, 'Version REMOVED')
);
});
});
}
}

export default new PluginsAdminPage();
1 change: 1 addition & 0 deletions tests/e2e/wp-plugins-admin.e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ describe('WordPress Customizations > Plugins Admin', () => {
await PluginsAdmin.hideNonMatomoRows();
await PluginsAdmin.hideNotifications();
await PluginsAdmin.hidePluginFilters();
await PluginsAdmin.hidePluginVersion();
expect(
await browser.checkFullPageScreen(`wp-customizations.plugins-admin.data-deletion${trunkSuffix}`)
).toEqual(0);
Expand Down
2 changes: 1 addition & 1 deletion tests/phpunit/wpmatomo/wpstatistics/test-import.php
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ public function test_pages_found() {
return;
}

$possible_values = [ 156, 81, 77, 91 ];
$possible_values = [ 156, 81, 77, 90, 91 ];

$report = $this->fetch_report( 'Actions', 'getPageUrls' );
$this->assertContains( $report['reportData']->getRowsCount(), $possible_values );
Expand Down

0 comments on commit 0cbddae

Please sign in to comment.