Releases: API-Skeletons/zf-oauth2-doctrine-identity
3.0.1
3.0.0
Support for zendframework/zend-mvc-permission-rbac 3.0.0 which includes breaking changes.
2.0.1
Support zf-oauth2-doctrine 3.0
2.0.0
Release for PHP 7.1 onward.
1.0.7
Fixed incorrect exception reference and corrected access_token/id refererence from Identity
1 - The AccessTokenException class was incorrectly referenced.
2 - When enabling JWT access tokens (in conjunction with bshaffer/oauth2-server-php), the $identity['access_token'] does not exist. Rather, $identity['id'] can be used so long as the following two configs have been set:
use_jwt_access_tokens: true
store_encrypted_token_string: false
1.0.6
Compatible with mutatetablenames
1.0.5
Added
setUser
on AuthenticatedIdentity
to allow the identity to be assiged a single name
used in ACL for as a role for Apigility default ACL.
Deprecated
Nothing.
Removed
Nothing.
Fixed
Nothing.
1.0.4
Added
A third parameter to AuthenticatedIdentity constructor $name allows you to set a single name for a roleId used by Apigility' default ACL Authorization. This is not used by API-Skeletons/zf-oauth2-doctrine-permissions-acl
Deprecated
Nothing.
Removed
Nothing.
Fixed
Nothing.
1.0.3
The Identity needed a getId() function to return the id of the user authenticating to OAuth2.
This is now in place.
1.0.2
The Identity is now persisted in the MvcEvent too.