Skip to content

Commit

Permalink
2.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentLanglet committed Nov 6, 2021
1 parent c77d8f1 commit c592b13
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [2.15.0](https://github.com/sonata-project/SonataSeoBundle/compare/2.14.0...2.15.0) - 2021-11-06
### Added
- [[#603](https://github.com/sonata-project/SonataSeoBundle/pull/603)] Add `Sonata\SeoBundle\Block\Breadcrumb\BreadcrumbBlockService` ([@core23](https://github.com/core23))

### Changed
- [[#623](https://github.com/sonata-project/SonataSeoBundle/pull/623)] Add upgrade information to `BaseBreadcrumbMenuBlockService` ([@core23](https://github.com/core23))

### Deprecated
- [[#603](https://github.com/sonata-project/SonataSeoBundle/pull/603)] Deprecate `Sonata\SeoBundle\BreadcrumbInterface` ([@core23](https://github.com/core23))

## [2.14.0](https://github.com/sonata-project/SonataSeoBundle/compare/2.13.1...2.14.0) - 2021-09-26
### Added
- [[#596](https://github.com/sonata-project/SonataSeoBundle/pull/596)] Added `priority` to `sonata.breadcrumb` tag ([@core23](https://github.com/core23))
Expand Down
8 changes: 4 additions & 4 deletions src/Block/Breadcrumb/BaseBreadcrumbMenuBlockService.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public function handleContext($context)
}

/**
* @deprecated since sonata-project/seo-bundle 2.x, to be removed in 3.0.
* @deprecated since sonata-project/seo-bundle 2.15, to be removed in 3.0.
*/
public function getName()
{
Expand All @@ -84,7 +84,7 @@ public function configureSettings(OptionsResolver $resolver)
/**
* @return FactoryInterface
*
* @final since sonata-project/seo-bundle 2.x
* @final since sonata-project/seo-bundle 2.15
*/
protected function getFactory()
{
Expand All @@ -94,7 +94,7 @@ protected function getFactory()
/**
* @return string
*
* @deprecated since sonata-project/seo-bundle 2.x, to be removed in 3.0.
* @deprecated since sonata-project/seo-bundle 2.15, to be removed in 3.0.
*/
protected function getContext()
{
Expand All @@ -106,7 +106,7 @@ protected function getContext()
*
* @return ItemInterface
*
* @deprecated since sonata-project/seo-bundle 2.x, to be removed in 3.0.
* @deprecated since sonata-project/seo-bundle 2.15, to be removed in 3.0.
*/
protected function getRootMenu(BlockContextInterface $blockContext)
{
Expand Down
2 changes: 1 addition & 1 deletion src/BreadcrumbInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
use Sonata\BlockBundle\Block\Service\BlockServiceInterface;

/**
* @deprecated since sonata-project/seo-bundle 2.x, to be removed in 3.0. Use Sonata\SeoBundle\Block\Breadcrumb\Breadcrumb instead.
* @deprecated since sonata-project/seo-bundle 2.15, to be removed in 3.0. Use Sonata\SeoBundle\Block\Breadcrumb\Breadcrumb instead.
*/
interface BreadcrumbInterface extends BlockServiceInterface
{
Expand Down

0 comments on commit c592b13

Please sign in to comment.