Sergey Kolbasov
Sergey Kolbasov
An example: https://scastie.scala-lang.org/pw3gkWayTWqFFdDt1L4VHw ```scala import zio.* import zio.stream.* import Unsafe.unsafe val list = List(List(1, 2, 3), List(4, 5)) val result = ZStream .fromIterator(list.iterator) .tap(list => ZIO.succeed(println(s"Input list: $list"))) .flatMap(list =>...
There are cases when the schema could depend on the application or request-time environment. For instance: - running API in staging & production mode and hiding certain fields & types...
Done: - Get rid of `HList` in favor of new `Tuple` - Get rid of `Witness.T` in favor of native literal types & `ValueOf` - Get rid of magnet pattern...
- Refactor `ToResponse` to consume also status and headers instead of overriding it again in `outputToResponse`. It enables returning _kind of final_ responses from `ToResponse` type class (there are still...
Related to https://github.com/finagle/finch/issues/581 @vkostyukov @rpless please, take a look. It's the first iteration and I'd be glad to get some feedback on this.
We need a good example of how one could propagate information through the chain of filters to the very heart of customer functions using effect type and avoiding the use...
During playing over https://github.com/finagle/finch/pull/1089 , I found out that our Mapper implicits fail to resolve for cases of `A => F[Response | Output[B]]` when `F` is some complex type like:...
> **Note**: GitHub Services are being deprecated. Please contact your integrator for more information on how to migrate or replace a service with webhooks or GitHub Apps. https://docs.travis-ci.com/user/legacy-services-to-github-apps-migration-guide/ I've requested...
I've been asked a lot if an endpoint could return `Future` or `A` or `B`. Currently, it states that one could consider an arity and apply function to Endpoint: https://github.com/finagle/finch/blob/master/docs/src/main/tut/user-guide.md#mapping-endpoints...
It would be nice to create list of high-priority tasks to compete until 1.0 release. We could discuss it's content and put our efforts to complete this list, stabilize client...