Skip to content

Releases: michaeldzjap/laravel-two-factor-authentication

Version 3.4.0 of laravel-two-factor-authentication

01 Sep 18:10
590aac8
Compare
Choose a tag to compare

Version 3.3.0 of laravel-two-factor-authentication

06 Feb 13:38
Compare
Choose a tag to compare

Version 3.2.0 of laravel-two-factor-authentication

10 Feb 08:21
Compare
Choose a tag to compare

Version 3.1.0 of laravel-two-factor-authentication

16 Oct 13:20
Compare
Choose a tag to compare

Added

  • The possibility to customise the route to which a user will be redirected in case of submitting an invalid token. See the documentation for more information.

Version 2.8.1 of laravel-two-factor-authentication

16 Oct 13:11
Compare
Choose a tag to compare

Added

  • The possibility to customise the route to which a user will be redirected in case of submitting an invalid token. See the documentation for more information.

Version 3.0.0 of laravel-two-factor-authentication

25 Sep 08:59
Compare
Choose a tag to compare

Added

  • Proper support for Laravel 8. Note: This is a breaking change. Version 3 of this package is not backwards compatible with Laravel versions prior to 8 due to a breaking change in \Illuminate\Support\Manager. If you want to use this package with Laravel 5, 6 or 7 you will need to use version 1 or 2 of this package.
  • Factory class MichaelDzjap\TwoFactorAuth\Database\Factories\TwoFactorAuthFactory for model MichaelDzjap\TwoFactorAuth\Models\TwoFactorAuth

Changed

  • In Laravel 8 model namespacing has changed. Hence, MichaelDzjap\TwoFactorAuth\TwoFactorAuth should now be imported as MichaelDzjap\TwoFactorAuth\Models\TwoFactorAuth instead

Version 2.7.0 of laravel-two-factor-authentication

25 Sep 08:45
Compare
Choose a tag to compare

Removed

  • Due to breaking changes in \Illuminate\Support\Manager the 2.x version of laravel-two-factor-authentication doesn't work with Laravel 8. Hence, the support of Laravel 8 has been revoked. Version 3.x and up of laravel-two-factor-authentication will re-add support for Laravel 8.

Version 2.6.2 of laravel-two-factor-authentication

28 Aug 12:16
Compare
Choose a tag to compare

Version 2.6.1 of laravel-two-factor-authentication

16 Apr 16:58
Compare
Choose a tag to compare

Fixed

Use the user model defined in the config file in the package. Until now this wasn't actually enforced and using a custom user model in the config (i.e. anything else than \App\User) would result in type errors and incorrect db querying behaviour. Unfortunately this means we lose type hinting for function arguments for users...

Version 2.6.0 of laravel-two-factor-authentication

06 Apr 18:55
Compare
Choose a tag to compare

Changed

Added support for Laravel 7.*