Play 2.9.0 and 3.0.0 have been released, so it would be good to get releases out to support those versions.
I think there may be no changes required to support Play 2.9.x, and I was able to get the existing Play 2.8 version of this library working with an application running Play 2.9.0. Play 3.0.0 replaces Akka with Pekko, but this library only appears to use a single Akka import (ByteString in ApiHelpController), which isn't actually needed because InternalServerError and Ok both take a String directly. So it may be possible to use the same exact code for Play 2.8–3.0.
Play 2.9.0 and 3.0.0 have been released, so it would be good to get releases out to support those versions.
I think there may be no changes required to support Play 2.9.x, and I was able to get the existing Play 2.8 version of this library working with an application running Play 2.9.0. Play 3.0.0 replaces Akka with Pekko, but this library only appears to use a single Akka import (
ByteString
inApiHelpController
), which isn't actually needed becauseInternalServerError
andOk
both take aString
directly. So it may be possible to use the same exact code for Play 2.8–3.0.