Results 40 issues of Jacob Wang

When a request failed (e.g. Server broke backwards compatibility), it'll be nice to be able to access the original body so we can log the error message from the server....

Many people uses structural logging in their application. I think it'd really helpful if we can easily serialize the failure reason to JSON which we can attach as custom data...

https://github.com/tpolecat/doobie/milestone/10 ## Typelevel org migration - [x] Transfer to typelevel github org (make sure docs work) - [ ] Change code package to `org.typelevel.doobie` - [ ] Scalafix rule to...

Currently only declarations within the source type is checked. Should we add a config option to increase this scope to parent classes?

Scalatest seems to color every line red which results in many white part of the diff output to be printed red instead. More investigation into how scalatest is coloring its...

Example: a `List[SomeCaseClass]` with a lot of elements. If there are only a few elements that are different then we should cut out parts where there are no difference. Similarly...

We should provide a string diff output that pinpoints what exactly is different. (Similar to other test frameworks already provide)

Sometimes we have a record-like class which we'll want to compare a subset of fields. e.g. `class MyError(field1: String, field2: List[String], cause: Throwable) extends Exception` we may only want to...

Many multi-module projects have the following directory structure ``` build.sbt project Dependencies.scala modules proj1 src ... proj2 src ... ``` But my understanding of the Dependencies.scala location detection only checks...

enhancement