play-ebean

Play Ebean module

APACHE-2.0 License

Stars
98
Committers
38

Bot releases are hidden (Show)

play-ebean - Play Ebean 8.0.0

Published by mkurz 12 months ago

Noteworthy

This release requires Play 3.0.0!

With version 8.0.0 the groupId changes from com.typesafe.play to org.playframework. To add this project as dependency you now have to use (in project/plugins.sbt):

addSbtPlugin("org.playframework" % "sbt-play-ebean" % "8.0.0")

Changes

  • #420 Set mimaPreviousArtifacts.value to last "major" release by @mkurz
  • #416 Play 3.0.0 by @mkurz
  • #415 Patch updates (backport #414) by @scala-steward
  • #411 Move scala steward conf into .github folder by @mkurz
  • #409 jaxb-runtime 4.0.4 (was 4.0.3) by @mkurz
  • #408 Revert "Temporary disable MiMa" by @mkurz
  • #407 Switch to org.playframework by @mkurz
  • #404 Play 2.9.0-RC3 (was 2.9.0-RC2) by @scala-steward
  • #403 Skip connection for datasources with omitted db configuration by @hertg
  • #400 MiMa checks Scala 3 artifacts now by @mkurz

❤️ Thanks to our premium sponsors!

If you find this OSS project useful for work, please consider asking your company to support it by becoming a sponsor.
You can also individually sponsor the project by becoming a backer.

🙇 Thanks to our contributors

Finally, thanks to the community for their help with detailed bug reports, discussions about new features and pull request reviews. This project is only possible due to the help we had from amazing contributors.
Special thanks to all code contributors who helped with this particular release (they are listed below)!

play-ebean - Play Ebean 7.0.0

Published by mkurz 12 months ago

Noteworthy

  • #318 Drop Java 8 by @mkurz
  • #320 Drop sbt 0.13 + wrong dependencies by @mkurz
  • #354 Add support for scala3 by @sachgar
  • #417 Play 2.9.0 by @mkurz
  • #405 [7.0.x] Skip connection for datasources with omitted db configuration (backport #403) by @hertg
  • #387 Respect play.evolutions[.db.default].path config for dynamic evolutions by @mkurz
  • #386 Use SQL92 comment syntax by @mkurz
  • #347 Recommend using application.yaml instead of ebean.properties by @mkurz

Changes

  • #419 [7.0.x] Set mimaPreviousArtifacts.value to last "major" release by @mkurz
  • #418 [7.0.x] Correct version in docs by @mkurz
  • #413 play-docs, play-docs_2.13, ... 2.9.0-RC3 (was 2.9.0-RC2) by @scala-steward
  • #414 [7.0.x] Patch updates by @scala-steward
  • #412 [7.0.x] Move scala steward conf into .github folder by @mkurz
  • #410 [7.0.x] jaxb-runtime 4.0.4 (was 4.0.3) by @mkurz
  • #406 [7.0.x] Play 2.9.0-RC3 (was 2.9.0-RC2) (backport #404) by @scala-steward
  • #401 [7.0.x] MiMa checks Scala 3 artifacts now (backport #400) by @mkurz
  • #399 [7.0.x] Adjust branch for GHA workflows by @mkurz
  • #398 Play 2.9 release candidate 2 by @mkurz
  • #394 Play 2.9 release candidate by @mkurz
  • #397 h2 2.2.224 (was 2.2.222) by @mkurz
  • #396 sbt 1.9.6 by @mkurz
  • #395 Group Scala Steward patch updates into single PR by @mkurz
  • #393 sbt 1.9.5 by @mkurz
  • #385 Scala 3.3.1 / 2.13.12 by @mkurz
  • #389 With Play 2.9 filters-helpers has a play- prefix by @mkurz
  • #380 sbt 1.9.2 by @mkurz
  • #375 Latest Play by @mkurz
  • #374 Scala / sbt / Play upgrades by @mkurz
  • #370 🔄 synced file(s) with playframework/.github by @ihostage
  • #368 Add Copyright header into all files by @ihostage
  • #367 Sync headerEmptyLine setting with core repo by @ihostage
  • #369 Add Javafmt plugin by @ihostage
  • #365 Update copyright by @mkurz
  • #364 Switch to Jakarta persistence by @mkurz
  • #363 Scala 3.3.0-RC5 by @mkurz
  • #349 Update data for pom.xml by @mkurz
  • #348 Update developer information for pom.xml by @mkurz
  • #346 Set up sbt dependency submission by @mkurz
  • #345 scala-steward should also visit standalone docs project by @mkurz
  • #338 Update README for 6.2.0 final release by @mkurz
  • #321 Revert "Workaround scala-xml dependency problem" / sbt 1.8.0-RC1 by @mkurz
  • #329 Link to .github/RELEASING.md by @mkurz
  • #326 Use the mergify config from the .github repo by @mkurz
  • #325 Latest Scala/sbt versions by @mkurz
  • #323 Semantic Scala version selector expression in workflows by @mkurz

❤️ Thanks to our premium sponsors!

If you find this OSS project useful for work, please consider asking your company to support it by becoming a sponsor.
You can also individually sponsor the project by becoming a backer.

🙇 Thanks to our contributors

Finally, thanks to the community for their help with detailed bug reports, discussions about new features and pull request reviews. This project is only possible due to the help we had from amazing contributors.
Special thanks to all code contributors who helped with this particular release (they are listed below)!

play-ebean - 6.2.0-RC4

Published by lapidus79 over 2 years ago

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

  • Publish to maven central
  • com.typesafe.sbt -> com.typesafe.play #227 by @mkurz
  • Upgrade versions #226 by @mkurz
  • Fixes #208 - Support sbt 1.4.x+ #219 by @jmswenski
  • Remove secrets (provided via Travis UI now) #204 by @ennru
  • Setting up Travis CI Deployment #203 by @jmswenski
  • Changed preferred name DB and Database instead of Ebean and EbeanServer with ebean v12.1.13. #200 by @kundan59
  • Adding MiMa plugin for travis build #202 by @jmswenski
  • Travis: use build stages and matrix #197 by @ennru
  • feat: upgrade to play 2.8.2 & ebean 12.1.13 (#194) #198 by @jmswenski
play-ebean - 6.0.0

Published by lapidus79 over 4 years ago

Released Feb 11, 2020

feat: upgrade to play 2.8.1 & ebean 11.45.1 (#192)

  • feat: upgrade to play 2.8.0
  • included jaxb as a transitive dependency, since ebean requires it and if not included then this plugin will not work out of the box with Java 11
  • feat: java 11 travis tests must pass
  • previously java 1 tests where allowed to fail
  • rfac: upgrade to play 2.8.1

❤️ Thanks to our premium sponsors!

If you find this OSS project useful for work, please consider asking your company to support it by becoming a sponsor.
You can also individually sponsor the project by becoming a backer.