-
Notifications
You must be signed in to change notification settings - Fork 84
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Play 2.7 support (and cross build for Scala 2.13.0-M5) #115
Comments
Hi @mkurz! I've just finally released the snapshots for 1.5 versions with Play 2.7 (the code is on branch develop). Please, try to test it. I've just found a lot of warnings like this one:
I'll try to check them as soon as possible and to update the docs as well. The snapshots versions are:
|
@adrianhurt Thanks! I will check it out as soon as possible! Again thank you very much for your efforts! |
I tested the 2.7 snapshot and it looks very good to me, though I only have a minor use case - two simple forms. |
I think we should wait with the next release until next week because then Scala 2.13 will be released and also Play will be published for Scala 2.13 - meaning also play-bootstrap can then also published for Scala 2.13 as well. |
Yes, I think it’s better to wait as well. I’d only update something to fix bugs if needed, but please, test it if you all have time. |
Scala 2.13 is now released, looking forward to the release of |
@bjoernhaeuser yes but we need Play to support Scala 2.13 first |
Great! I’ll try to update it this weekend! |
@adrianhurt I will submit a pull request later today with an important fix. Please wait for it, thanks! |
Please don't release yet, as I said will provide a pull request with a bugfix very soon! |
Don't worry, I'll wait for it. |
@adrianhurt Done, see #121 (also maybe merge #120 before). |
Hi! I've just released versions 1.5-P2X-BX-RC-SNAPSHOT with Play 2.7.3 (note the -RC). If you don't see any problem I'll release the final one during the next week. I've noted the syntax |
@adrianhurt Just did a small test, for me it looks good, thanks! |
Same here :) small test was successful! Thanks! |
Hey guys! It's finally released |
Thanks! |
That is what Play itself will do as well: See playframework/playframework#9447 and playframework/playframework#9488. Therefore |
Any updates on the Symbol deprecation thing? I'm trying to get our app compiling under 2.13.1 and the last issue is the Play template using literal Symbols. I migrated to the
|
@fooblahblah No updates yet. I think the implicit error you face is not related to symbols. |
Thanks @adrianhurt. I'm starting to think the same. I need to figure out why these usages started breaking when I changed versions of the library. |
See #124 for the symbol issue. |
Please add support for Play 2.7.
https://blog.playframework.com/play-2-7-0-is-here/
https://www.playframework.com/documentation/2.7.x/Highlights27
https://www.playframework.com/documentation/2.7.x/Migration27
Please also publish builds for Scala
2.13.0-M5
. (Add it tocrossScalaVersions
, also please update to latest 2.12 and latest 2.11)Your probably have to set
PlayKeys.playOmnidoc := false
inbuild.sbt
to make it work.Also it could be that you have to adjust some twirl templates because now curly brackets are needed in some cases.
E.g. twirl code like
@something.map { case SomeThing(foo) => some html }
becomes this:
The text was updated successfully, but these errors were encountered: