Skip to content

Releases: juliomotol/laravel-auth-timeout

v4.1.0

02 Apr 14:20
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v4.0.1...v4.1.0

v4.0.1

10 May 16:33
Compare
Choose a tag to compare

Fixed

  • Should properly initialize auth timeout session.

v4.0.0

16 Feb 14:49
Compare
Choose a tag to compare

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's reset() method and will be remove on a future release. Use hit() instead.
    • The same change applies to JulioMotol\AuthTimeout\Facade\AuthTimeout and JulioMotol\AuthTimeout\Facade\AuthTimeout
  • Renamed JulioMotol\AuthTimeout\Events\AuthTimeoutEvent to JulioMotol\AuthTimeout\Events\AuthTimedOut.
  • Renamed JulioMotol\AuthTimeout\Middleware\AuthTimeoutMiddleware to 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

v3.1.1 (2022-06-03)

03 Jun 12:26
Compare
Choose a tag to compare

Fixed

  • Fix compatibility with v2 session timeout storing. #24

v3.1.0 (2021-04-18)

18 Apr 13:23
Compare
Choose a tag to compare

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)

09 Jan 09:08
Compare
Choose a tag to compare

Added

  • Restore PHP 7.3 support.

v3.0.0 (2021-01-08)

07 Jan 18:32
Compare
Choose a tag to compare

Added

  • PHP 8 Support.

Changed

  • AuthTimeout now uses carbon\carbon to check and store timeout sessions.

Removed

  • Removed auth-timeout.redirect in favor of AuthTimeoutMiddleware::redirectTo().
    • If you are using this config key, we highly suggest to use AuthTimeoutMiddleware::redirectTo() as it provides much better flexibility.

v2.2.1 (2020-10-12)

12 Oct 15:02
Compare
Choose a tag to compare
  • Fixed AuthTimeout facade.

v2.2.0 (2020-09-11)

12 Oct 14:28
Compare
Choose a tag to compare
  • Added AuthTimeout Facade. See docs for usage.

v2.1.0 (2020-09-11)

10 Sep 17:23
b8b5b32
Compare
Choose a tag to compare
  • Added support for Laravel 8.x