You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Sylius 1.14 a new service id for the available checker was introduced, namely sylius.checker.inventory.availability. This is also the id being used most places (not here \Sylius\Bundle\InventoryBundle\DependencyInjection\Configuration::getConfigTreeBuilder though).
However, in \Sylius\Bundle\InventoryBundle\DependencyInjection\SyliusInventoryExtension the alias sylius.availability_checker is created and if you have decorated that id in your application, your decoration isn't applied anymore the way you'd expect.
The text was updated successfully, but these errors were encountered:
| Q | A
|-----------------|-----
| Branch? | 1.14
| Bug fix? | yes
| New feature? | no
| BC breaks? | no
| Deprecations? | no
| Related tickets | fixes#17606, after
#17306
| License | MIT
Indeed, the id used on other services was changed from
`sylius.availability_checker` to the new
`sylius.checker.inventory.availability` and it did not point to the
alias previously used, so this can create problems in end applications,
the proposed solution should solve this problem.
<!--
- Bug fixes must be submitted against the 1.13 branch
- Features and deprecations must be submitted against the 1.14 branch
- Features, removing deprecations and BC breaks must be submitted
against the 2.0 branch
- Make sure that the correct base branch is set
To be sure you are not breaking any Backward Compatibilities, check the
documentation:
https://docs.sylius.com/en/latest/book/organization/backward-compatibility-promise.html
-->
Sylius version affected: 1.14
In Sylius 1.14 a new service id for the available checker was introduced, namely
sylius.checker.inventory.availability
. This is also the id being used most places (not here\Sylius\Bundle\InventoryBundle\DependencyInjection\Configuration::getConfigTreeBuilder
though).However, in
\Sylius\Bundle\InventoryBundle\DependencyInjection\SyliusInventoryExtension
the aliassylius.availability_checker
is created and if you have decorated that id in your application, your decoration isn't applied anymore the way you'd expect.The text was updated successfully, but these errors were encountered: