Jisoo Park
Jisoo Park
`Query0#list` is changed to `Query0#to[List]`. https://tpolecat.github.io/doobie/docs/04-Selecting.html#reading-rows-into-collections Refer to the migration guide from 0.4 to 0.5: https://tpolecat.github.io/doobie/migration.html#miscellaneous-changes
`Predef.implicitly` doesn't always give correct error message. You can get more precise one by manually specifying the type parameter like `implicitly[Effect[Task]]` The actual problem is that `Task` doesn't have an...
Unfortunately, there's a randomness in implicit search for `Composite` derivation. If you can group your relevant fields into smaller case classes, the derivation steps will be much more stable: ```scala...
This ongoing effort https://github.com/tpolecat/doobie/tree/magnolia might be the rescue.
@povder FYI, I'm trying to adapt @wookievx's scala 3 PoC to be cross-compiled with the mainstream chimney codebase: https://github.com/guersam/chimney/tree/scala3
Currently the test doesn't compile in Scala 3 due to https://github.com/lampepfl/dotty/issues/12508. As there are so many local case classes having conflicting name in the tests, I'm considering test framework migration...
My strategy for source compatibility is to keep the shared types to the bare minimum such as `Transformer`, `TransformerF` and `Patcher`, and check DSL compatibility with the shared test code....
@wookievx Great :) As I'm not touching `chimney3` namespace at all, it will be not that hard to combine our work together so far. However, there are slight changes in...
Wrote [another macro-based formatter](https://gist.github.com/guersam/5940848) for current version of spray-json based on your naming. Additionally, it allows declaring other values in case classes and avoids any use of runtime reflection so...
I had similar problem in sequential mode too, so I launched new server for each test with random port using `Server#withPort(0)` and provided the port to the client dynamically. Regardless...