yesod-auth: Bump version & Update Changelog

This commit is contained in:
hainq 2018-07-05 20:23:57 +07:00
parent 6a64debfa0
commit bd9d0f9922
2 changed files with 17 additions and 1 deletions

View File

@ -1,3 +1,19 @@
## 1.6.5
* Email: Immediately register with a password [#1389](https://github.com/yesodweb/yesod/issues/1389)
To configure this new functionality:
1. Define `addUnverifiedWithPass`, e.g:
```
addUnverified email verkey = liftHandler $ runDB $ do
void $ insert $ UserLogin email Nothing (Just verkey) False
return email
addUnverifiedWithPass email verkey pass = liftHandler $ runDB $ do
void $ insert $ UserLogin email (Just pass) (Just verkey) False
return email
```
2. Add a `password` field to your client forms.
## 1.6.4
* Make `registerHelper` configurable [#1524](https://github.com/yesodweb/yesod/issues/1524)

View File

@ -1,5 +1,5 @@
name: yesod-auth
version: 1.6.4
version: 1.6.5
license: MIT
license-file: LICENSE
author: Michael Snoyman, Patrick Brisbin