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

Commit

Permalink
3.13.0 (#586)
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentLanglet committed Jun 30, 2021
1 parent 7f40e5e commit f7b95ca
Show file tree
Hide file tree
Showing 38 changed files with 45 additions and 38 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
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/).

## [3.13.0](https://github.com/sonata-project/SonataNotificationBundle/compare/3.12.0...3.13.0) - 2021-06-27
### Changed
- [[#580](https://github.com/sonata-project/SonataNotificationBundle/pull/580)] Marked classes to be final in the next major version ([@franmomu](https://github.com/franmomu))

### Fixed
- [[#577](https://github.com/sonata-project/SonataNotificationBundle/pull/577)] Fixed API form handling ([@franmomu](https://github.com/franmomu))

## [3.12.0](https://github.com/sonata-project/SonataNotificationBundle/compare/3.11.0...3.12.0) - 2021-03-24
### Added
- [[#564](https://github.com/sonata-project/SonataNotificationBundle/pull/564)] Support for "symfony/config:^5.2" ([@phansys](https://github.com/phansys))
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
=========================

### Close API

Expand Down
2 changes: 1 addition & 1 deletion src/Admin/MessageAdmin.php
Expand Up @@ -22,7 +22,7 @@

/**
* @phpstan-extends AbstractAdmin<\Sonata\NotificationBundle\Model\Message>
* @final since sonata-project/notification-bundle 3.x
* @final since sonata-project/notification-bundle 3.13
*/
class MessageAdmin extends AbstractAdmin
{
Expand Down
2 changes: 1 addition & 1 deletion src/Backend/AMQPBackend.php
Expand Up @@ -32,7 +32,7 @@
/**
* Consumer side of the rabbitMQ backend.
*
* @final since sonata-project/notification-bundle 3.x
* @final since sonata-project/notification-bundle 3.13
*/
class AMQPBackend implements BackendInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Backend/AMQPBackendDispatcher.php
Expand Up @@ -29,7 +29,7 @@
/**
* Producer side of the rabbitmq backend.
*
* @final since sonata-project/notification-bundle 3.x
* @final since sonata-project/notification-bundle 3.13
*/
class AMQPBackendDispatcher extends QueueBackendDispatcher
{
Expand Down
2 changes: 1 addition & 1 deletion src/Backend/BackendHealthCheck.php
Expand Up @@ -16,7 +16,7 @@
use Laminas\Diagnostics\Check\AbstractCheck;

/**
* @final since sonata-project/notification-bundle 3.x
* @final since sonata-project/notification-bundle 3.13
*/
class BackendHealthCheck extends AbstractCheck
{
Expand Down
2 changes: 1 addition & 1 deletion src/Backend/MessageManagerBackend.php
Expand Up @@ -24,7 +24,7 @@
use Symfony\Component\EventDispatcher\EventDispatcherInterface;

/**
* @final since sonata-project/notification-bundle 3.x
* @final since sonata-project/notification-bundle 3.13
*/
class MessageManagerBackend implements BackendInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Backend/MessageManagerBackendDispatcher.php
Expand Up @@ -21,7 +21,7 @@
/**
* Producer side of the doctrine backend.
*
* @final since sonata-project/notification-bundle 3.x
* @final since sonata-project/notification-bundle 3.13
*/
class MessageManagerBackendDispatcher extends QueueBackendDispatcher
{
Expand Down
2 changes: 1 addition & 1 deletion src/Backend/PostponeRuntimeBackend.php
Expand Up @@ -27,7 +27,7 @@
*
* @author Toni Uebernickel <tuebernickel@gmail.com>
*
* @final since sonata-project/notification-bundle 3.x
* @final since sonata-project/notification-bundle 3.13
*/
class PostponeRuntimeBackend extends RuntimeBackend
{
Expand Down
2 changes: 1 addition & 1 deletion src/Command/CleanupCommand.php
Expand Up @@ -20,7 +20,7 @@
use Symfony\Component\Console\Output\OutputInterface;

/**
* @final since sonata-project/notification-bundle 3.x
* @final since sonata-project/notification-bundle 3.13
*/
class CleanupCommand extends ContainerAwareCommand
{
Expand Down
2 changes: 1 addition & 1 deletion src/Command/ConsumerHandlerCommand.php
Expand Up @@ -26,7 +26,7 @@
use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;

/**
* @final since sonata-project/notification-bundle 3.x
* @final since sonata-project/notification-bundle 3.13
*/
class ConsumerHandlerCommand extends ContainerAwareCommand
{
Expand Down
2 changes: 1 addition & 1 deletion src/Command/CreateAndPublishCommand.php
Expand Up @@ -19,7 +19,7 @@
use Symfony\Component\Console\Output\OutputInterface;

/**
* @final since sonata-project/notification-bundle 3.x
* @final since sonata-project/notification-bundle 3.13
*/
class CreateAndPublishCommand extends ContainerAwareCommand
{
Expand Down
2 changes: 1 addition & 1 deletion src/Command/ListHandlerCommand.php
Expand Up @@ -18,7 +18,7 @@
use Symfony\Component\Console\Output\OutputInterface;

/**
* @final since sonata-project/notification-bundle 3.x
* @final since sonata-project/notification-bundle 3.13
*/
class ListHandlerCommand extends ContainerAwareCommand
{
Expand Down
2 changes: 1 addition & 1 deletion src/Command/ListQueuesCommand.php
Expand Up @@ -19,7 +19,7 @@
use Symfony\Component\Console\Output\OutputInterface;

/**
* @final since sonata-project/notification-bundle 3.x
* @final since sonata-project/notification-bundle 3.13
*/
class ListQueuesCommand extends ContainerAwareCommand
{
Expand Down
2 changes: 1 addition & 1 deletion src/Command/RestartCommand.php
Expand Up @@ -25,7 +25,7 @@
use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;

/**
* @final since sonata-project/notification-bundle 3.x
* @final since sonata-project/notification-bundle 3.13
*/
class RestartCommand extends ContainerAwareCommand
{
Expand Down
2 changes: 1 addition & 1 deletion src/Consumer/ConsumerEvent.php
Expand Up @@ -17,7 +17,7 @@
use Symfony\Contracts\EventDispatcher\Event;

/**
* @final since sonata-project/notification-bundle 3.x
* @final since sonata-project/notification-bundle 3.13
*/
class ConsumerEvent extends Event implements ConsumerEventInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Consumer/ConsumerReturnInfo.php
Expand Up @@ -18,7 +18,7 @@
*
* @author Kevin Nedelec <kevin.nedelec@ekino.com>
*
* @final since sonata-project/notification-bundle 3.x
* @final since sonata-project/notification-bundle 3.13
*/
class ConsumerReturnInfo
{
Expand Down
2 changes: 1 addition & 1 deletion src/Consumer/LoggerConsumer.php
Expand Up @@ -17,7 +17,7 @@
use Sonata\NotificationBundle\Exception\InvalidParameterException;

/**
* @final since sonata-project/notification-bundle 3.x
* @final since sonata-project/notification-bundle 3.13
*/
class LoggerConsumer implements ConsumerInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Consumer/Metadata.php
Expand Up @@ -14,7 +14,7 @@
namespace Sonata\NotificationBundle\Consumer;

/**
* @final since sonata-project/notification-bundle 3.x
* @final since sonata-project/notification-bundle 3.13
*/
class Metadata
{
Expand Down
2 changes: 1 addition & 1 deletion src/Consumer/SwiftMailerConsumer.php
Expand Up @@ -16,7 +16,7 @@
use Sonata\NotificationBundle\Model\MessageInterface;

/**
* @final since sonata-project/notification-bundle 3.x
* @final since sonata-project/notification-bundle 3.13
*/
class SwiftMailerConsumer implements ConsumerInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Controller/Api/MessageController.php
Expand Up @@ -28,7 +28,7 @@
/**
* @author Hugo Briand <briand@ekino.com>
*
* @final since sonata-project/notification-bundle 3.x
* @final since sonata-project/notification-bundle 3.13
*/
class MessageController
{
Expand Down
2 changes: 1 addition & 1 deletion src/Controller/MessageAdminController.php
Expand Up @@ -21,7 +21,7 @@
use Symfony\Component\Security\Core\Exception\AccessDeniedException;

/**
* @final since sonata-project/notification-bundle 3.x
* @final since sonata-project/notification-bundle 3.13
*/
class MessageAdminController extends CRUDController
{
Expand Down
Expand Up @@ -22,7 +22,7 @@
use Symfony\Component\DependencyInjection\Reference;

/**
* @final since sonata-project/notification-bundle 3.x
* @final since sonata-project/notification-bundle 3.13
*
* @internal since sonata-project/notification-bundle 4.0
*/
Expand Down
2 changes: 1 addition & 1 deletion src/DependencyInjection/Configuration.php
Expand Up @@ -20,7 +20,7 @@
use Symfony\Component\Config\Definition\ConfigurationInterface;

/**
* @final since sonata-project/notification-bundle 3.x
* @final since sonata-project/notification-bundle 3.13
*/
class Configuration implements ConfigurationInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/DependencyInjection/SonataNotificationExtension.php
Expand Up @@ -27,7 +27,7 @@
use Symfony\Component\HttpKernel\DependencyInjection\Extension;

/**
* @final since sonata-project/notification-bundle 3.x
* @final since sonata-project/notification-bundle 3.13
*/
class SonataNotificationExtension extends Extension
{
Expand Down
2 changes: 1 addition & 1 deletion src/Entity/MessageManager.php
Expand Up @@ -21,7 +21,7 @@
use Sonata\NotificationBundle\Model\MessageManagerInterface;

/**
* @final since sonata-project/notification-bundle 3.x
* @final since sonata-project/notification-bundle 3.13
*/
class MessageManager extends BaseEntityManager implements MessageManagerInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Event/DoctrineBackendOptimizeListener.php
Expand Up @@ -22,7 +22,7 @@
*
* @author Kevin Nedelec <kevin.nedelec@ekino.com>
*
* @final since sonata-project/notification-bundle 3.x
* @final since sonata-project/notification-bundle 3.13
*/
class DoctrineBackendOptimizeListener implements IterationListener
{
Expand Down
2 changes: 1 addition & 1 deletion src/Event/DoctrineOptimizeListener.php
Expand Up @@ -22,7 +22,7 @@
*
* @author Kevin Nedelec <kevin.nedelec@ekino.com>
*
* @final since sonata-project/notification-bundle 3.x
* @final since sonata-project/notification-bundle 3.13
*/
class DoctrineOptimizeListener implements IterationListener
{
Expand Down
2 changes: 1 addition & 1 deletion src/Event/IterateEvent.php
Expand Up @@ -23,7 +23,7 @@
*
* @author Kevin Nedelec <kevin.nedelec@ekino.com>
*
* @final since sonata-project/notification-bundle 3.x
* @final since sonata-project/notification-bundle 3.13
*/
class IterateEvent extends Event
{
Expand Down
2 changes: 1 addition & 1 deletion src/Exception/BackendNotFoundException.php
Expand Up @@ -14,7 +14,7 @@
namespace Sonata\NotificationBundle\Exception;

/**
* @final since sonata-project/notification-bundle 3.x
* @final since sonata-project/notification-bundle 3.13
*/
class BackendNotFoundException extends \RuntimeException
{
Expand Down
2 changes: 1 addition & 1 deletion src/Exception/HandlingException.php
Expand Up @@ -14,7 +14,7 @@
namespace Sonata\NotificationBundle\Exception;

/**
* @final since sonata-project/notification-bundle 3.x
* @final since sonata-project/notification-bundle 3.13
*/
class HandlingException extends \RuntimeException
{
Expand Down
2 changes: 1 addition & 1 deletion src/Exception/InvalidParameterException.php
Expand Up @@ -21,7 +21,7 @@ class InvalidParameterException extends CoreBundleException
}
} else {
/**
* @final since sonata-project/notification-bundle 3.x
* @final since sonata-project/notification-bundle 3.13
*/
class InvalidParameterException extends \RuntimeException
{
Expand Down
2 changes: 1 addition & 1 deletion src/Form/Type/MessageSerializationType.php
Expand Up @@ -16,7 +16,7 @@
use Sonata\Form\Type\BaseDoctrineORMSerializationType;

/**
* @final since sonata-project/notification-bundle 3.x
* @final since sonata-project/notification-bundle 3.13
*/
class MessageSerializationType extends BaseDoctrineORMSerializationType
{
Expand Down
2 changes: 1 addition & 1 deletion src/Iterator/AMQPMessageIterator.php
Expand Up @@ -19,7 +19,7 @@
use Sonata\NotificationBundle\Model\Message;

/**
* @final since sonata-project/notification-bundle 3.x
* @final since sonata-project/notification-bundle 3.13
*/
class AMQPMessageIterator implements MessageIteratorInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Iterator/ErroneousMessageIterator.php
Expand Up @@ -17,7 +17,7 @@
use Sonata\NotificationBundle\Model\MessageManagerInterface;

/**
* @final since sonata-project/notification-bundle 3.x
* @final since sonata-project/notification-bundle 3.13
*/
class ErroneousMessageIterator extends MessageManagerMessageIterator
{
Expand Down
2 changes: 1 addition & 1 deletion src/Iterator/IteratorProxyMessageIterator.php
Expand Up @@ -16,7 +16,7 @@
/**
* @author Toni Uebernickel <tuebernickel@gmail.com>
*
* @final since sonata-project/notification-bundle 3.x
* @final since sonata-project/notification-bundle 3.13
*/
class IteratorProxyMessageIterator implements MessageIteratorInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Selector/ErroneousMessagesSelector.php
Expand Up @@ -17,7 +17,7 @@
use Sonata\NotificationBundle\Model\MessageInterface;

/**
* @final since sonata-project/notification-bundle 3.x
* @final since sonata-project/notification-bundle 3.13
*/
class ErroneousMessagesSelector
{
Expand Down
2 changes: 1 addition & 1 deletion src/SonataNotificationBundle.php
Expand Up @@ -20,7 +20,7 @@
use Symfony\Component\HttpKernel\Bundle\Bundle;

/**
* @final since sonata-project/notification-bundle 3.x
* @final since sonata-project/notification-bundle 3.13
*/
class SonataNotificationBundle extends Bundle
{
Expand Down

0 comments on commit f7b95ca

Please sign in to comment.