symfonycorp / connect

The SymfonyConnect official API SDK
https://connect.symfony.com/
MIT License
90 stars 40 forks source link

Fix compatibility with SecurityBundle 5.2 #109

Closed jderusse closed 3 years ago

jderusse commented 3 years ago

The EntryPointFactoryInterface interface has been removed in 5.2 (https://github.com/symfony/symfony/pull/39153)

from SY'mfony's changelog

  • [BC break] Removed EntryPointFactoryInterface, authenticators must now implement AuthenticationEntryPointInterface if they require autoregistration of a Security entry point.

The ConnectAuthenticator already implements the AuthenticationEntryPointInterface interface, so I think this patch should be enough, but I'm not sure. @wouterj could you please have a look?

fabpot commented 3 years ago

Thank you @jderusse.