You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
today, I've noticed 2.18 breaks compatibility with Symfony 4.4 by introducing ApiPlatformOpenApiPass. It fails because on Symfony 4.4 there's no security.firewalls parameter, so the whole pass is skipped. Inside it sets some arguments on the lexik_jwt_authentication.api_platform.openapi.factory service. When this compiler pass is skipped, the 3 of 4 arguments are null in this service definition. It results in the following error:
I see three options:
a) Check if security.firewalls parameter exists, if not set it
b) Drop support for Symfony 4.4 (bad idea as it's a minor version)
c) Remove this service in the pass when the parameter doesn't exist
The text was updated successfully, but these errors were encountered:
Hello,
today, I've noticed
2.18
breaks compatibility with Symfony4.4
by introducingApiPlatformOpenApiPass
. It fails because on Symfony 4.4 there's nosecurity.firewalls
parameter, so the whole pass is skipped. Inside it sets some arguments on thelexik_jwt_authentication.api_platform.openapi.factory
service. When this compiler pass is skipped, the 3 of 4 arguments are null in this service definition. It results in the following error:I see three options:
a) Check if
security.firewalls
parameter exists, if not set itb) Drop support for Symfony 4.4 (bad idea as it's a minor version)
c) Remove this service in the pass when the parameter doesn't exist
The text was updated successfully, but these errors were encountered: