-
It would be nice to have a better solution for situations like:
```scala
sealed trait Tree[+A]
final case class Branch[+A](left: Tree[A], right: Tree[A]) extends Tree[A]
final case class Leaf[…
-
I particularly find this feature useful when I just refactor some code that potentially could break a lot of stuff. I do a test run as a sanity check. And if I see a failure, I'd rather stop there and…
-
Following up on discussion in #1628 there are a number of tests in `ZStreamSpec.scala` checking for "short circuiting" that can probably be removed. I would suggest going through all of the ones label…
-
Right now users can add debug information to tests using `console.putStrLn` but the experience is not ideal because sometimes you want console output rendered whereas sometimes you don't and the outpu…
-
Hi all, I have a server implemented in Scala using zio-grpc, and a client in Python.
I found that sometimes the stream received by the client is out of order. For example, the sequence of data sent…
-
It would be great to have a flatter directory structure, similar to Mill also in a way that the test module would be nested into it's main module with less boilerplate in the yaml.
Currently the cl…
-
## Compiler version
3.3.0-RC3
## Minimized code
[Scastie link](https://scastie.scala-lang.org/nOHfRvjsS3eKkRggGhv2XQ); same code:
```scala
import zio.*
import zio.test.*
import zio.test…
-
While trying to cross-compile some zio-json code for supporting streaming json-lines, I ran into the issue that `java.io.BufferedWriter` was not implemented in Scala-js.
I was also cross-compiling t…
-
Current a valid JSON number like `42.0` (with only zeroes after the decimal point) cannot be parsed as an `Int` with zio-json.
I would like to argue that zio-json could more lenient and allow for su…
-
**Is your feature request related to a problem? Please describe.**
I am trying to create an `Endpoint` with multiple output error possibilities, and was hoping the combined error type would end up be…
anqit updated
1 month ago