-
Support for Sylius 1.12 has been added, it is now the recommended Sylius version to use with RefundPlugin.
-
Support for Sylius 1.10 has been dropped, upgrade your application to Sylius 1.11. or to Sylius 1.12.
-
Support for Symfony 6 has been added.
-
Support for Symfony 4.4 has been dropped.
-
Not passing the
$creditMemoFileNameGenerator
toSylius\RefundPlugin\Generator\CreditMemoPdfFileGenerator
constructor is deprecated since 1.3 version and will be prohibited in 2.0. -
Not passing the
$creditMemoPdfFileGenerator
, the$creditMemoFileManager
and the$hasEnabledPdfFileGenerator
toSylius\RefundPlugin\CommandHandler\GenerateCreditMemoHandler
constructor is deprecated since 1.3 version and will be prohibited in 2.0. -
Not passing the
$creditMemoFileResolver
and the$creditMemoFilePathResolver
toSylius\RefundPlugin\Sender\CreditMemoEmailSender
constructor is deprecated since 1.3 version and will be prohibited in 2.0. -
The first argument of
Sylius\RefundPlugin\Action\Admin\DownloadCreditMemoAction
andSylius\RefundPlugin\Action\Shop\DownloadCreditMemoAction
controllers has been changed:
public function __construct(
- private CreditMemoPdfFileGeneratorInterface $creditMemoPdfFileGenerator,
+ private CreditMemoFilePathResolverInterface $creditMemoFileResolver,
//...
) {
//...
}