|
2 | 2 |
|
3 | 3 | ## [Unreleased] |
4 | 4 |
|
| 5 | +## [7.5.1](https://github.com/auth0/laravel-auth0/tree/7.5.1) (2023-04-04) |
| 6 | + |
| 7 | +**Fixed** |
| 8 | + |
| 9 | +- Resolved an issue wherein custom user repositories could fail to be instantiated under certain circumstances. |
| 10 | + |
5 | 11 | ## [7.5.0](https://github.com/auth0/laravel-auth0/tree/7.5.0) (2023-04-03) |
6 | 12 |
|
7 | 13 | This release includes support for Laravel 10, and major improvements to the internal state handling mechanisms of the SDK. |
8 | 14 |
|
9 | 15 | **Added** |
10 | 16 |
|
11 | | -— Support for Laravel 10 [#349](https://github.com/auth0/laravel-auth0/pull/349) |
12 | | -— New `Auth0\Laravel\Traits\Imposter` trait to allow for easier testing. [Example usage](./tests/Unit/Traits/ImpersonateTest.php) |
13 | | -— New Exception types have been added for more precise error catching. |
| 17 | +- Support for Laravel 10 [#349](https://github.com/auth0/laravel-auth0/pull/349) |
| 18 | +- New `Auth0\Laravel\Traits\Imposter` trait to allow for easier testing. [Example usage](./tests/Unit/Traits/ImpersonateTest.php) |
| 19 | +- New Exception types have been added for more precise error catching. |
14 | 20 |
|
15 | 21 | **Changed** |
16 | 22 | The following changes have no effect on the external API of this package, but may affect internal usage. |
17 | 23 |
|
18 | | -— `Guard` will now more reliably detect changes in the underlying Auth0-PHP SDK session state. |
19 | | -— `Guard` will now more reliably sync changes back to the underlying Auth0-PHP SDK session state. |
20 | | -— `StateInstance` concept has been replaced by new `Credentials` entity. |
21 | | -— `Guard` updated to use new `Credentials` entity as primary internal storage for user data. |
22 | | -— `Auth0\Laravel\Traits\ActingAsAuth0User` was updated to use new`Credentials` entity. |
23 | | -— The HTTP middleware have been refactored to more clearly differentiate between token and session based identities. |
24 | | -— The `authenticate`, `authenticate.optional` and `authorize.optional` HTTP middleware now support scope filtering, as `authorize` already did. |
| 24 | +- `Guard` will now more reliably detect changes in the underlying Auth0-PHP SDK session state. |
| 25 | +- `Guard` will now more reliably sync changes back to the underlying Auth0-PHP SDK session state. |
| 26 | +- `StateInstance` concept has been replaced by new `Credentials` entity. |
| 27 | +- `Guard` updated to use new `Credentials` entity as primary internal storage for user data. |
| 28 | +- `Auth0\Laravel\Traits\ActingAsAuth0User` was updated to use new`Credentials` entity. |
| 29 | +- The HTTP middleware have been refactored to more clearly differentiate between token and session based identities. |
| 30 | +- The `authenticate`, `authenticate.optional` and `authorize.optional` HTTP middleware now support scope filtering, as `authorize` already did. |
25 | 31 |
|
26 | 32 | **Fixed** |
27 | 33 |
|
28 | | -— A 'Session store not set on request' error could occur when downstream applications implemented unit testing that use the Guard. This should be resolved now. |
29 | | -— `Guard` would not always honor the `provider` configuration value in `config/auth.php`. |
30 | | -— `Guard` is no longer defined as a Singleton to better support applications that need multi-guard configurations. |
| 34 | +- A 'Session store not set on request' error could occur when downstream applications implemented unit testing that use the Guard. This should be resolved now. |
| 35 | +- `Guard` would not always honor the `provider` configuration value in `config/auth.php`. |
| 36 | +- `Guard` is no longer defined as a Singleton to better support applications that need multi-guard configurations. |
31 | 37 |
|
32 | 38 | **Maintenance** |
33 | 39 |
|
34 | | -— Upgraded test suite to use PEST 2.0 framework. |
35 | | -— Updated test coverage to 100%. |
| 40 | +- Upgraded test suite to use PEST 2.0 framework. |
| 41 | +- Updated test coverage to 100%. |
36 | 42 |
|
37 | 43 | **Important Notes** |
38 | 44 |
|
|
0 commit comments