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
|
||||
|
||||
* 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
|
||||
( 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'
|
||||
return ( res, w)
|
||||
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
name: yesod-form
|
||||
version: 1.4.9
|
||||
version: 1.4.10
|
||||
license: MIT
|
||||
license-file: LICENSE
|
||||
author: Michael Snoyman <michael@snoyman.com>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user