Skip to content
This repository has been archived by the owner on Jul 28, 2022. It is now read-only.

Commit

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

## [3.9.0](https://github.com/sonata-project/SonataNotificationBundle/compare/3.8.0...3.9.0) - 2020-07-26
### Added
- [[#448](https://github.com/sonata-project/SonataNotificationBundle/pull/448)]
Added public alias
`Sonata\NotificationBundle\Controller\Api\MessageController` for
`sonata.notification.controller.api.message` service
([@wbloszyk](https://github.com/wbloszyk))

### Changed
- [[#452](https://github.com/sonata-project/SonataNotificationBundle/pull/452)]
SonataEasyExtendsBundle is now optional, using SonataDoctrineBundle is
preferred ([@jordisala1991](https://github.com/jordisala1991))
- [[#452](https://github.com/sonata-project/SonataNotificationBundle/pull/452)]
Use Laminas instead of deprecated Zend
([@jordisala1991](https://github.com/jordisala1991))

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

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

### Removed
- [[#451](https://github.com/sonata-project/SonataNotificationBundle/pull/451)]
Removed support for deprecated "rest" routing type
([@wbloszyk](https://github.com/wbloszyk))
- [[#450](https://github.com/sonata-project/SonataNotificationBundle/pull/450)]
Support for PHP < 7.2 ([@wbloszyk](https://github.com/wbloszyk))

## [3.8.0](https://github.com/sonata-project/SonataNotificationBundle/compare/3.7.0...3.8.0) - 2020-06-26
### Removed
- [[#440](https://github.com/sonata-project/SonataNotificationBundle/pull/440)]
Expand Down
2 changes: 1 addition & 1 deletion UPGRADE-3.x.md
@@ -1,7 +1,7 @@
UPGRADE 3.x
===========

UPGRADE FROM 3.x to 3.x
UPGRADE FROM 3.8 to 3.9
=======================

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

Expand Down

0 comments on commit d86ba34

Please sign in to comment.