From 72b2468aa3288313d9368937905792c84afc7603 Mon Sep 17 00:00:00 2001 From: Marco Date: Sun, 30 Jul 2017 16:22:34 +0200 Subject: [PATCH] Explain new exception from password reset methods in migration guide --- Migration.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Migration.md b/Migration.md index 776e59f..9dfbf93 100644 --- a/Migration.md +++ b/Migration.md @@ -35,6 +35,8 @@ $ composer update delight-im/auth ADD COLUMN "resettable" INTEGER NOT NULL CHECK ("resettable" >= 0) DEFAULT "1"; ``` + * The two methods `forgotPassword` and `resetPassword` may now throw an additional `\Delight\Auth\ResetDisabledException` if the user has disabled password resets for their account. + * The `Base64` class is now an external module and has been moved from the namespace `Delight\Auth` to the namespace `Delight\Base64`. The interface and the return values are not compatible with those from previous versions anymore. ## From `v4.x.x` to `v5.x.x`