Marc Saegesser

Results 4 issues of Marc Saegesser

The [zio-nio-core_3 in Maven](https://search.maven.org/artifact/dev.zio/zio-nio-core_3/1.0.0-RC11/jar) has dependencies on Scala 2.13 libraries silencer-lib and scala-collection-compat. If I use zio-nio in a project that also depends on one of those libraries I get...

Several updates: - Replaced Build.scala with build.sbt. - Added support Scala 2.11 and cross building with 2.10 - Updated scalatest version and updated unit tests to work with the new...

Prior to ZIO 2.0.3, the behavior of methods like `Fiber.awaitAll` and `Fiber.joinAll` was 'fail-fast'. If any of the fibers being joined failed then the `joinAll` interrupted all the other fibers...

bug

A minimal project demonstrating this problem is available [here](https://github.com/marcsaegesser/SlickSqliteTransactionError). Sqlite doesn't support multiple threads so I have been using an AsyncExecutor with only a single thread. For example, ```scala val...

bug