diff -Nru haskell-yesod-form-1.6.2/ChangeLog.md haskell-yesod-form-1.6.5/ChangeLog.md --- haskell-yesod-form-1.6.2/ChangeLog.md 2018-07-09 10:11:51.000000000 +0000 +++ haskell-yesod-form-1.6.5/ChangeLog.md 2019-06-16 13:28:12.000000000 +0000 @@ -1,5 +1,18 @@ # ChangeLog for yesod-form +## 1.6.5 + +* Add `.sr-only` to labels in `renderBootstrap3` when they are null. + +## 1.6.4 + +* Make FormResult an instance of Eq + +## 1.6.3 + +* make sure a select field does not lose the selected value even if a validation on the + field fails + ## 1.6.2 * Move `addClass` from private/undocumented in `Yesod.Form.Bootstrap3` to `Yesod.Form.Functions` [#1510](https://github.com/yesodweb/yesod/pull/1510) diff -Nru haskell-yesod-form-1.6.2/debian/changelog haskell-yesod-form-1.6.5/debian/changelog --- haskell-yesod-form-1.6.2/debian/changelog 2018-10-01 10:47:49.000000000 +0000 +++ haskell-yesod-form-1.6.5/debian/changelog 2019-09-04 16:51:59.000000000 +0000 @@ -1,3 +1,15 @@ +haskell-yesod-form (1.6.5-1build1) eoan; urgency=medium + + * Rebuild against new GHC abi. + + -- Gianfranco Costamagna Wed, 04 Sep 2019 18:51:59 +0200 + +haskell-yesod-form (1.6.5-1) unstable; urgency=medium + + * New upstream release + + -- Clint Adams Fri, 30 Aug 2019 21:52:52 -0400 + haskell-yesod-form (1.6.2-2) unstable; urgency=medium * Remove build dependency on libghc-text-dev (provided by ghc-8.4.3) diff -Nru haskell-yesod-form-1.6.2/Yesod/Form/Bootstrap3.hs haskell-yesod-form-1.6.5/Yesod/Form/Bootstrap3.hs --- haskell-yesod-form-1.6.2/Yesod/Form/Bootstrap3.hs 2018-07-09 09:55:37.000000000 +0000 +++ haskell-yesod-form-1.6.5/Yesod/Form/Bootstrap3.hs 2019-06-16 13:28:12.000000000 +0000 @@ -32,6 +32,7 @@ import Control.Monad (liftM) import Data.Text (Text) import Data.String (IsString(..)) +import qualified Text.Blaze.Internal as Blaze import Yesod.Core import Yesod.Form.Types import Yesod.Form.Functions @@ -154,7 +155,7 @@ $case formLayout $of BootstrapBasicForm $if fvId view /= bootstrapSubmitId -