Skip to content

Commit

Permalink
3.26.0
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentLanglet committed Dec 28, 2021
1 parent f1f312f commit 9343568
Show file tree
Hide file tree
Showing 79 changed files with 90 additions and 79 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [3.26.0](https://github.com/sonata-project/SonataPageBundle/compare/3.25.0...3.26.0) - 2021-12-28
### Added
- [[#1392](https://github.com/sonata-project/SonataPageBundle/pull/1392)] Add `SnapshotInterface::getId()` method ([@core23](https://github.com/core23))
- [[#1369](https://github.com/sonata-project/SonataPageBundle/pull/1369)] Added `Sonata\BlockBundle\Model\BlockManagerInterface` ([@core23](https://github.com/core23))

### Changed
- [[#1392](https://github.com/sonata-project/SonataPageBundle/pull/1392)] Mark all classes as final ([@core23](https://github.com/core23))

### Deprecated
- [[#1369](https://github.com/sonata-project/SonataPageBundle/pull/1369)] Deprecated `Sonata\BlockBundle\Model\BlockManagerInterface` usage ([@core23](https://github.com/core23))

## [3.25.0](https://github.com/sonata-project/SonataPageBundle/compare/3.24.0...3.25.0) - 2021-12-04
### Added
- [[#1382](https://github.com/sonata-project/SonataPageBundle/pull/1382)] Added PHPStan and Psalm. ([@jordisala1991](https://github.com/jordisala1991))
Expand Down
4 changes: 2 additions & 2 deletions UPGRADE-3.x.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
UPGRADE 3.x
===========

UPGRADE FROM 3.X to 3.X
=======================
UPGRADE FROM 3.25 to 3.26
=========================

### Closed API

Expand Down
2 changes: 1 addition & 1 deletion src/Admin/BlockAdmin.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
*
* @author Thomas Rabaix <[email protected]>
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class BlockAdmin extends BaseBlockAdmin
{
Expand Down
2 changes: 1 addition & 1 deletion src/Admin/Extension/CreateSnapshotAdminExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
use Sonata\PageBundle\Model\PageInterface;

/**
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class CreateSnapshotAdminExtension extends AbstractAdminExtension
{
Expand Down
2 changes: 1 addition & 1 deletion src/Admin/PageAdmin.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
*
* @author Thomas Rabaix <[email protected]>
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class PageAdmin extends AbstractAdmin
{
Expand Down
2 changes: 1 addition & 1 deletion src/Admin/SharedBlockAdmin.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
*
* @author Romain Mouillard <[email protected]>
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class SharedBlockAdmin extends BaseBlockAdmin
{
Expand Down
2 changes: 1 addition & 1 deletion src/Admin/SiteAdmin.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
*
* @author Thomas Rabaix <[email protected]>
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class SiteAdmin extends AbstractAdmin
{
Expand Down
2 changes: 1 addition & 1 deletion src/Admin/SnapshotAdmin.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
*
* @author Thomas Rabaix <[email protected]>
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class SnapshotAdmin extends AbstractAdmin
{
Expand Down
2 changes: 1 addition & 1 deletion src/Block/BlockContextManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @psalm-suppress InvalidExtendClass
* @phpstan-ignore-next-line
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class BlockContextManager extends BaseBlockContextManager
{
Expand Down
2 changes: 1 addition & 1 deletion src/Block/BreadcrumbBlockService.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
*
* @author Sylvain Deloux <[email protected]>
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class BreadcrumbBlockService extends BaseBreadcrumbMenuBlockService
{
Expand Down
2 changes: 1 addition & 1 deletion src/Block/ChildrenPagesBlockService.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
*
* @author Thomas Rabaix <[email protected]>
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class ChildrenPagesBlockService extends AbstractAdminBlockService
{
Expand Down
2 changes: 1 addition & 1 deletion src/Block/ContainerBlockService.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* @psalm-suppress InvalidExtendClass
* @phpstan-ignore-next-line
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class ContainerBlockService extends BaseContainerBlockService
{
Expand Down
2 changes: 1 addition & 1 deletion src/Block/PageListBlockService.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
use Symfony\Component\OptionsResolver\OptionsResolver;

/**
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class PageListBlockService extends AbstractAdminBlockService
{
Expand Down
2 changes: 1 addition & 1 deletion src/Block/SharedBlockBlockService.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
*
* @author Romain Mouillard <[email protected]>
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class SharedBlockBlockService extends AbstractAdminBlockService
{
Expand Down
2 changes: 1 addition & 1 deletion src/Cache/BlockEsiCache.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
*
* @author Thomas Rabaix <[email protected]>
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class BlockEsiCache extends VarnishCache
{
Expand Down
2 changes: 1 addition & 1 deletion src/Cache/BlockJsCache.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
*
* @author Thomas Rabaix <[email protected]>
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class BlockJsCache implements CacheAdapterInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Cache/BlockSsiCache.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
*
* @author Thomas Rabaix <[email protected]>
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class BlockSsiCache extends SsiCache
{
Expand Down
2 changes: 1 addition & 1 deletion src/CmsManager/CmsManagerSelector.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
*
* @author Thomas Rabaix <[email protected]>
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class CmsManagerSelector implements CmsManagerSelectorInterface, LogoutHandlerInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/CmsManager/CmsPageManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
*
* @author Thomas Rabaix <[email protected]>
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class CmsPageManager extends BaseCmsPageManager
{
Expand Down
2 changes: 1 addition & 1 deletion src/CmsManager/CmsSnapshotManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
*
* @author Thomas Rabaix <[email protected]>
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class CmsSnapshotManager extends BaseCmsPageManager
{
Expand Down
2 changes: 1 addition & 1 deletion src/CmsManager/DecoratorStrategy.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
*
* @author Thomas Rabaix <[email protected]>
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class DecoratorStrategy implements DecoratorStrategyInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Command/CleanupSnapshotsCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
/**
* Cleanups the deprecated snapshots.
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class CleanupSnapshotsCommand extends BaseCommand
{
Expand Down
2 changes: 1 addition & 1 deletion src/Command/CreateSiteCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
*
* @author Thomas Rabaix <[email protected]>
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class CreateSiteCommand extends BaseCommand
{
Expand Down
2 changes: 1 addition & 1 deletion src/Command/CreateSnapshotsCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
*
* @author Thomas Rabaix <[email protected]>
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class CreateSnapshotsCommand extends BaseCommand
{
Expand Down
2 changes: 1 addition & 1 deletion src/Command/DumpPageCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
/**
* Migrates the name setting of all blocks into a code setting.
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class DumpPageCommand extends BaseCommand
{
Expand Down
2 changes: 1 addition & 1 deletion src/Command/MigrateBlockNameSettingCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
/**
* Migrates the name setting of all blocks into a code setting.
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class MigrateBlockNameSettingCommand extends BaseCommand
{
Expand Down
2 changes: 1 addition & 1 deletion src/Command/MigrateToJsonTypeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
use Symfony\Component\Console\Output\OutputInterface;

/**
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class MigrateToJsonTypeCommand extends BaseCommand
{
Expand Down
2 changes: 1 addition & 1 deletion src/Command/RenderBlockCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
/**
* Migrates the name setting of all blocks into a code setting.
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class RenderBlockCommand extends BaseCommand
{
Expand Down
2 changes: 1 addition & 1 deletion src/Command/UpdateCoreRoutesCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
*
* @author Thomas Rabaix <[email protected]>
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class UpdateCoreRoutesCommand extends BaseCommand
{
Expand Down
2 changes: 1 addition & 1 deletion src/Consumer/CleanupSnapshotConsumer.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
/**
* Consumer class to cleanup snapshots by a given page.
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class CleanupSnapshotConsumer implements ConsumerInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Consumer/CleanupSnapshotsConsumer.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
/**
* Consumer class to cleanup snapshots.
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class CleanupSnapshotsConsumer implements ConsumerInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Consumer/CreateSnapshotConsumer.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
*
* @author Thomas Rabaix <[email protected]>
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class CreateSnapshotConsumer implements ConsumerInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Consumer/CreateSnapshotsConsumer.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
*
* @author Thomas Rabaix <[email protected]>
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class CreateSnapshotsConsumer implements ConsumerInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Controller/AjaxController.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
*
* @author Thomas Rabaix <[email protected]>
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class AjaxController
{
Expand Down
2 changes: 1 addition & 1 deletion src/Controller/BlockAdminController.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
*
* @author Thomas Rabaix <[email protected]>
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class BlockAdminController extends Controller
{
Expand Down
2 changes: 1 addition & 1 deletion src/Controller/BlockController.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
*
* @author Thomas Rabaix <[email protected]>
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class BlockController extends Controller
{
Expand Down
2 changes: 1 addition & 1 deletion src/Controller/PageAdminController.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
*
* @author Thomas Rabaix <[email protected]>
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class PageAdminController extends Controller
{
Expand Down
2 changes: 1 addition & 1 deletion src/Controller/PageController.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
*
* @author Thomas Rabaix <[email protected]>
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class PageController extends Controller
{
Expand Down
2 changes: 1 addition & 1 deletion src/Controller/SiteAdminController.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
*
* @author Thomas Rabaix <[email protected]>
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class SiteAdminController extends Controller
{
Expand Down
2 changes: 1 addition & 1 deletion src/Controller/SnapshotAdminController.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
*
* @author Thomas Rabaix <[email protected]>
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class SnapshotAdminController extends Controller
{
Expand Down
2 changes: 1 addition & 1 deletion src/DependencyInjection/Compiler/CacheCompilerPass.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
*
* @author Thomas Rabaix <[email protected]>
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class CacheCompilerPass implements CompilerPassInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
*
* @author Thomas Rabaix <[email protected]>
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class GlobalVariablesCompilerPass implements CompilerPassInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
*
* @author Olivier Paradis <[email protected]>
*
* @final since sonata-project/page-bundle 3.x
* @final since sonata-project/page-bundle 3.26
*/
class PageServiceCompilerPass implements CompilerPassInterface
{
Expand Down
Loading

0 comments on commit 9343568

Please sign in to comment.