-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
Change ProxyCacheWarmer::warmUp signature #53128
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
Conversation
Hey! I see that this is your first PR. That is great! Welcome! Symfony has a contribution guide which I suggest you to read. In short:
Review the GitHub status checks of your pull request and try to solve the reported issues. If some tests are failing, try to see if they are failing because of this change. When two Symfony core team members approve this change, it will be merged and you will become an official Symfony contributor! I am going to sit back now and wait for the reviews. Cheers! Carsonbot |
This won't fix the issue since the faulty combination is still allowed, so that composer can still select it, isn't it? What about making the bridge compatible with 7.0 instead? This requires a BC break, but it shouldn't affect anybody IMHO: that class/method isn't extended by anyone 🤞 |
I thought about updating |
no need to since .0 will be replaced by .1 |
works for me, we already did that in the Serializer and Translation components in #50391 |
I am not sure if I completely broke the process, but, I tried my best with what Nicolas and Christian said 😅 |
Agreed, we should make this classes final in 7.1 |
Hey! I see that this is your first PR. That is great! Welcome! Symfony has a contribution guide which I suggest you to read. In short:
Review the GitHub status checks of your pull request and try to solve the reported issues. If some tests are failing, try to see if they are failing because of this change. When two Symfony core team members approve this change, it will be merged and you will become an official Symfony contributor! I am going to sit back now and wait for the reviews. Cheers! Carsonbot |
Thank you @llupa. |
I ended up with a composer.lock that has
"symfony/doctrine-bridge:v6.4.0"
and"symfony/http-kernel:v7.0.1"
, this combination results in a fatal syntax error:I opened this PR as a starting point to "fix" this, I already wondered if the conflict should also be put over
doctrine-bridge
. Happy to do changes as needed.