This repository was archived by the owner on Jan 21, 2020. It is now read-only.
Releases: zfcampus/zf-mvc-auth
Releases · zfcampus/zf-mvc-auth
Release list
zf-mvc-auth 1.5.1
Added
- Nothing.
Changed
- Nothing.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
- #143 provides an update to
ZF\MvcAuth\Factory\OAuth2ServerFactoryto allow thezf-oauth2.options.use_openid_connect
option (or adapter-specific settingoptions.use_openid_connect) to vary which class is used for an
authorization_codegrant type. If the setting is present and a booleantruevalue, the class
OAuth2\OpenID\GrantType\AuthorizationCodewill 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
MvcRouteListenerto 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 of0was 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_useconfiguration flag when creating anOAuth2\Serverinstance, passing it to the instance when discovered.