Releases: kamermans/guzzle-oauth2-subscriber
Releases · kamermans/guzzle-oauth2-subscriber
v1.1.0
PHP Minimum Version
This release drops support for PHP 5 and now requires PHP 7.1 or newer.
What's Changed
- Static return types, min ver PHP 7.1 by @kamermans in #60
- The restoreToken function return type can be null by @GabGr25 in #57
New Contributors
Full Changelog: v1.0.13...v1.1.0
v1.0.13
What's Changed
- Move Guzzle from required to suggested by @Uebix in #38
- Test Maintenance by @kamermans in #46
- fix: no need to delete the token, just overwrite it by @kamermans in #48
- Create a client credentials JSON signer by @edipoReboucas in #40
- Update Tests to use PHP 8 by @kamermans in #49
- feat: matrix caching by @kamermans in #50
- fix: remove getConfig() call in Guzzle 6+ by @kamermans in #47
- method getRawData() of grant types not interface compliant and can lead to TypeError by @PawelSuwinski in #51
- feat: Guzzle Promises 2.0.0 by @kamermans in #53
New Contributors
- @Uebix made their first contribution in #38
- @PawelSuwinski made their first contribution in #51
Full Changelog: v1.0.12...v1.0.13
v1.0.12
v1.0.11
v1.0.10
v1.0.9
v1.0.8
v1.0.7
- Added support for Guzzle 7 (thanks @lasselehtinen!)
- Improved testing matrix (combinations of Guzzle and PHP versions)
v1.0.6
Updates:
- Added
ClosureTokenPersistence
for wrapping other cache providers. - Added
Laravel5CacheTokenPersistence
for using the Laravel 5 cache (thanks @threesquared!). - Added License file to make the license more clear
v1.0.5
This release includes:
- Support for PSR-16: Common Interface for Caching Libraries cache adapters.
- New
NullGrantType
for manually specifying an access token without a method for retrieving a new one (see the README for more details). - The ability to get the
RawToken
object so you can directly access the OAuth access token and refresh token (if available). - Fix for incorrect signer interfaces in
OAuth2Handler
constructor. - Exclusive lock on token write for thread safety.