Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 852 Bytes

UPGRADE-1.11.md

File metadata and controls

17 lines (11 loc) · 852 Bytes

UPGRADE FROM v1.10.X TO v1.11.0

Potential BC-break

In Sylius we are using WinzouStateMachine where as example sylius_order state machine has declared 14 callbacks on one state. If this will be customized and number of callbacks comes up to 16 and higher - the priority of callbacks will become randomized.

Sylius state machine callbacks from now on will have priorities declared. Ending at -100 with step of 100. Please note that those priorities are being executed in ascending order. You can find all the new priorities at Sylius/Bundle/CoreBundle/Resources/config/app/state_machine.

Be aware that if those priorities were customized, this would lead to problems. You should check and adjust priorities on your application.

API v2

For changes according to the API v2, please visit API v2 upgrade file.