Skip to content

Commit

Permalink
4.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
greg0ire committed Jul 30, 2020
1 parent 409502c commit 782cdcd
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,30 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [4.7.0](https://github.com/sonata-project/SonataUserBundle/compare/4.6.0...4.7.0) - 2020-07-30
### Changed
- [[#1183](https://github.com/sonata-project/SonataUserBundle/pull/1183)]
SonataEasyExtendsBundle is now optional, using SonataDoctrineBundle is
preferred ([@jordisala1991](https://github.com/jordisala1991))

### Deprecated
- [[#1183](https://github.com/sonata-project/SonataUserBundle/pull/1183)] Using
SonataEasyExtendsBundle to add Doctrine mapping information
([@jordisala1991](https://github.com/jordisala1991))

### Fixed
- [[#1202](https://github.com/sonata-project/SonataUserBundle/pull/1202)] Fixed
wrong placeholder delimiters at ReST API controller `UserController`.
([@phansys](https://github.com/phansys))
- [[#1195](https://github.com/sonata-project/SonataUserBundle/pull/1195)] Fixed
passing "format' parameter to API routes.
([@phansys](https://github.com/phansys))
- [[#1194](https://github.com/sonata-project/SonataUserBundle/pull/1194)] Fixed
API route names. ([@phansys](https://github.com/phansys))

### Removed
- [[#1192](https://github.com/sonata-project/SonataUserBundle/pull/1192)] Support for PHP < 7.2 ([@wbloszyk](https://github.com/wbloszyk))

## [4.6.0](https://github.com/sonata-project/SonataUserBundle/compare/4.5.3...4.6.0) - 2020-06-29
### Added
- [[#1185](https://github.com/sonata-project/SonataUserBundle/pull/1185)] Added
Expand Down
2 changes: 1 addition & 1 deletion UPGRADE-4.x.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
UPGRADE 4.x
===========

UPGRADE FROM 4.x to 4.x
UPGRADE FROM 4.6 to 4.7
========================

### SonataEasyExtends is deprecated
Expand Down
2 changes: 1 addition & 1 deletion src/DependencyInjection/SonataUserExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ public function configureController($config, ContainerBuilder $container): void
public function registerDoctrineMapping(array $config): void
{
@trigger_error(
'Using this method is deprecated since sonata-project/user-bundle 4.x. You should instead register SonataDoctrineBundle and use `registerSonataDoctrineMapping()`',
'Using this method is deprecated since sonata-project/user-bundle 4.7. You should instead register SonataDoctrineBundle and use `registerSonataDoctrineMapping()`',
E_USER_DEPRECATED
);

Expand Down

0 comments on commit 782cdcd

Please sign in to comment.