Skip to content

Releases: vormkracht10/filament-2fa

v2.0.0

22 Oct 12:31
cb79511
Compare
Choose a tag to compare

Breaking changes

  • Added hidden recovery code input to merge 2fa and recovery code input to one input (better UX)
  • Changed vendor namespace of package from filament-two-factor-auth to filament-2fa

How to upgrade

  • Change vormkracht10/filament-two-factor-auth to vormkracht10/filament-2fa and require 2.0.0 in composer.json and run composer update
  • Rename config/filament-two-factor-auth.php to config/filament-2fa.php (when config is published)
  • Rename views/vendor/filament-two-factor-auth to views/vendor/filament-2fa (when views are published)
  • When you have a custom 2fa view, make sure vendor/filament-2fa/auth/login-two-factor.blade.php contains a hidden input named recovery_code:
<div style="display: none">
    <input type="text" id="recovery_code" wire:model="recovery_code" name="recovery_code" value="">
</div>

v1.7.0

04 Oct 07:26
133f1bd
Compare
Choose a tag to compare

What's Changed

  • [Improvement] Remove unnecessary check on tenant for menu item by @Baspa in #45
  • Set two factor type for users that already enabled 2FA by @Baspa in #49

Full Changelog: v1.6.0...v1.7.0

v1.6.0

20 Sep 13:42
a8502b1
Compare
Choose a tag to compare

What's Changed

  • [Bug fix] Undefined method 'via' by @Baspa in #41
  • [Bug fix] NPM error when building by @Baspa in #42
  • Update forced method to accept Closure type by @CodeWithDennis in #43
  • [Feature] Show user phone or email before sending OTP by @Baspa in #39

Full Changelog: v1.5.0...v1.6.0

v1.5.0

18 Sep 18:06
cd12460
Compare
Choose a tag to compare

What's Changed

  • [Fix] Add missing return type for custom middleware by @Baspa in #37
  • [Feature] improve successfully seting 2FA by @Baspa in #38

Full Changelog: v1.4.0...v1.5.0

v1.4.0

15 Sep 18:46
fba68e3
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.3.0...v1.4.0

v1.3.0

10 Sep 17:48
39cec7d
Compare
Choose a tag to compare

What's Changed

  • [Fix] Layouts by @Baspa in #25
  • [Feature] Improve documentation about sms services by @Baspa in #29

Full Changelog: v1.2.0...v1.3.0

v1.2.0

28 Aug 11:10
ab9465d
Compare
Choose a tag to compare

What's Changed

  • Customizable notification email mailable by @CodeWithDennis in #7
  • PHPStan improvements by @Baspa in #8
  • [Bug] Fix asset registration in provider by @Baspa in #12
  • [Bug fix] Invalid payload by @Baspa in #16
  • Validate before pipeline to show error messages to users by @Baspa in #18
  • Use validate credentials before attempting to login by @Baspa in #19
  • [Bug fix] Resending otp code sometimes sends duplicates by @Baspa in #20
  • [Feature] Allow register page customisation and fix tenancy issue by @Baspa in #22
  • [Bug fix] OTP code should be required when challenging by @Baspa in #23
  • [Feature] Validate invalid OTP by @Baspa in #24

Full Changelog: v1.1.0...v1.2.0

v1.1.0

23 Aug 08:11
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.0.0...v1.1.0

v1.0.0

16 Aug 13:25
Compare
Choose a tag to compare
Merge branch 'main' of github.com:vormkracht10/filament-two-factor-auth