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

Added oauth2 data provided by thephpleague/oauth2-server to user object #50

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 31 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,20 @@

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

## 0.4.3 - 2018-05-09
## 1.0.0 - TBD

### Added

- [#41](https://github.com/zendframework/zend-expressive-authentication-oauth2/pull/41) Allows
existing PDO service to be used. This will allow us to reuse existing pdo
services instead of opening up a second connection for oauth.
- [#42](https://github.com/zendframework/zend-expressive-authentication-oauth2/pull/42) Adds `TokenEndpointHandler`,
`AuthorizationMiddleware` and `AuthorizationHandler` in the `Zend\Expressive\Authentication\OAuth2` namespace
to [implement an authorization server](docs/book/authorization-server.md).
to [implement an authorization server](https://docs.zendframework.com/zend-expressive-authentication-oauth2/v1/authorization-server/).

### Changed

- [#42](https://github.com/zendframework/zend-expressive-authentication-oauth2/pull/42) Splits
- [#42](https://github.com/zendframework/zend-expressive-authentication-oauth2/pull/42) Splits
`Zend\Expressive\Authentication\OAuth2\OAuth2Middleware` into individual implementations that allow
[OAuth RFC-6749](https://tools.ietf.org/html/rfc6749) compliant authorization server implementations.

Expand All @@ -27,6 +30,31 @@ All notable changes to this project will be documented in this file, in reverse

### Fixed

- [#44](https://github.com/zendframework/zend-expressive-authentication-oauth2/pull/44/) Fixes
revocation of access token for PDO repository
- [#45](https://github.com/zendframework/zend-expressive-authentication-oauth2/pull/45) Fixes
issue with empty scope being passed throwing exception.

## 0.4.3 - 2018-05-09

### Added

- Nothing.

### Changed

- Nothing.

### Deprecated

- Nothing.

### Removed

- Nothing.

### Fixed

- Removes auto-requiring of the encryption key via the configuration unless the default file
actually exists and is readable. As the configuration is processed in every request, this is necessary
to prevent issues when the file does not exist (e.g., if the user has specified an alternate location).
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"psr/container": "^1.0",
"psr/http-message": "^1.0.1",
"psr/http-server-middleware": "^1.0",
"zendframework/zend-expressive-authentication": "^0.4.0"
"zendframework/zend-expressive-authentication": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0.1",
Expand Down
Loading