Antonio Pauletich
Antonio Pauletich
The behavior of flushing only one entity to the database via the `flush` method was deprecated a couple of years ago and was removed for Doctrine 3.0. https://github.com/doctrine/orm/blob/master/UPGRADE.md#bc-break-removed-entitymanagerflushentity-and-entitymanagerflushentities https://github.com/doctrine/orm/issues/6118
@ricohumme Some builds fail due to some message changes which were recently made in `league/oauth2-server` package. But some builds fail due to this change as IIRC this change is not...
Well, for example the interface from the league server says this for the access token repository: > Persists a new access token to permanent storage. https://github.com/thephpleague/oauth2-server/blob/8.1.1/src/Repositories/AccessTokenRepositoryInterface.php#L34 But I guess that...
That exception is created in [League\OAuth2\Server\Exception\OAuthServerException::invalidClient()](https://github.com/thephpleague/oauth2-server/blob/8.3.3/src/Exception/OAuthServerException.php#L152) and it's usually caused by the [validateClient method](https://github.com/trikoder/oauth2-bundle/blob/v3.2.0/League/Repository/ClientRepository.php#L41) returning `false` so my suggestion would be to check that first.
Symfony 5.2 will not trigger an actual error as Symfony BC policy states that deprecated stuff can be deleted/changed only on a new major release. This means that this will...
Np. I'll leave it open as a reminder that this needs to be fixed.
https://github.com/laravel/framework/pull/40306 got 17 thumbs up if that matters :stuck_out_tongue: That PR tried to address the same thing but in a different way and was closed because no transitive way forward...
> I feel like we could try to acomplish this by making a special interface that controllers implement to opt-in to the new behavior. I was thinking more along the...
Symfony also has its "vault" / secret security management system so that the sensitive environment variable values can be committed to version control -> https://symfony.com/doc/current/configuration/secrets.html It uses X25519 asymmetric cryptographic...
No, we've transferred this project under the PHP League / Symfony umbrella -> https://github.com/thephpleague/oauth2-server-bundle All new development and maintenance is being done there. This project is gonna be marked as...