Fixed issues:
This is the first release after Play framework update.
Remember to update the configuration file (application.conf
):
-
evolutions.autocommit
is nowplay.evolutions.autocommit
-
applyEvolutions.default
is nowplay.evolutions.db.default.autoApply
-
application.secret
is nowplay.http.secret.key
-
application.langs
is nowplay.i18n.langs
(and it should be a list rather than a single string) -
there's a new required line:
play.modules.enabled += "scalikejdbc.PlayModule"
-
logger.*
parameters has been migrated tologback.xml
, remove them from your config
The following section is now required for use in production:
play.filters.enabled += play.filters.hosts.AllowedHostsFilter
play.filters.hosts {
allowed = ["loglist.xyz"]
}