Skip to content

Commit 30aa306

Browse files
author
Tim Helfensdörfer
committed
Moved changelog to separate file
1 parent c8f05f3 commit 30aa306

File tree

2 files changed

+60
-57
lines changed

2 files changed

+60
-57
lines changed

CHANGELOG.md

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
## Changelog
2+
3+
### 1.5.1 (2019/07/22)
4+
5+
* Changed: Moved changelog to separate file
6+
7+
### 1.5.0 (2019/04/11)
8+
9+
* Changed: PHP >= 7.2 is now required
10+
* Changed: Added type hints
11+
* Fixed: Filter Limit
12+
13+
### 1.4.1 (2018/10/05)
14+
15+
* Added: Compatible to Matomo 3.6.1
16+
17+
### 1.4.0 (2018/10/05)
18+
19+
* Renamed to Matomo-PHP-API
20+
* The `Piwik` class is now called `Matomo`
21+
* Changed license from Apache 2.0 to MIT
22+
23+
### 1.2.2 (2016/09/17)
24+
25+
* Changed: Security fix
26+
27+
### 1.2.1 (2015/11/09)
28+
29+
* Added: Compatible to Piwik 2.15.1
30+
31+
### 1.2.0 (2015/05/03)
32+
33+
* Changed: Removed optional parameters for the methods and added optional parameters array. Some methods signatures changed, so please check your methods before upgrading.
34+
35+
For example `getUrlsForSocial($segment = '', $idSubtable = '')` is now `getUrlsForSocial($segment = '', $optional = [])`. So instead of calling `$matomo->getUrlsForSocial('browserCode==FF;country==DE', 4)` you have to call `$matomo->getUrlsForSocial('browserCode==FF;country==DE', ['idSubtable' => 4])`.
36+
37+
* Added: Compatible to Piwik 2.13.0
38+
39+
### 1.1.2 (2015/03/22)
40+
41+
* Fixed: Errors were not appended to error array
42+
* Changed: Requires PHP 5.4 ([5.3 is not supported anymore](http://php.net/archive/2014.php#id2014-08-14-1))
43+
* Added: Unit tests
44+
45+
### 1.1.1 (2015/02/18)
46+
47+
* Added: Get separate data entries for a date range without the range period parameter [#14](https://github.com/VisualAppeal/Matomo-PHP-API/issues/14)
48+
* Added: Compatible to Piwik 2.11
49+
50+
### 1.1.0 (2015/02/13)
51+
52+
* Changed: Support for PSR-4 autoloading
53+
54+
### 1.0.1 (2015/02/13)
55+
56+
* Fixed: Multiple bugs
57+
58+
### 1.0.0 (2014/12/13)
59+
60+
* Added: Compatibility to piwik 2.10.0

README.md

Lines changed: 0 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -13,63 +13,6 @@ A PHP wrapper class for the [Matomo](https://matomo.org/) API.
1313

1414
This library can be installed via composer: `composer require visualappeal/matomo-php-api`
1515

16-
## Changelog
17-
18-
### 1.5.0 (2019/04/11)
19-
20-
* Changed: PHP >= 7.2 is now required
21-
* Changed: Added type hints
22-
* Fixed: Filter Limit
23-
24-
### 1.4.1 (2018/10/05)
25-
26-
* Added: Compatible to Matomo 3.6.1
27-
28-
### 1.4.0 (2018/10/05)
29-
30-
* Renamed to Matomo-PHP-API
31-
* The `Piwik` class is now called `Matomo`
32-
* Changed license from Apache 2.0 to MIT
33-
34-
### 1.2.2 (2016/09/17)
35-
36-
* Changed: Security fix
37-
38-
### 1.2.1 (2015/11/09)
39-
40-
* Added: Compatible to Piwik 2.15.1
41-
42-
### 1.2.0 (2015/05/03)
43-
44-
* Changed: Removed optional parameters for the methods and added optional parameters array. Some methods signatures changed, so please check your methods before upgrading.
45-
46-
For example `getUrlsForSocial($segment = '', $idSubtable = '')` is now `getUrlsForSocial($segment = '', $optional = [])`. So instead of calling `$matomo->getUrlsForSocial('browserCode==FF;country==DE', 4)` you have to call `$matomo->getUrlsForSocial('browserCode==FF;country==DE', ['idSubtable' => 4])`.
47-
48-
* Added: Compatible to Piwik 2.13.0
49-
50-
### 1.1.2 (2015/03/22)
51-
52-
* Fixed: Errors were not appended to error array
53-
* Changed: Requires PHP 5.4 ([5.3 is not supported anymore](http://php.net/archive/2014.php#id2014-08-14-1))
54-
* Added: Unit tests
55-
56-
### 1.1.1 (2015/02/18)
57-
58-
* Added: Get separate data entries for a date range without the range period parameter [#14](https://github.com/VisualAppeal/Matomo-PHP-API/issues/14)
59-
* Added: Compatible to Piwik 2.11
60-
61-
### 1.1.0 (2015/02/13)
62-
63-
* Changed: Support for PSR-4 autoloading
64-
65-
### 1.0.1 (2015/02/13)
66-
67-
* Fixed: Multiple bugs
68-
69-
### 1.0.0 (2014/12/13)
70-
71-
* Added: Compatibility to piwik 2.10.0
72-
7316
## Usage
7417

7518
### Create an instance of matomo

0 commit comments

Comments
 (0)