diff --git a/CHANGELOG.md b/CHANGELOG.md index 5218540d6c6fe3668092290624c3da9a154e7230..a9628625ac92604d7731b6de03ab28e2571ab328 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,8 @@ This is a changelog for Piwik platform developers. All changes for our HTTP API' * We fixed a bug where the API method `Sites.getPatternMatchSites` only returned a very limited number of websites by default. We now return all websites by default unless a limit is specified specifically. ### Deprecations -* The API method `SitesManager.getSitesIdWithVisits` has been deprecated and will be removed in Piwik 3.0 +* The HTTP API method `SitesManager.getSitesIdWithVisits` has been deprecated and will be removed in Piwik 3.0 +* The HTTP API method `API.getLastDate` has been deprecated and will be removed in Piwik 3.0 * The API method `\Piwik\Plugin::getListHooksRegistered()` has been deprecated and will be removed in Piwik 3.0. Use `\Piwik\Plugin::registerEvents()` instead. * The following events have been deprecated and will be removed in Piwik 3.0. Use [dimensions](http://developer.piwik.org/guides/dimensions) instead. * `Tracker.existingVisitInformation` diff --git a/plugins/API/API.php b/plugins/API/API.php index 7027756ccde431ba500e55bc0a0a850d77da68d8..dcdacf40b2182381b544c07a7d16fef015cd57cc 100644 --- a/plugins/API/API.php +++ b/plugins/API/API.php @@ -413,6 +413,9 @@ class API extends \Piwik\Plugin\API $language, $idGoal, $legendAppendMetric, $labelUseAbsoluteUrl); } + /** + * @deprecated + */ public function getLastDate($date, $period) { $lastDate = Range::getLastDate($date, $period); diff --git a/tests/PHPUnit/Unit/DeprecatedMethodsTest.php b/tests/PHPUnit/Unit/DeprecatedMethodsTest.php index 442280cb8ddce81cab6a3d5c4ca6c44d7c195e58..8d797576d3c6a3620ae686d58d1687b568d52b3f 100644 --- a/tests/PHPUnit/Unit/DeprecatedMethodsTest.php +++ b/tests/PHPUnit/Unit/DeprecatedMethodsTest.php @@ -16,6 +16,7 @@ use Piwik\Version; use ReflectionClass; /** + * @group DeprecatedMethodsTest * @group Core */ class DeprecatedMethodsTest extends \PHPUnit_Framework_TestCase @@ -70,6 +71,7 @@ class DeprecatedMethodsTest extends \PHPUnit_Framework_TestCase $this->assertDeprecatedMethodIsRemovedInPiwik3('\Piwik\Menu\MenuAbstract', 'add'); $this->assertDeprecatedMethodIsRemovedInPiwik3('\Piwik\Archive', 'getDataTableFromArchive'); $this->assertDeprecatedMethodIsRemovedInPiwik3('\Piwik\Plugin', 'getListHooksRegistered'); + $this->assertDeprecatedMethodIsRemovedInPiwik3('\Piwik\Plugins\API\API', 'getLastDate'); } private function assertDeprecatedMethodIsRemoved($className, $method, $removalDate)