Releases: juliomotol/laravel-auth-timeout
Releases · juliomotol/laravel-auth-timeout
v4.1.0
What's Changed
- Bump dependabot/fetch-metadata from 1.4.0 to 1.5.0 by @dependabot in #30
- Bump dependabot/fetch-metadata from 1.5.0 to 1.5.1 by @dependabot in #32
- Bump dependabot/fetch-metadata from 1.5.1 to 1.6.0 by @dependabot in #33
- Laravel 11.x Compatibility by @laravel-shift in #36
New Contributors
- @laravel-shift made their first contribution in #36
Full Changelog: v4.0.1...v4.1.0
v4.0.1
Fixed
- Should properly initialize auth timeout session.
v4.0.0
Laravel Auth Timeout has received a complete refresh. Please make sure to read through all the changes.
Added
- Support for Laravel 10.x.
- Added
event
in config.
Changed
- Deprecated
JulioMotol\AuthTimeout\Contracts\AuthTimeout
'sreset()
method and will be remove on a future release. Usehit()
instead.- The same change applies to
JulioMotol\AuthTimeout\Facade\AuthTimeout
andJulioMotol\AuthTimeout\Facade\AuthTimeout
- The same change applies to
- Renamed
toJulioMotol\AuthTimeout\Events\AuthTimeoutEvent
JulioMotol\AuthTimeout\Events\AuthTimedOut
. - Renamed
toJulioMotol\AuthTimeout\Middleware\AuthTimeoutMiddleware
JulioMotol\AuthTimeout\Middlewares\CheckAuthTimeout
. - Auth Timeout initialization has been moved by listening to the
Illuminate\Auth\Events\Login
.- This was previously initialized within the
JulioMotol\AuthTimeout\Middleware\AuthTimeoutMiddleware
- This was previously initialized within the
v3.1.1 (2022-06-03)
Fixed
- Fix compatibility with v2 session timeout storing. #24
v3.1.0 (2021-04-18)
Added
- Add
AuthTimeoutMiddleware::setRedirectTo()
method. - Support for Laravel 9.x
Changed
- Update syntax to PHP8.0.
Removed
- Remove support for PHP7.4 and lower.
v3.0.1 (2021-01-09)
Added
- Restore PHP 7.3 support.
v3.0.0 (2021-01-08)
Added
- PHP 8 Support.
Changed
- AuthTimeout now uses
carbon\carbon
to check and store timeout sessions.
Removed
- Removed
auth-timeout.redirect
in favor ofAuthTimeoutMiddleware::redirectTo()
.- If you are using this config key, we highly suggest to use
AuthTimeoutMiddleware::redirectTo()
as it provides much better flexibility.
- If you are using this config key, we highly suggest to use
v2.2.1 (2020-10-12)
- Fixed
AuthTimeout
facade.
v2.2.0 (2020-09-11)
- Added
AuthTimeout
Facade. See docs for usage.
v2.1.0 (2020-09-11)
- Added support for Laravel 8.x