From 47772c937bf32baa1ad2af3dbf96e70354a64d59 Mon Sep 17 00:00:00 2001 From: Matthieu Napoli <matthieu@mnapoli.fr> Date: Wed, 4 Feb 2015 10:11:15 +1300 Subject: [PATCH] Changelog update --- CHANGELOG.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 73b01fece3..ebc0fbb1af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,9 +9,6 @@ This is a changelog for Piwik platform developers. All changes for our HTTP API' * The following deprecated event has been removed: `TaskScheduler.getScheduledTasks` * Special handling for operating system `Windows` has been removed. Like other operating systems all versions will now only be reported as `Windows` with versions like `XP`, `7`, `8`, etc. * Reporting for operating systems has been adjusted to report information according to browser information. Visitor details now contain: `operatingSystemName`, `operatingSystemIcon`, `operatingSystemCode` and `operatingSystemVersion` -* The `Piwik\Registry` class has been removed in favor of using the container: - * `Registry::get('auth')` is replaced by `StaticContainer::get('Piwik\Auth')` - * `Registry::set('auth', $auth)` is replaced by `StaticContainer::getContainer()->set('Piwik\Auth', $auth)` ### Deprecations * The following methods have been deprecated in favor of the new `Piwik\Intl` component: @@ -25,6 +22,9 @@ This is a changelog for Piwik platform developers. All changes for our HTTP API' * The following classes have been deprecated: * `Piwik\TaskScheduler`: use `Piwik\Scheduler\Scheduler` instead * `Piwik\ScheduledTask`: use `Piwik\Scheduler\Task` instead +* The `Piwik\Registry` class has been removed in favor of using the container: + * `Registry::get('auth')` should be replaced with `StaticContainer::get('Piwik\Auth')` + * `Registry::set('auth', $auth)` should be replaced with `StaticContainer::getContainer()->set('Piwik\Auth', $auth)` ### New features * You can now generate UI / screenshot tests using the command `generate:test` -- GitLab