This repository was archived by the owner on May 28, 2019. It is now read-only.
v1.0.0
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 nowauthRouteTermNames: 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.