Skip to content

Commit

Permalink
4.15.0 (#1477)
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentLanglet authored Jan 8, 2022
1 parent 0214c9e commit 24d22bb
Show file tree
Hide file tree
Showing 17 changed files with 24 additions and 17 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [4.15.0](https://github.com/sonata-project/SonataUserBundle/compare/4.14.0...4.15.0) - 2022-01-08
### Deprecated
- [[#1471](https://github.com/sonata-project/SonataUserBundle/pull/1471)] Deprecated extending most of the classes of this bundle. ([@jordisala1991](https://github.com/jordisala1991))

### Fixed
- [[#1476](https://github.com/sonata-project/SonataUserBundle/pull/1476)] `User::__serialize()` and `User::__unserialize()` methods ([@VincentLanglet](https://github.com/VincentLanglet))

## [4.14.0](https://github.com/sonata-project/SonataUserBundle/compare/4.13.0...4.14.0) - 2021-12-28
### Deprecated
- [[#1446](https://github.com/sonata-project/SonataUserBundle/pull/1446)] Deprecated the integration with `sonata-project/GoogleAuthenticator` ([@jordisala1991](https://github.com/jordisala1991))
Expand Down
4 changes: 2 additions & 2 deletions UPGRADE-4.x.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
UPGRADE 4.x
===========

UPGRADE FROM 4.x to 4.x
=======================
UPGRADE FROM 4.14 to 4.15
=========================

### Mark classes as final

Expand Down
2 changes: 1 addition & 1 deletion src/Admin/Document/UserAdmin.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
use Sonata\UserBundle\Admin\Model\UserAdmin as BaseUserAdmin;

/**
* @final since sonata-project/user-bundle 4.x
* @final since sonata-project/user-bundle 4.15
*/
class UserAdmin extends BaseUserAdmin
{
Expand Down
2 changes: 1 addition & 1 deletion src/Admin/Entity/UserAdmin.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
use Sonata\UserBundle\Admin\Model\UserAdmin as BaseUserAdmin;

/**
* @final since sonata-project/user-bundle 4.x
* @final since sonata-project/user-bundle 4.15
*/
class UserAdmin extends BaseUserAdmin
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
use Symfony\Component\DependencyInjection\Reference;

/**
* @final since sonata-project/user-bundle 4.x
* @final since sonata-project/user-bundle 4.15
*
* @author Thomas Rabaix <thomas.rabaix@sonata-project.org>
*/
Expand Down
2 changes: 1 addition & 1 deletion src/DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
use Symfony\Component\Config\Definition\ConfigurationInterface;

/**
* @final since sonata-project/user-bundle 4.x
* @final since sonata-project/user-bundle 4.15
*
* This is the class that validates and merges configuration from your app/config files.
*
Expand Down
2 changes: 1 addition & 1 deletion src/DependencyInjection/SonataUserExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
use Symfony\Component\HttpKernel\DependencyInjection\Extension;

/**
* @final since sonata-project/user-bundle 4.x
* @final since sonata-project/user-bundle 4.15
*
* @author Thomas Rabaix <thomas.rabaix@sonata-project.org>
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Document/GroupManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
use Sonata\UserBundle\Model\GroupManagerInterface;

/**
* @final since sonata-project/user-bundle 4.x
* @final since sonata-project/user-bundle 4.15
*
* @author Hugo Briand <briand@ekino.com>
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Document/UserManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
use Sonata\UserBundle\Model\UserManagerInterface;

/**
* @final since sonata-project/user-bundle 4.x
* @final since sonata-project/user-bundle 4.15
*
* @author Hugo Briand <briand@ekino.com>
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Entity/GroupManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
use Sonata\UserBundle\Model\GroupManagerInterface;

/**
* @final since sonata-project/user-bundle 4.x
* @final since sonata-project/user-bundle 4.15
*
* @author Hugo Briand <briand@ekino.com>
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Entity/UserManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
use Sonata\UserBundle\Model\UserManagerInterface;

/**
* @final since sonata-project/user-bundle 4.x
* @final since sonata-project/user-bundle 4.15
*
* @author Hugo Briand <briand@ekino.com>
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Form/Transformer/RestoreRolesTransformer.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
use Symfony\Component\Form\DataTransformerInterface;

/**
* @final since sonata-project/user-bundle 4.x
* @final since sonata-project/user-bundle 4.15
*/
class RestoreRolesTransformer implements DataTransformerInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Form/Type/SecurityRolesType.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
use Symfony\Component\OptionsResolver\OptionsResolver;

/**
* @final since sonata-project/user-bundle 4.x
* @final since sonata-project/user-bundle 4.15
*/
class SecurityRolesType extends AbstractType
{
Expand Down
2 changes: 1 addition & 1 deletion src/Security/Authorization/Voter/UserAclVoter.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;

/**
* @final since sonata-project/user-bundle 4.x
* @final since sonata-project/user-bundle 4.15
*/
class UserAclVoter extends AclVoter
{
Expand Down
2 changes: 1 addition & 1 deletion src/Security/EditableRolesBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
use Symfony\Component\Translation\TranslatorInterface;

/**
* @final since sonata-project/user-bundle 4.x
* @final since sonata-project/user-bundle 4.15
*/
class EditableRolesBuilder
{
Expand Down
2 changes: 1 addition & 1 deletion src/SonataUserBundle.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
use Symfony\Component\HttpKernel\Bundle\Bundle;

/**
* @final since sonata-project/user-bundle 4.x
* @final since sonata-project/user-bundle 4.15
*/
class SonataUserBundle extends Bundle
{
Expand Down
2 changes: 1 addition & 1 deletion src/Twig/GlobalVariables.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
use Symfony\Component\DependencyInjection\ContainerInterface;

/**
* @final since sonata-project/user-bundle 4.x
* @final since sonata-project/user-bundle 4.15
*
* @author Thomas Rabaix <thomas.rabaix@sonata-project.org>
*/
Expand Down

0 comments on commit 24d22bb

Please sign in to comment.