Skip to content

6.2.0-RC4

Pre-release
Pre-release
Compare
Choose a tag to compare
@lapidus79 lapidus79 released this 28 Jan 21:57
· 154 commits to 6.2.x since this release
1164003

Important notes

Change of groupId

You need to change com.typesafe.sbt to com.typesafe.play in your project/plugins.sbt:

// in project/plugins.sbt
addSbtPlugin("com.typesafe.play" % "sbt-play-ebean" % "6.2.0-RC4")

(No need to add any resolvers, because the release was published to Maven Central 😉)

Minimal sbt version

play-ebean 6.2.0-RC4 requires sbt 1.4 or newer (We highly recommend to use latest sbt 1.6.1!)

Play enhancer got removed

That means getters and setter are not generated automatically anymore. That can break Play's form binding as well as Ebean's lazy loading feature. You need to add getters and setter yourself now.
Also see this discussion and #228.

Ebean version

The Ebean version was upgraded to 12.8.1

Changes