Skip to content

Commit

Permalink
[Symfony Bundle] Fix the usage of a deprecated class (#1717)
Browse files Browse the repository at this point in the history
* Fix the usage of a deprecated class

* Add an entry to the CHANGELOG.md

* Update src/Integration/Symfony/Bundle/CHANGELOG.md

---------

Co-authored-by: Jérémy Derussé <[email protected]>
  • Loading branch information
javiereguiluz and jderusse authored Jun 3, 2024
1 parent c76bc39 commit 10875c9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## NOT RELEASED

### Changed

- Replace deprecated Extension by Symfony\Component\DependencyInjection\Extension\Extension
instead of the deprecated Symfony\Component\HttpKernel\DependencyInjection\Extension class

## 1.12.1

### Changed
Expand Down
2 changes: 1 addition & 1 deletion src/DependencyInjection/AsyncAwsExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\DependencyInjection\Definition;
use Symfony\Component\DependencyInjection\Extension\Extension;
use Symfony\Component\DependencyInjection\Reference;
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
use Symfony\Contracts\Cache\CacheInterface;
use Symfony\Contracts\HttpClient\HttpClientInterface;

Expand Down

0 comments on commit 10875c9

Please sign in to comment.