diff --git a/Changelog.md b/Changelog.md index 7f72c61..a3ea1ed 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,10 +2,20 @@ The change log describes what is "Added", "Removed", "Changed" or "Fixed" between each release. -## Unreleased +## 0.12.2 + +### Added + +- Support for PHP 8 + +### Fixed + +- Add missing command definition #412 +- Fix typo in Tests/Functional/app/config/framework.yaml #413 ### Removed +- Support for Symfony 3 - Support for PHP 7.1 ## 0.12.1 diff --git a/Resources/config/console.yaml b/Resources/config/console.yaml index 88b82e4..dcbf06e 100644 --- a/Resources/config/console.yaml +++ b/Resources/config/console.yaml @@ -9,7 +9,7 @@ services: tags: - { name: console.command, command: translation:check-missing } - Translation\Bundle\Command\DeleteObsoleteCommand: + Translation\Bundle\Command\DeleteEmptyCommand: public: true arguments: - '@Translation\Bundle\Service\StorageManager' @@ -17,9 +17,9 @@ services: - '@Translation\Bundle\Catalogue\CatalogueManager' - '@Translation\Bundle\Catalogue\CatalogueFetcher' tags: - - { name: console.command, command: translation:delete-obsolete } + - { name: console.command, command: translation:delete-empty } - Translation\Bundle\Command\DeleteEmptyCommand: + Translation\Bundle\Command\DeleteObsoleteCommand: public: true arguments: - '@Translation\Bundle\Service\StorageManager' @@ -27,7 +27,7 @@ services: - '@Translation\Bundle\Catalogue\CatalogueManager' - '@Translation\Bundle\Catalogue\CatalogueFetcher' tags: - - { name: console.command, command: translation:delete-empty } + - { name: console.command, command: translation:delete-obsolete } Translation\Bundle\Command\DownloadCommand: public: true