housekeeping
This commit is contained in:
parent
ef22b131f1
commit
d59344b78b
@ -1,3 +1,7 @@
|
|||||||
|
## 1.4.10
|
||||||
|
|
||||||
|
* Fixed `identifyForm` to properly return `FormMissing` for empty forms. [#1072](https://github.com/yesodweb/yesod/issues/1072)
|
||||||
|
|
||||||
## 1.4.9
|
## 1.4.9
|
||||||
|
|
||||||
* Added a `ToValue` instance for `Enctype` [#1296](https://github.com/yesodweb/yesod/pull/1296)
|
* Added a `ToValue` instance for `Enctype` [#1296](https://github.com/yesodweb/yesod/pull/1296)
|
||||||
|
|||||||
@ -352,6 +352,7 @@ identifyForm identVal form = \fragment -> do
|
|||||||
| otherwise = id
|
| otherwise = id
|
||||||
( res', w) <- eraseParams (form fragment')
|
( res', w) <- eraseParams (form fragment')
|
||||||
|
|
||||||
|
-- Empty forms now properly return FormMissing. [#1072](https://github.com/yesodweb/yesod/issues/1072)
|
||||||
let res = if missing then FormMissing else res'
|
let res = if missing then FormMissing else res'
|
||||||
return ( res, w)
|
return ( res, w)
|
||||||
|
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
name: yesod-form
|
name: yesod-form
|
||||||
version: 1.4.9
|
version: 1.4.10
|
||||||
license: MIT
|
license: MIT
|
||||||
license-file: LICENSE
|
license-file: LICENSE
|
||||||
author: Michael Snoyman <michael@snoyman.com>
|
author: Michael Snoyman <michael@snoyman.com>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user