|
2 | 2 |
|
3 | 3 | All notable changes to this project will be documented in this file, in reverse chronological order by release. |
4 | 4 |
|
| 5 | +## 1.0.0alpha5 - 2018-05-07 |
| 6 | + |
| 7 | +### Added |
| 8 | + |
| 9 | +- [#30](https://github.com/zendframework/zend-expressive-authentication-oauth2/pull/30) |
| 10 | + adds the AuthenticationInterface to the config provider so OAuth works out of |
| 11 | + the box. Can always be overwritten in project configs. |
| 12 | +- [#38](https://github.com/zendframework/zend-expressive-authentication-oauth2/pull/38) |
| 13 | + added the the `/oauth` route configuration in docs |
| 14 | + |
| 15 | +### Changed |
| 16 | + |
| 17 | +- Nothing. |
| 18 | + |
| 19 | +### Deprecated |
| 20 | + |
| 21 | +- Nothing. |
| 22 | + |
| 23 | +### Removed |
| 24 | + |
| 25 | +- Nothing. |
| 26 | + |
| 27 | +### Fixed |
| 28 | + |
| 29 | +- [#21](https://github.com/zendframework/zend-expressive-authentication-oauth2/pull/21) |
| 30 | + fixes unknown user will throw an exception. When a user tries to use a |
| 31 | + username that doesn't exist in the database an exception is thrown instead of |
| 32 | + an invalid_credentials error. |
| 33 | +- [#22](https://github.com/zendframework/zend-expressive-authentication-oauth2/pull/22) |
| 34 | + fixes exception thrown when client secret is missing. When a client id is used |
| 35 | + that has no client_secret in the database an exception is thrown instead of an |
| 36 | + invalid_client error. |
| 37 | +- [#23](https://github.com/zendframework/zend-expressive-authentication-oauth2/pull/23) |
| 38 | + updates the token insert statements to match schema located in data/oauth2.php |
| 39 | +- [#37](https://github.com/zendframework/zend-expressive-authentication-oauth2/pull/37) |
| 40 | + fixes issue with script to generate keys writes to vendor dir |
| 41 | + |
| 42 | + |
5 | 43 | ## 0.4.0 - 2018-03-15 |
6 | 44 |
|
7 | 45 | ### Added |
@@ -50,7 +88,7 @@ All notable changes to this project will be documented in this file, in reverse |
50 | 88 | - [#17](https://github.com/zendframework/zend-expressive-authentication-oauth2/pull/17) |
51 | 89 | changes the constructor of each of the `Zend\Expressive\Authentication\OAuth2\OAuth2Adapter` |
52 | 90 | and `Zend\Expressive\Authentication\OAuth2\OAuth2Middleware` classes to accept |
53 | | - a callable `$responseFactory` instead of a `Psr\Http\Message\ResponseInterface` |
| 91 | + a callable `$responseFactory` instead of a `Psr\Http\Message\ResponseInterface` |
54 | 92 | response prototype. The `$responseFactory` should produce a |
55 | 93 | `ResponseInterface` implementation when invoked. |
56 | 94 |
|
|
0 commit comments