This repository has been archived by the owner on Jan 21, 2020. It is now read-only.
Releases: zfcampus/zf-mvc-auth
Releases · zfcampus/zf-mvc-auth
zf-mvc-auth 1.5.1
Added
- Nothing.
Changed
- Nothing.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
- #143 provides an update to
ZF\MvcAuth\Factory\OAuth2ServerFactory
to allow thezf-oauth2.options.use_openid_connect
option (or adapter-specific settingoptions.use_openid_connect
) to vary which class is used for an
authorization_code
grant type. If the setting is present and a booleantrue
value, the class
OAuth2\OpenID\GrantType\AuthorizationCode
will be used instead ofOAuth2\GrantType\AuthorizationCode
.
zf-mvc-auth 1.5.0
zf-mvc-auth 1.4.3
Added
- Nothing.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
- #128 fixes an issue stemming from changes in the Admin API; controller service names are often written in configuration using dash, versus namespace, separators, which causes authorization lookups to fail. This version now converts dashes to namespace separators in the controller names when creating the ACL.
zf-mvc-auth 1.4.2
Added
- Nothing.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
- #125 updates the
MvcRouteListener
to trigger events usingtriggerEventUntil()
instead of using argument overloading ontrigger()
; this change ensures that the code will work with zend-eventmanager v3 properly.
zf-mvc-auth 1.4.1
Added
- Nothing.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
- #120 fixes the
Module::onBootstrap()
method to re-introduce attachment of theMvcRouteListener
. - #119 fixes a comparisoin in
DefaultResourceResolverListener::getIdentifier()
whereby an identifier of0
was incorrectly resulting in matching to a collection request. As collections and entities often have different permissions, this could lead to potential false-positiive authorization checks.
zf-mvc-auth 1.4.0
zf-mvc-auth 1.3.2
Added
- Nothing.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
- #111 adds a check for the
unset_refresh_token_after_use
configuration flag when creating anOAuth2\Server
instance, passing it to the instance when discovered.