Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Preparation for release 0.10.3 #77

Merged
merged 3 commits into from
Jun 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading