-
-
Notifications
You must be signed in to change notification settings - Fork 155
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix build #181
Fix build #181
Conversation
loic425
commented
Sep 8, 2020
Q | A |
---|---|
Bug fix? | yes |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Related tickets | |
License | MIT |
@lchrusciel What do you think about these fixes? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey Loic,
thanks for your work and fixes seem ok. However, I'm wondering why do we need to bump the state machine version? Not a big deal, but we are using 0.3
in Sylius right now.
composer.json
Outdated
@@ -39,7 +39,7 @@ | |||
"symfony/validator": "^4.4|^5.0", | |||
"symfony/yaml": "^4.4|^5.0", | |||
"willdurand/hateoas-bundle": "^2.0", | |||
"winzou/state-machine-bundle": "^0.3|^0.4" | |||
"winzou/state-machine-bundle": "^0.4.3" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is it needed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's a bug on winzou with dependencies between state-machine and state-machine bundle. Maybe there's something better to do:
"winzou/state-machine-bundle": "^0.3.2|^0.4.3"
I'm gonna try that.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@lchrusciel But I think we have to improve CI configuration to test these two state machine versions.
Thanks, Loïc! 🥇 |