Fixed issues:
This is the first release after Play framework update.
Remember to update the configuration file (application.conf):
-
evolutions.autocommitis nowplay.evolutions.autocommit -
applyEvolutions.defaultis nowplay.evolutions.db.default.autoApply -
application.secretis nowplay.http.secret.key -
application.langsis 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"]
}