finch
finch copied to clipboard
Scala combinator library for building Finagle HTTP services
Hi! Are there any plans in place to migrate to Cats Effect 3? If there are any blockers, it would be best to catch them before the RCs are being...
I only did `BodySpec` to get an idea of how does it look and feel. I will carry on if folks are ok with this approach.
I was dealing with some heavy use of cats Validated recently and was reminded of #513. This PR adds a `validate` method to `Endpoint` that uses Cats' `Validated` to validate...
# Description When composing two endpoints with the *andThen* operator, if the first endpoint does not match, the second one is still evaluated. In particular, a json-body is parsed despite...
The documentation mentions `import io.finch.syntax._` at multiple places even though that package doesn not exist anymore in the lastest Finch version.
I had to spend >= 30min to figure out that I needed the following dependencies to run [what the docs currently claim to only need finch-circe and 2 imports](https://finagle.github.io/finch/user-guide.html#circe): ```...
Swagger is a RESTful API Documentation Specification, most popular one for the moment: https://github.com/wordnik/swagger-spec/blob/master/versions/1.2.md It is like WSDL and WADL but a lot less horrible to work with. It comes...
Hi, I created my custom BadRequest and InternalServerError responses for specific cases, I also pass the exception as a parameter but nothing is returned with the response, no content, it's...
It seems this release was made in March but 0.31 is still the latest release on Sonatype/Maven Central.
In the same project I have finch (0.32.1), zio-kafka (0.14.0) and awssdk (2.15.78), all of which depend on a different version of jackson. Digging the code up a little, I...