From 0467cf673f12e3aca6182314011ec22931cc5cdf Mon Sep 17 00:00:00 2001 From: Victor Bocharsky Date: Fri, 21 Aug 2020 10:45:58 +0300 Subject: [PATCH 1/3] Prepare release 0.12.2 --- Changelog.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Changelog.md b/Changelog.md index 7f72c61..0709392 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,11 +2,12 @@ The change log describes what is "Added", "Removed", "Changed" or "Fixed" between each release. -## Unreleased +## 0.12.2 -### Removed +### Fixed -- Support for PHP 7.1 +- Add missing command definition #412 +- Fix typo in Tests/Functional/app/config/framework.yaml #413 ## 0.12.1 From f8d2ed2a7714cf25a667d1651b756c5951730a9a Mon Sep 17 00:00:00 2001 From: Victor Bocharsky Date: Fri, 21 Aug 2020 10:50:12 +0300 Subject: [PATCH 2/3] Fix order of commands in yaml definition --- Resources/config/console.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 From 6f83318a03bb97b6de609c55cfbc80510c45f65f Mon Sep 17 00:00:00 2001 From: Nyholm Date: Fri, 26 Mar 2021 19:59:33 +0100 Subject: [PATCH 3/3] Updated changelog --- Changelog.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Changelog.md b/Changelog.md index 0709392..a3ea1ed 100644 --- a/Changelog.md +++ b/Changelog.md @@ -4,11 +4,20 @@ The change log describes what is "Added", "Removed", "Changed" or "Fixed" betwee ## 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 ### Fixed