Laravel Two Factor Authentication Versions Save

A two-factor authentication package for Laravel >= 8

v3.3.0

1 year ago

Added

  • Laravel 10 compatibility

v3.2.0

2 years ago

Added

  • Laravel 9 compatibility

v3.1.0

3 years ago

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.

v2.8.1

3 years ago

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.

v3.0.0

3 years ago

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

v2.7.0

3 years ago

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.

v2.6.2

3 years ago

Added

  • Laravel 8 support.

v2.6.1

4 years ago

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...

v2.6.0

4 years ago

Changed

Added support for Laravel 7.*

v2.5.1

4 years ago

Changed

  • It is now possible to use a custom User model if you wish. Instead of specifying properties of the User model in the config file you now actually specify the model that should be used. This defaults to \App\User::class. This is somewhat of a breaking change in that you will have to modify your published config file. See the updated config file for reference.