This PR was merged into the 1.8-dev branch.
Discussion
----------
| Q | A
| --------------- | -----
| Branch? | 1.7
| Bug fix? | no
| New feature? | yes
| BC breaks? | no
| Deprecations? | no
| License | MIT
Update from : https://github.com/Sylius/Sylius/pull/11560
Commits
-------
47e412c4b2 Disable gpu
This PR was merged into the 1.8-dev branch.
Discussion
----------
| Q | A
| --------------- | -----
| Branch? | master
| Bug fix? | no
| New feature? | yes
| BC breaks? | no
| Deprecations? | no
| License | MIT
Api paths:
- [x] GET `/new-api/shipping-methods`
- [x] POST `/new-api/shipping-methods`
- [x] GET `/new-api/shipping-methods/{id}`
- [x] PUT `/new-api/shipping-methods/{id}`
- [x] DELETE `/new-api/shipping-methods/{id}`
- [x] PATCH `/new-api/shipping-methods/{id}/archive`
- [x] PATH `/new-api/shipping-methods/{id}/restore`
Commits
-------
9e04dc83c8 Modify ResponseChecker and ApiPlartformCilent
ab17f34d21 Add tests
d5372e087c Add new step for creating shipping method
This PR was merged into the 1.8-dev branch.
Discussion
----------
| Q | A
| --------------- | -----
| Branch? | master
| Bug fix? | no
| New feature? | yes
| BC breaks? | no
| Deprecations? | no
| License | MIT
AdminApi paths:
- [x] GET `/api/v{version}/shipping-methods/{id}`
Commits
-------
2a2c022d91 Add authorization test
This PR was merged into the 1.7-dev branch.
Discussion
----------
| Q | A
| --------------- | -----
| Branch? | master
| Bug fix? | yes
| New feature? | no
| BC breaks? | no
| Deprecations? | no
| License | MIT
Fix build and improve `getError()` more usable
Commits
-------
392982c6fc Add fix for getError() metchod
c659707a30 modify chrome travis run command
This PR was merged into the 1.7 branch.
Discussion
----------
| Q | A
| --------------- | -----
| Branch? | 1.7
| Bug fix? | no
| New feature? | no
| BC breaks? | no
| Deprecations? | no
| Related tickets |
| License | MIT
<!--
- Bug fixes must be submitted against the 1.6 or 1.7 branches (the lowest possible)
- Features and deprecations must be submitted against the master branch
- Make sure that the correct base branch is set
-->
Commits
-------
eb54c52702 Behat for reordering taxon feature
This PR was merged into the 1.7 branch.
Discussion
----------
| Q | A
| --------------- | -----
| Branch? | 1.7
| Bug fix? | yes
| New feature? | no
| BC breaks? | no
| Deprecations? | no
| License | MIT
<!--
- Bug fixes must be submitted against the 1.6 or 1.7 branches (the lowest possible)
- Features and deprecations must be submitted against the master branch
- Make sure that the correct base branch is set
-->
Commits
-------
6302ef131a Add ignore files to psalm
This PR was merged into the 1.7-dev branch.
Discussion
----------
| Q | A
| --------------- | -----
| Branch? | master
| Bug fix? | yes
| New feature? | no
| BC breaks? | no
| Deprecations? | no
| Related tickets |
| License | MIT
Commits
-------
534762ca35 fixed name to channelCode since we are sending code
This PR was merged into the 1.7 branch.
Discussion
----------
| Q | A
| --------------- | -----
| Branch? | 1.7
| Bug fix? | yes
| New feature? | no
| BC breaks? | no
| Deprecations? | no
| Related tickets | associated with https://github.com/symfony/symfony/issues/37027
| License | MIT
Commits
-------
a38c470ea1 [Maintenance] Add conflict to the 4.4.9 version of symfony/form
This PR was merged into the 1.8-dev branch.
Discussion
----------
OrderPaymentStateResolver should resolve awaiting_payment state when there is payment under processing. This is needed to handle asynchronous payment confirmation.
> For asynchronous payment methods, it can take up to several days to confirm whether the payment has been successful. During this time, the payment cannot be guaranteed. The status of the payment’s Charge object is initially set to pending, until the payment has been confirmed as successful or failed. ACH debits are an example of an asynchronous method: with these debits, it takes a few days to confirm that the payment has succeeded.
https://stripe.com/docs/sources#synchronous-or-asynchronous-confirmation
| Q | A
| --------------- | -----
| Branch? | 1.6
| Bug fix? | yes
| New feature? | no
| BC breaks? | no
| Deprecations? | no
| License | MIT
Commits
-------
1bc64d93d8 Resolve awaiting_payment state in resolver
b524ec8275 Add spec test
This PR was merged into the 1.7-dev branch.
Discussion
----------
| Q | A
| --------------- | -----
| Branch? | master
| Bug fix? | yes
| New feature? | no
| BC breaks? | no
| Deprecations? | no
| Related tickets | fixes#10466
| License | MIT
I suggest adding support for form helpers.
**By adding a helper in a back office form**
```php
->add('plainPassword', PasswordType::class, [
'label' => 'sylius.form.user.password.label',
'help' => 'sylius.form.user.password.help',
])
```
Look like (Without any other changes, css, ...)

**By adding a helper in a front office form**
```php
->add('newPassword', RepeatedType::class, [
'type' => PasswordType::class,
'first_options' => [
'label' => 'sylius.form.user_change_password.new',
'help' => 'sylius.form.user_change_password.help',
],
'second_options' => ['label' => 'sylius.form.user_change_password.confirmation'],
'invalid_message' => 'sylius.user.plainPassword.mismatch',
])
```
Look like (Without any other changes, css, ...)

WDYT ?
Commits
-------
a357f86796 add form helper
This PR was merged into the 1.7 branch.
Discussion
----------
| Q | A
| --------------- | -----
| Branch? | 1.7
| Bug fix? | no
| New feature? | no
| BC breaks? | no
| Deprecations? | no
| Related tickets | fixes#9924
| License | MIT
Commits
-------
85389791aa Update order processor documentation