Skip to content

Commit f90c1dd

Browse files
authored
bump version to 5.6.0 for new release (#1335)
* bump version to 5.6.0 for new release * update minimum tested against versions and fix some tests * use older version of wp-statistics for php 7.2 * update expected screenshots
1 parent 20a4bd7 commit f90c1dd

14 files changed

+34
-32
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
== Changelog ===
22

3+
= 5.6.0 =
4+
* Update Matomo core to 5.6.1.
5+
* Add clear warning message if an adblocker is detected since many adblockers interfere with Matomo's reporting.
6+
* Slight redesign to Marketplace overview.
7+
* Ensure matomo language cookie is always set to current user's locale so changes users make to language settings will always be reflected in Matomo.
8+
* Bug fix: ensure the wp-statistics importer works with the newest version of wp-statistics.
9+
* Add current user locale to system report.
10+
* Bug fix: ensure user agents with commas can be excluded from tracking.
11+
312
= 5.3.3 =
413
* Fix regression causing fatal errors when ecommerce tracking is used but WooCommerce is not installed.
514
* Workaround infinite recursion problem in Matomo core that occurs when an AJAX method is not authorized to function.

docker-compose.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,6 @@ services:
3737
depends_on:
3838
- $BACKEND
3939
- mailer
40-
deploy:
41-
restart_policy:
42-
condition: on-failure
4340
extra_hosts:
4441
- "host.docker.internal:host-gateway"
4542

@@ -65,9 +62,6 @@ services:
6562
entrypoint: /usr/src/entrypoint.sh
6663
depends_on:
6764
- "$BACKEND"
68-
deploy:
69-
restart_policy:
70-
condition: on-failure
7165
nginx:
7266
image: nginx
7367
volumes:

matomo.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
* 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.
55
* Author: Matomo
66
* Author URI: https://matomo.org
7-
* Version: 5.3.3
7+
* Version: 5.6.0
88
* Domain Path: /languages
99
* WC requires at least: 2.4.0
10-
* WC tested up to: 10.3.5
10+
* WC tested up to: 10.3.6
1111
*
1212
* Matomo - free/libre analytics platform
1313
*

readme.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
Contributors: matomoteam
33
Tags: matomo,analytics,statistics,stats,ecommerce
44
Requires at least: 4.8
5-
Tested up to: 6.8.3
6-
Stable tag: 5.3.3
5+
Tested up to: 6.9.0
6+
Stable tag: 5.6.0
77
Requires PHP: 7.2.5
88
License: GPLv3 or later
99
License URI: https://www.gnu.org/licenses/gpl-3.0.html

scripts/local-dev-entrypoint.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -407,10 +407,8 @@ EOF
407407
echo "installing wp-statistics"
408408

409409
WP_STATS_VERSION=""
410-
if php -r "exit('$WORDPRESS_VERSION' !== 'trunk' && version_compare('$WORDPRESS_VERSION', '5.3', '<') ? 0 : 1);"; then
410+
if php -r "exit('$WORDPRESS_VERSION' !== 'trunk' && version_compare('$WORDPRESS_VERSION', '5.3', '<') ? 0 : 1);" || php -r "exit(version_compare(PHP_VERSION, '8.0', '<') ? 0 : 1);"; then
411411
WP_STATS_VERSION="--version=13.2.16"
412-
elif php -r "exit('$WORDPRESS_VERSION' !== 'trunk' && version_compare(PHP_VERSION, '8.0', '<') ? 0 : 1);"; then
413-
WP_STATS_VERSION="--version=14.5.2"
414412
fi
415413

416414
/var/www/html/wp-cli.phar --allow-root --path=/var/www/html/$WORDPRESS_FOLDER plugin install --activate wp-statistics $WP_STATS_VERSION
@@ -441,6 +439,7 @@ EOF
441439
if php -r 'exit(version_compare(PHP_VERSION, "7.3", "<") ? 0 : 1);'; then
442440
OCEANWP_VERSION="--version=3.5.5"
443441
fi
442+
444443
/var/www/html/wp-cli.phar --path=/var/www/html/$WORDPRESS_FOLDER --allow-root theme install oceanwp --activate $OCEANWP_VERSION
445444

446445
# setup woocommerce if requested
Lines changed: 2 additions & 2 deletions
Loading
Lines changed: 2 additions & 2 deletions
Loading
Lines changed: 2 additions & 2 deletions
Loading
Lines changed: 2 additions & 2 deletions
Loading
Lines changed: 2 additions & 2 deletions
Loading

0 commit comments

Comments
 (0)