Tibor Erdesz
Tibor Erdesz
I did as a documentation said and installed the latest jsdom npm package(v11.0.0) but I've got an error when running the tests: `TypeError: jsdom.createVirtualConsole is not a function`. I had...
This code: ```scala sealed trait MyGADT[T] final case class VariantInt(value: Int) extends MyGADT[Int] final case class VariantString(value: String) extends MyGADT[String] def doStuff[T](gadt: MyGADT[T]): T = { gadt match { case...
Hi, I'd like to use dcs-bios-api with the L-39ZA module which seems to be included on the master branch but when I install version 0.0.8 from npm it's missing(only have...
When using `JdbcDecoder.fromSchema` & `JdbcEncoder.fromSchema` with case classes containing `UUID`s I get runtime errors(both with postgres and h2). I have added some test cases here: https://github.com/zio/zio-jdbc/compare/main...erdeszt:zio-jdbc:jdbc-decoder-from-schema?expand=1 The manual encoder and...