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

Releases: zfcampus/zf-mvc-auth

zf-mvc-auth 1.5.1

Choose a tag to compare

@weierophinney weierophinney released this 31 May 14:18

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

Choose a tag to compare

@weierophinney weierophinney released this 02 May 19:07

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

Choose a tag to compare

@weierophinney weierophinney released this 30 Sep 15:51

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

Choose a tag to compare

@weierophinney weierophinney released this 03 Aug 20:37

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

Choose a tag to compare

@weierophinney weierophinney released this 25 Jul 15:31

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

Choose a tag to compare

@weierophinney weierophinney released this 11 Jul 18:24

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

Choose a tag to compare

@weierophinney weierophinney released this 11 Jul 18:13

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.