From 5e3fc3f62bc1784a57c4d565125380416a36dafc Mon Sep 17 00:00:00 2001 From: Evan Sims Date: Wed, 21 Jun 2023 14:46:21 -0500 Subject: [PATCH] Release 7.9.1 --- CHANGELOG.md | 8 +++++++- src/ServiceAbstract.php | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 32752a3..22bf9ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Changelog -## [7.9.0](https://github.com/auth0/laravel-auth0/tree/7.8.2) (2023-06-15) +## [7.9.1](https://github.com/auth0/laravel-auth0/tree/7.9.1) (2023-06-21) + +### Fixed + +- Resolved an issue where, under certain circumstances, the AuthenticationGuard middleware could get erroneously added to the `api` middleware group, causing a session to be established in a stateless request. ([\#415](https://github.com/auth0/laravel-auth0/pull/415)) + +## [7.9.0](https://github.com/auth0/laravel-auth0/tree/7.9.0) (2023-06-15) ### Added diff --git a/src/ServiceAbstract.php b/src/ServiceAbstract.php index 46de0dc..9be17d7 100644 --- a/src/ServiceAbstract.php +++ b/src/ServiceAbstract.php @@ -22,7 +22,7 @@ abstract class ServiceAbstract extends InstanceEntityAbstract * * @var string */ - public const VERSION = '7.9.0'; + public const VERSION = '7.9.1'; /** * Decode a PSR-7 HTTP Response Message containing a JSON content body to a PHP array. Returns null if the response was not successful, or the response body was not JSON.