Skip to content

v2.0.0 (2020-08-03)

Compare
Choose a tag to compare
@juliomotol juliomotol released this 03 Aug 07:28
· 97 commits to master since this release

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.