From 4eb0cc7a3c34c59319a5a17d9e4af7b054259d90 Mon Sep 17 00:00:00 2001 From: Maxime Veber Date: Tue, 4 Jun 2024 09:30:05 +0200 Subject: [PATCH 1/3] :white_check_mark: Minor fix for exception test It was indeed throwing an exception... But not the one expected! --- tests/TestApplication/config/config.yaml | 2 ++ .../TestApplication/src/Controller/SimulateExceptionAction.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/TestApplication/config/config.yaml b/tests/TestApplication/config/config.yaml index 6581c29..f134205 100644 --- a/tests/TestApplication/config/config.yaml +++ b/tests/TestApplication/config/config.yaml @@ -54,6 +54,8 @@ services: TestApplication\Controller\TodoContainsAction: tags: ['controller.service_arguments'] + TestApplication\Controller\SimulateExceptionAction: + tags: ['controller.service_arguments'] TestApplication\Filters\TodoContainFilter: autoconfigure: true diff --git a/tests/TestApplication/src/Controller/SimulateExceptionAction.php b/tests/TestApplication/src/Controller/SimulateExceptionAction.php index 0d5ade2..e0a8e4b 100644 --- a/tests/TestApplication/src/Controller/SimulateExceptionAction.php +++ b/tests/TestApplication/src/Controller/SimulateExceptionAction.php @@ -11,7 +11,7 @@ class SimulateExceptionAction /** * Simulate an exception while processing a controller. */ - public function __invoke(EntityManagerInterface $manager, $word) + public function __invoke(EntityManagerInterface $manager) { throw new \Exception('oupsii, it\'s broken ! :D'); } From 577997a1a3f26e32e3e85585851f68397880ad41 Mon Sep 17 00:00:00 2001 From: Maxime Veber Date: Tue, 4 Jun 2024 09:32:14 +0200 Subject: [PATCH 2/3] :white_check_mark: Add PHP 8.3 to the CI --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6483566..c7c3772 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: name: Unit tests strategy: matrix: - php: [ 8.1, 8.2 ] + php: [ 8.1, 8.2, 8.3 ] os: [ ubuntu-latest ] include: - os: [ ubuntu-latest ] From 65a3cf18ec9b8ae5c85d6e7029d6f33706d1694d Mon Sep 17 00:00:00 2001 From: Maxime Veber Date: Tue, 4 Jun 2024 09:33:41 +0200 Subject: [PATCH 3/3] :memo: Prepare release 0.10.3 --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ec5dd83..f8a2ffe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.10.3] 2024-06-04 + +### Added +- Support for Symfony 7 +- Support for PHP 8.3 + +### Removed +- Support for PHP 7.4 + ## [0.10.2] 2023-09-03 ### Fixed