Skip to content

Commit

Permalink
Merge pull request #77 from swagindustries/feature/php8-3
Browse files Browse the repository at this point in the history
Preparation for release 0.10.3
  • Loading branch information
Nek- authored Jun 4, 2024
2 parents 2b0e731 + 65a3cf1 commit 4e50e74
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 ]
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions tests/TestApplication/config/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ services:

TestApplication\Controller\TodoContainsAction:
tags: ['controller.service_arguments']
TestApplication\Controller\SimulateExceptionAction:
tags: ['controller.service_arguments']

TestApplication\Filters\TodoContainFilter:
autoconfigure: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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');
}
Expand Down

0 comments on commit 4e50e74

Please sign in to comment.