-
Notifications
You must be signed in to change notification settings - Fork 263
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
Allow Symfony 6 #408
Allow Symfony 6 #408
Conversation
Kocal
commented
Jul 18, 2021
•
edited
Loading
edited
- Dropped Symfony 3.4, 5.0, 5.1 and 5.2 support
- Added Symfony 6 support
3454cd1
to
686e57f
Compare
Careful about that, as we should avoid releasing a version advocating support for Symfony 6 until the RC releases IMO (as the list of BC breaks is not final yet) |
Friendly reminder 🙂 Anything holding this back from being merged? |
.travis.yml
Outdated
- php: 8.0 | ||
env: | ||
- DEPENDENCIES=dev | ||
- SYMFONY_VERSION='6.0.x-dev' |
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.
- SYMFONY_VERSION='6.0.x-dev' | |
- SYMFONY_VERSION='6.0.*' |
?
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.
Yep, now I can change to *
since Symfony 6 has been released 👍
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.
I've re-added 6.0.x-dev
until Symfony 6.0.1 is released.
Hum, it looks like I can't type methods to make Symfony 6 happy without breaking Symfony <= 4.. should we drop support of Symfony 3.3 and 4? |
@Kocal how is the DoctrineBundle doing in that case? it still supports those versions of SF 🤔 |
@thePanz AFAIK they don't have to implement a Before a223ee7, I have the following error with Symfony 6 build:
And after a223ee7, I have the following error with Symfony 3.4/4.4/5.x builds:
Maybe the solution is to create a custom |
Actually Serializer return types have been relaxed after releasing 6.0 here. So this will be part of 6.0.1. Can you test if you can make it work with latest 6.0.x-dev? |
can you allow also PHP8.1 ? |
php 8.1 is allowed (^8.0), it just has to be added to travis |
Your right, i'm sorry. Any date for the sf6 support ? |
Maybe a similar solution to this is possible for symfony 4.4 support. briannesbitt/Carbon#2508 (comment) In my eyes a new major version php8 only with support for symfony 5.4 and 6.x should be created to lower the burden of the maintainers. |
Could you create a 3.0 branch with a sf6 support ? This bundle is the last one blocking my project upgrade. |
@Kocal The two remaining errors:
seem to be related to this change you introduced in a223ee7. You've reverted some of these changes in 40108d5, but not the supportsDenormalization bool return type. Could you also revert the return type on that method? It is also reverted in the Symfony PR that eased up the return types. Afterwards, we wait for Symfony 6.0.1 I guess 🙂 |
And Symfony 6.0.1 is here :) Any updates? |
symfony 6.0.1 has not removed the return type declarations from serializer but the ones in the normalizer interfaces, so this should be ready to be merged |
Hi, Sorry, this bundle has been under my radar for a long time. |
75b877b
to
37428f9
Compare
Hi @tobias-93, no worries! :) The PR has been rebased on latest master. I've removed Symfony 3.4 and 5.0/5.1/5.2 support since those versions are not maintened anymore. I would still need help with normalizers params/returns types conflicts. |
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.
I think this should fix the forward compatibility given the Symfony Bugfix as mentioned by @dreadnip
2ba57be
to
a3b7175
Compare
The CI is green, I've literally removed types on (de)normalizers... 😬 I think we can add them back when dropping support of Symfony 4.4 or/and 5.3. |
Good news. Congrat |
Co-authored-by: David Maicher <mail@dmaicher.de>
The way to be compatible with all versions is to support only PHP 7.2+ (PHP 7.1 does not support variance rules) and to add the return type in your class (but not the argument type). This way, you are compatible with both versions thanks to variance rules. |
Thanks @Kocal |