-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Julio Motol
committed
Aug 3, 2020
1 parent
55805c0
commit f747057
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Changelog | ||
|
||
## v2.0.0 (2020-08-03) | ||
|
||
### Breaking Changes | ||
|
||
- The `AuthTimeoutMiddleware` class' `redirectTo()` method signature has changed. If you are overriding this method, you should update your method's signature: | ||
|
||
```php | ||
/** | ||
* Get the path the user should be redirected to when they timed out. | ||
* | ||
* @param \Illuminate\Http\Request $request | ||
* @param mixed $guard | ||
* | ||
* @return string|null | ||
*/ | ||
protected function redirectTo($request, $guard = null) | ||
{ | ||
// | ||
} | ||
``` | ||
|
||
### Features | ||
|
||
- The `AuthTimeoutEvent` class now has a `$guard` property. | ||
|
||
## v1.0.0 (2020-04-04) First Release! | ||
|
||
Welcome to Laravel Auth Timeout! | ||
|
||
See the [documentation](./README.md) to get started. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters