Skip to content

Latest commit

 

History

History
101 lines (64 loc) · 2.49 KB

CHANGELOG.md

File metadata and controls

101 lines (64 loc) · 2.49 KB

Changelog

All notable changes to this project will be documented in this file, in reverse chronological order by release.

1.4.1 - TBD

Added

  • Nothing.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • Nothing.

1.4.0 - 2016-07-10

Added

  • #149 adds support for usage of ext/mongodb with ZF\OAuth2\Adapter\MongoAdapter; users will need to also install a compatibility package to do so: composer require alcaeus/mongo-php-adapter
  • #141 and #148 update the component to allow usage with v3 releases of Zend Framework components on which it depends, while maintaining backwards compatibility with v2 components.
  • #141 and #148 add support for PHP 7.
  • #122 adds support for token revocation via the /oauth/revoke path. The path expects a POST request as either urlencoded or JSON values with the parameters:
    • token, the access token to revoke
    • token_type_hint => access_token to indicate an access token is being revoked.
  • #146 updates the AuthController to catch ZF\ApiProblem\Exception\ProblemExceptionInterface instances thrown by the OAuth2 server and return ApiProblemResponses.

Deprecated

  • Nothing.

Removed

  • #141 removes support for PHP 5.5.

Fixed

  • Nothing.

1.3.3 - 2016-07-07

Added

  • Nothing.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • #147 fixes an issue in the AuthControllerFactory introduced originally by a change in zend-mvc (and since corrected in that component). The patch to AuthControllerFactory makes it forwards compatible with zend-servicemanager v3, and prevents the original issue from recurring in the future.
  • #144 removes an unused variable from the receive-code template.

1.3.2 - 2016-06-24

Added

  • Nothing.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • #120 fixes a typo in the ZF\OAuth2\Provider\UserId\AuthenticationService which prevented returning of the user identifier.