This is the main package for Yesod, providing all core functionality on which
other packages can be built. It provides dispatch, handler functions, widgets,
etc.
Modify languages so that, if you previously called setLanguage, the newly
set language will be reflected.
1.4.25
Add instance of MonadHandler and MonadWidget for ExceptT #1278
1.4.24
cached and cachedBy will not overwrite global state changes #1268
1.4.23.1
Don’t allow sending multiple cookies with the same name to the client, in accordance with RFC 6265. This fixes an issue where multiple CSRF tokens were sent to the client. #1258
Default CSRF tokens to the root path “/”, fixing an issue where multiple tokens were stored in cookies, and using the wrong one led to CSRF errors #1248
1.4.23
urlParamRenderOverride method for Yesod class #1257
Add laxSameSiteSessions and strictSameSiteSessions #1226
1.4.22
Proper handling of impure exceptions within HandlerError values
Add hook to apply arbitrary function to all handlers #1122
1.4.17
Add getApprootText
1.4.16
Add guessApproot and guessApprootOr
1.4.15.1
bugfix neverExpires leaked threads
1.4.15
mkYesod avoids using reify when it isn’t necessary. This avoids needing to define the site type below the call to mkYesod.
1.4.14
Add CSRF protection functions and middleware based on HTTP cookies and headers #1017
Add mkYesodWith, which allows creating sites with polymorphic type parameters #1055
Do not define the site type below a call to mkYesod (or any variant), as it will be required at splicing time for reification.
This was allowed before because reification was not in use. Reification was introduced to allow parametrized types to be used
by mkYesod (and variants), with potentially polymorphic variables.