Skip to content
This repository has been archived by the owner on May 28, 2019. It is now read-only.

v1.0.0

Compare
Choose a tag to compare
@gabro gabro released this 06 Jul 09:23
· 18 commits to master since this release
834b9ee

We've been using metarpheus in production for many years now, it's time to acknowledge it with a shiny first major version release! 🎉

💥 Breaking changes

  • The support for our custom spray/akka-http DSL has been dropped. Only wiro routes are supported now.
  • Consequently two config parameters were removed:
    • wiro: it's implicitly true now
    • authRouteTermNames: not used anymore since it was spray-specific

🐛 Bug fixes

  • Fix a bug for which generic types were erroneously considered to be unused. For instance in

     @query
     def read(id: Id[User]): Future[Either[Error, Option[Entity[User]]]]

neither Id nor Entity were being included, but their argument (User) was.
This is now fixed.