Skip to content

Releases: kamermans/guzzle-oauth2-subscriber

v1.1.0

02 May 18:47
16f2fb2
Compare
Choose a tag to compare

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

11 Jul 21:46
10b5cf2
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.0.12...v1.0.13

v1.0.12

17 Aug 13:20
e1f3a78
Compare
Choose a tag to compare
  • PHPUnit compatibility fixes
  • Docker test runner updates
  • Better return type hinting

v1.0.11

18 Aug 14:37
0849d1b
Compare
Choose a tag to compare
  • Exclude test files / shims from package to fix errors in PHPStorm

v1.0.10

14 Jul 15:40
ececd21
Compare
Choose a tag to compare

Added support for GuzzleHttp\Psr7 v1.7.0+, which deprecated (and eventually removed) the stream_for helper.

v1.0.9

28 Jun 17:30
840fde5
Compare
Choose a tag to compare

Added support for audience parameter, thanks @fabiang!

v1.0.8

10 Dec 00:45
18fb67c
Compare
Choose a tag to compare
  • Added the ability to specify a custom token factory (thanks @thiakil!)

v1.0.7

16 Sep 13:01
f5b4f8c
Compare
Choose a tag to compare
  • Added support for Guzzle 7 (thanks @lasselehtinen!)
  • Improved testing matrix (combinations of Guzzle and PHP versions)

v1.0.6

26 Feb 19:15
0e484ed
Compare
Choose a tag to compare

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

06 Aug 14:28
e8aeed5
Compare
Choose a tag to compare

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.