catostrophe
catostrophe
Let `tofu-optics` users do this: ```scala import tofu.optics.syntax.tupleN._ val lense = Tuple3._2[Int, String, Long] // : Contains[(Int, String, Long), String] ``` `tupleN` object should contain all possible implicit extensions to...
I do support the need for a forced formatter in a project with many contributors, but the current ruleset is awful and doesn't work properly in IDEA (has some wrong...
We have it configured, just need to fully migrate.
Currently, we skip release for PRs merged by the `mergify` bot. It is not enough as mergify can't merge changes into `.github` dir. When I merge such changes myself, it...
There's an issue that appeared in PR #416. The published artifact `"dev.zio" %% "zio-interop-cats-tests"` contains only BuildInfo and a dependency in its POM to another artifact ( `"dev.zio" %% "zio-test-interop-cats"`)...
The files below are super useful for implementing prop-based tests but they cannot be included as an external dependency. only copy-pasted: catzSpecBase.scala catzSpecZIOBase.scala GenIOInteropCats.scala
Repro 1: ```scala import cats._ import cats.data._ import cats.implicits._ val res1 = (1 to 10000).toList.traverse_[Id, Unit](_ => ()) // ok val res2 = (1 to 1000).toList.traverse_(_ => Kleisli.liftF[Id, String, Unit](())).run("")...
###### Which version and edition of Flyway are you using? OSS v10.17.2 ###### If this is not the latest version, can you reproduce the issue with the latest one as...
###### Which version and edition of Flyway are you using? 10.17.0 ###### If this is not the latest version, can you reproduce the issue with the latest one as well?...
Monad transformers lack some `semi-`/`sub-`/`-F`/`-Tap` versions of `flatMap` that free a user from manual lifting or mapping. I find the following items reasonable for implementation as to make structures and...