diff --git a/UPGRADE-1.12.md b/UPGRADE-1.12.md index 2a145eda63..a6c52c1501 100644 --- a/UPGRADE-1.12.md +++ b/UPGRADE-1.12.md @@ -2,6 +2,13 @@ 1. The `Sylius\Component\User\Model\UserInterface` extends the `Symfony\Component\PasswordHasher\Hasher\PasswordHasherAwareInterface` interface to fix the compatibility with Symfony 6. +2. The constructor of `Sylius\Component\Product\Resolver\DefaultProductVariantResolver` has been modified, a new argument has been added : + + ```php + public function __construct( + private ?ProductVariantRepositoryInterface $productVariantRepository = null, + ) + ``` # UPGRADE FROM `v1.12.10` TO `v1.12.11`