-
-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 1.6: (35 commits) Add conflict to behat/mink-selenium2-driver to fix the builds Update PR template Update supported branches in README file Generate changelog for v1.5.0 Bump Sylius 1.13 to stable v1.13.0 version Update README.md [Maintenance] Update builds [Maintenance] Slight fixes of 1.13 support Sylius 1.13 - Fix duplicated configuration key Sylius 1.13 - Add missing info about symfony workflow in readme Sylius 1.13 - Add info about state machine adapter in gh actions Sylius 1.13 - fix behats scenarios Sylius 1.13 - unlock sylius 13 version in gh actions Sylius 1.13 - try to fix problem with not existing service Sylius 1.13 - fix composer.json problem Sylius 1.13 - adapt state machine configuration per version Sylius 1.13 - add mailer configuration in the global config of test app Sylius 1.13 - add mailer configuration to the 1.13 version Sylius 1.13 - add workflow configuration only in 1.13, add workflow to the gh actions Sylius 1.13 - Update bundles.php in test application ...
- Loading branch information
Showing
322 changed files
with
897 additions
and
499 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
| Q | A | ||
| --------------- | ----- | ||
| Branch? | 1.3 (security fixes), 1.4 (bug fixes, improvements), 1.5 (new features) | ||
| Branch? | 1.4 (security fixes), 1.5 (bug fixes, improvements), 1.6 (new features) | ||
| Bug fix? | no/yes | ||
| New feature? | no/yes | ||
| Related tickets | fixes #X, partially #Y, mentioned in #Z |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# CHANGELOG | ||
|
||
### v1.5.0 (2024-04-26) | ||
|
||
- [#413](https://github.com/Sylius/RefundPlugin/issues/413) Adjust supported versions in README file ([@GSadee](https://github.com/GSadee)) | ||
- [#414](https://github.com/Sylius/RefundPlugin/issues/414) [RefundUnitsConverter] Change interface method signature ([@Rafikooo](https://github.com/Rafikooo)) | ||
- [#419](https://github.com/Sylius/RefundPlugin/issues/419) [Maintenance][CI] Disable php 8.0 with symfony 6 pipes ([@NoResponseMate](https://github.com/NoResponseMate)) | ||
- [#420](https://github.com/Sylius/RefundPlugin/issues/420) [Maintenance] Add missing deprecations to CreditMemoEmailSender ([@NoResponseMate](https://github.com/NoResponseMate)) | ||
- [#421](https://github.com/Sylius/RefundPlugin/issues/421) [Maintenance] Update License ([@NoResponseMate](https://github.com/NoResponseMate)) | ||
- [#423](https://github.com/Sylius/RefundPlugin/issues/423) Add missing factory for line items ([@NoResponseMate](https://github.com/NoResponseMate)) | ||
- [#424](https://github.com/Sylius/RefundPlugin/issues/424) Update plugin to sylius 1.13. ([@BartoszWojdalowicz](https://github.com/BartoszWojdalowicz)) | ||
- [#427](https://github.com/Sylius/RefundPlugin/issues/427) Bump Sylius 1.13 to stable v1.13.0 version ([@GSadee](https://github.com/GSadee)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# CONFLICTS | ||
|
||
This document explains why certain conflicts were added to `composer.json` and | ||
references related issues. | ||
|
||
- `behat/mink-selenium2-driver:>=1.7.0`: | ||
|
||
This version adds strict type to the `Behat\Mink\Driver\Selenium2Driver::visit($url)` method | ||
which causes a fatal error because the method signature is no longer compatible with the parent class. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
### UPGRADE FROM 1.4.X TO 1.5.0 | ||
|
||
1. Passing `$creditMemoPdfFileGenerator` and `$fileManager` to the constructor of | ||
`Sylius\RefundPlugin\Sender\CreditMemoEmailSender` as the first and third | ||
arguments respectively has been deprecated and will be prohibited in 2.0. | ||
|
||
2. The `Sylius\RefundPlugin\File\FileManagerInterface` interface, | ||
`Sylius\RefundPlugin\File\TemporaryFileManager` class and | ||
service with id `Sylius\RefundPlugin\File\TemporaryFileManager` | ||
have all been deprecated and will be removed in 2.0. There is no replacement. | ||
|
||
3. A factory for the `Sylius\RefundPlugin\Entity\LineItem` has been added with service id `Sylius\RefundPlugin\Factory\LineItemFactoryInterface`. | ||
It is recommended to use it instead of instantiating the `LineItem` directly. | ||
|
||
4. Not passing an instance of `Sylius\RefundPlugin\Factory\LineItemFactoryInterface` to the | ||
constructors of `Sylius\RefundPlugin\Converter\LineItem\OrderItemUnitLineItemsConverter` and | ||
`Sylius\RefundPlugin\Converter\LineItem\ShipmentLineItemsConverter` | ||
has been deprecated and will be prohibited in 2.0. | ||
|
||
5. Support for Sylius 1.13 has been added, it is now the recommended Sylius version to use with RefundPlugin. | ||
|
||
6. Support for Sylius 1.11 has been dropped, upgrade your application to [Sylius 1.12](https://github.com/Sylius/Sylius/blob/1.12/UPGRADE-1.12.md). | ||
or to [Sylius 1.13](https://github.com/Sylius/Sylius/blob/1.13/UPGRADE-1.13.md). | ||
|
||
7. Support for PHP 8.0 has been dropped. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.