-
Notifications
You must be signed in to change notification settings - Fork 16
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
Add support for Doctrine ORM 3 #34
base: master
Are you sure you want to change the base?
Conversation
@debesha Sorry to bother you but have you had a chance to take a look at this? |
Co-authored-by: NanoSector <[email protected]>
This pull request is still a work in progress |
@debesha Thank you, I've marked this PR as a draft because there is still the open question on how to safely perform this upgrade. Since updating the class with new parameter types might break the ORM 2.x compatibility (which we have not been able to test as we have no ORM 2.x project), I'd be a bit hesitant to immediately merge this into a release. |
Unfortunately, I won't be able to make a proper investigation on how is it safe to merge the PR |
Understandable. I think a good course of action would be to include some tests which test that the bundle can be integrated properly into various Symfony + Doctrine combinations; perhaps testing against Symfony 5.4 + ORM 2.x and Symfony 7.1 + ORM 3 is a good start. I'll have a look later this week if I get the chance |
Whoa, Ok, so why did you approve it? |
This allows installation on Doctrine ORM 3 and adjusts an overridden method for ORM 3 compatibility. Fixes #29
This is untested on ORM 2.
I am unsure how you'd like to handle this upgrade. In my opinion this can go either of two ways:
What do you think?