Skip to content

Releases: juliomotol/laravel-auth-timeout

v2.0.0 (2020-08-03)

03 Aug 07:28
Compare
Choose a tag to compare

Breaking Changes

  • The AuthTimeoutMiddleware class' redirectTo() method signature has changed. If you are overriding this method, you should update your method's signature:
/**
 * 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.

First Release!

04 Apr 14:35
Compare
Choose a tag to compare

Welcome to Laravel Auth Timeout!

See the documentation to get started.