v0.12.3
Breaking changes
- the
SwaggerHttp4s.routes: HttpRoutesnow returns routes that include the givencontextPath. Hence, when before to expose the routes you had to doRouter("/docs" -> new SwaggerHttp4s(yaml).routes[IO]), now it's:
Router("/" -> new SwaggerHttp4s(yaml).routes[IO])
See #319