Sergey Kolbasov

Results 36 comments of Sergey Kolbasov

It'll damage SEO for some time, but in a long-term sense it should be better.

What about the composition of endpoints? Let's say I have: ```scala get(param("foo") :: header("bar")) { (foo: A?, bar: B?) => { ... } } ``` What is a type of...

@prayagupd Yes, status should be a part of an error. In our project services always return `F[Either[Error, A]]` where `Error

@vkostyukov you mean introduce `Endpoint.flatMap`? AFAIR it's impossible without blocking EndpointResult output or change in the current signature of `apply`, I've tried it multiple times already.

It shouldn't change anything if we lift it to Try. Also, from the original example there will be no exception at all as the authorization endpoint is handled already. The...

I feel that it should be the way how it's now with `Mapper` being executed if there were no errors during request processing through the composition, and we can gurantee...

@vkostyukov my another thought is to introduce new type `FailFastEndpoint

Ideally, I'd move builds & releases to Github Action, but I need support from @vkostyukov for that

@spockz Yeah, I got excited as well. Later I found out that due to their commutative nature [it's impossible to define a proper type classes derivation](https://github.com/lampepfl/dotty/issues/12246). It's also untagged comparing...

Update: Completed the migration to CE3 and refurbished the rest of the project. The issue I'm facing now is that circe for Scala 3 doesn't support incomplete JSON decoding, so...