Skip to content
This repository has been archived by the owner on Jan 21, 2020. It is now read-only.

Releases: zfcampus/zf-mvc-auth

zf-mvc-auth 1.5.1

31 May 14:18
Compare
Choose a tag to compare

Added

  • Nothing.

Changed

  • Nothing.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • #143 provides an update to ZF\MvcAuth\Factory\OAuth2ServerFactory to allow the zf-oauth2.options.use_openid_connect
    option (or adapter-specific setting options.use_openid_connect) to vary which class is used for an
    authorization_code grant type. If the setting is present and a boolean true value, the class
    OAuth2\OpenID\GrantType\AuthorizationCode will be used instead of OAuth2\GrantType\AuthorizationCode.

zf-mvc-auth 1.5.0

02 May 19:07
Compare
Choose a tag to compare

Added

  • #137 adds support for zend-permissions-rbac 3.0.

  • #137 adds support for PHP 7.1 and 7.2.

Changed

  • Nothing.

Deprecated

  • Nothing.

Removed

  • #137 removes support for HHVM.

Fixed

  • #136 provides changes to the OAuth2Adapter that prevent hitting
    the database twice when the token is valid.

zf-mvc-auth 1.4.3

30 Sep 15:51
Compare
Choose a tag to compare

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

03 Aug 20:37
Compare
Choose a tag to compare

Added

  • Nothing.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • #125 updates the MvcRouteListener to trigger events using triggerEventUntil() instead of using argument overloading on trigger(); this change ensures that the code will work with zend-eventmanager v3 properly.

zf-mvc-auth 1.4.1

25 Jul 15:31
Compare
Choose a tag to compare

Added

  • Nothing.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • #120 fixes the Module::onBootstrap() method to re-introduce attachment of the MvcRouteListener.
  • #119 fixes a comparisoin in DefaultResourceResolverListener::getIdentifier() whereby an identifier of 0 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

11 Jul 18:24
Compare
Choose a tag to compare

Added

  • #114 and #116 add support for both PHP 7 and version 3 components from Zend Framework (while retaining compatibility for version 2 components).

Deprecated

  • Nothing.

Removed

  • #116 removes support for PHP 5.5.

Fixed

  • Nothing.

zf-mvc-auth 1.3.2

11 Jul 18:13
Compare
Choose a tag to compare

Added

  • Nothing.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • #111 adds a check for the unset_refresh_token_after_use configuration flag when creating an OAuth2\Server instance, passing it to the instance when discovered.