Skip to content

Commit

Permalink
3.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
greg0ire committed Aug 5, 2020
1 parent 26ac478 commit 7458322
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 3 deletions.
49 changes: 49 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,55 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [3.13.0](https://github.com/sonata-project/SonataClassificationBundle/compare/3.12.1...3.13.0) - 2020-08-05
### Added
- [[#545](https://github.com/sonata-project/SonataClassificationBundle/pull/545)]
Added support for "friendsofsymfony/rest-bundle:^3.0"
([@wbloszyk](https://github.com/wbloszyk))
- [[#542](https://github.com/sonata-project/SonataClassificationBundle/pull/542)]
Added public alias
`Sonata\ClassificationBundle\Controller\Api\CategoryController` for
`sonata.classification.controller.api.category` service
([@wbloszyk](https://github.com/wbloszyk))
- [[#542](https://github.com/sonata-project/SonataClassificationBundle/pull/542)]
Added public alias
`Sonata\ClassificationBundle\Controller\Api\CollectionController` for
`sonata.classification.controller.api.collection` service
([@wbloszyk](https://github.com/wbloszyk))
- [[#542](https://github.com/sonata-project/SonataClassificationBundle/pull/542)]
Added public alias `Sonata\ClassificationBundle\Controller\Api\TagController`
for `sonata.classification.controller.api.tag` service
([@wbloszyk](https://github.com/wbloszyk))
- [[#542](https://github.com/sonata-project/SonataClassificationBundle/pull/542)]
Added public alias
`Sonata\ClassificationBundle\Controller\Api\ContextController` for
`sonata.classification.controller.api.context` service
([@wbloszyk](https://github.com/wbloszyk))

### Change
- [[#545](https://github.com/sonata-project/SonataClassificationBundle/pull/545)]
Support for deprecated "rest" routing type in favor for xml
([@wbloszyk](https://github.com/wbloszyk))

### Changed
- [[#536](https://github.com/sonata-project/SonataClassificationBundle/pull/536)]
SonataEasyExtendsBundle is now optional, using SonataDoctrineBundle is
preferred ([@jordisala1991](https://github.com/jordisala1991))

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

### Fixed
- [[#542](https://github.com/sonata-project/SonataClassificationBundle/pull/542)]
Fix RestFul API - `Class could not be determined for Controller identified`
Error ([@wbloszyk](https://github.com/wbloszyk))

### Removed
- [[#544](https://github.com/sonata-project/SonataClassificationBundle/pull/544)]
Support for Symfony < 4.4 ([@wbloszyk](https://github.com/wbloszyk))

## [3.12.1](https://github.com/sonata-project/SonataClassificationBundle/compare/3.12.0...3.12.1) - 2020-06-21
### Fixed
- [[#539](https://github.com/sonata-project/SonataClassificationBundle/pull/539)]
Expand Down
4 changes: 2 additions & 2 deletions UPGRADE-3.x.md
@@ -1,8 +1,8 @@
UPGRADE 3.x
===========

UPGRADE FROM 3.x to 3.x
=======================
UPGRADE FROM 3.12 to 3.13
=========================

### SonataEasyExtends is deprecated

Expand Down
2 changes: 1 addition & 1 deletion src/DependencyInjection/SonataClassificationExtension.php
Expand Up @@ -111,7 +111,7 @@ public function configureAdmin($config, ContainerBuilder $container)
public function registerDoctrineMapping(array $config)
{
@trigger_error(
'Using SonataEasyExtendsBundle is deprecated since sonata-project/classification-bundle 3.x. Please register SonataDoctrineBundle as a bundle instead.',
'Using SonataEasyExtendsBundle is deprecated since sonata-project/classification-bundle 3.13. Please register SonataDoctrineBundle as a bundle instead.',
E_USER_DEPRECATED
);

Expand Down

0 comments on commit 7458322

Please sign in to comment.