Skip to content

Commit

Permalink
1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
greg0ire committed Apr 10, 2020
1 parent f5408fd commit 9d34060
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [1.3.0](https://github.com/sonata-project/form-extensions/compare/1.2.0...1.3.0) - 2020-04-10
### Added
- Added `Sonata\Form\Serializer\BaseSerializerHandler`
- Added `Sonata\Form\Serializer\BaseSerializerHandlerInterface`

## [1.2.0](https://github.com/sonata-project/form-extensions/compare/1.1.2...1.2.0) - 2020-03-21
### Added
- Added support for `twig/twig:^3.0`
Expand Down
2 changes: 1 addition & 1 deletion src/Type/BasePickerType.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public function __construct(MomentFormatConverter $formatConverter, $translator,
}

@trigger_error(sprintf(
'Not passing the request stack as argument 3 to %s() is deprecated since sonata-project/form-extensions 1.x and will be mandatory in 2.0.',
'Not passing the request stack as argument 3 to %s() is deprecated since sonata-project/form-extensions 1.2 and will be mandatory in 2.0.',
__METHOD__
), E_USER_DEPRECATED);
}
Expand Down
4 changes: 2 additions & 2 deletions src/Type/EqualType.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@
use Symfony\Component\OptionsResolver\OptionsResolver;

@trigger_error(
'The '.__NAMESPACE__.'\EqualType class is deprecated since version 1.x and will be removed in 2.0.'
'The '.__NAMESPACE__.'\EqualType class is deprecated since version 1.2 and will be removed in 2.0.'
.' Use Sonata\AdminBundle\Form\Type\Operator\EqualOperatorType instead.',
E_USER_DEPRECATED
);

/**
* NEXT_MAJOR: remove this class.
*
* @deprecated since sonata-project/form-extensions 1.x, to be removed with 2.0
* @deprecated since sonata-project/form-extensions 1.2, to be removed with 2.0
*/
final class EqualType extends AbstractType
{
Expand Down

0 comments on commit 9d34060

Please sign in to comment.