-
Notifications
You must be signed in to change notification settings - Fork 374
Book Errata
snoyberg edited this page Apr 23, 2012
·
1 revision
There have been some minor changes to Yesod since the publication of the book. This page will hopefully contain a full list:
-
To ease installation, we now have a
yesod-platform
package. Instead of runningcabal install yesod
, you can runcabal install yesod-platform
. -
Hamlet now requires that all tags have a closing right bracket. In other words:
<good> <bad
-
The function
yepnopeJs
has been generalized tojsLoader
. Similarly,encryptKey
andclientSessionDuration
have been replaced withmakeSessionBackend
. -
Persistent no longer automatically derives
Show
,Read
, andEq
instances. You must manually add them in. For example:Person name Text age Int deriving Show -- this is now required