Denis Novac

Results 15 issues of Denis Novac

Tapir version: 0.18.0-M17 Scala version: 2.13.6 **Describe the bug** When you have inner enum inside other enum and both of them extends `TapirCodecEnumeratum` trait - compile will fail with error:...

Is there an oneOf, anyOf, etc support (https://swagger.io/docs/specification/data-models/oneof-anyof-allof-not/) in ApiResponses annotation? For example, i want to return one of two schemas with the same code: ``` @ApiResponses(Array ( new ApiResponse(code...

Hello everyone. I've been looking at OpenSCAP -V flag and found out that there is no probes for Windows or IOS (at least, in this list. Maybe windows probes are...

Hi everyone. I am having troubles using this trait: ```scala trait DataCache[F[_]] { def lookup[I, A](i: I, data: Data[I, A]): F[Option[A]] def insert[I, A](i: I, v: A, data: Data[I, A]):...

Hi everyone. I can see that blazegraph uses graphs since query ```sql prefix skos: prefix rdf: SELECT DISTINCT ?graph WHERE { BIND (skos:prefLabel AS ?p) GRAPH ?graph { { ?s...

Hi everyone. Java TestContainers [supports](https://github.com/testcontainers/testcontainers-java/issues/234) the privileged containers run. It might be really handy to use testcontainers on Fedora and other SELinux workstations. As far as i see, in this...

Hi everyone. So i am having this list of parsers in my parser for each case it could possibly have (there is also a recursive parser above which uses this...

Scala 2.13.8 Circe 0.14.1 Hi everyone. I am wondering if there is a way to correctly derive types like this: ```scala import io.circe.Codec import io.circe.generic.extras.semiauto.deriveConfiguredCodec import io.circe.generic.extras.Configuration sealed trait Tree...

Introduce switch api versions dropdown feature in Swagger UI header: ![image](https://github.com/softwaremill/tapir/assets/22966999/de3c7a53-1e83-437c-b170-df1d00403550) Originates from https://softwaremill.community/t/switch-api-versions-in-swagger-ui/210

enhancement

Recently i stuck with this error message: ``` java.lang.NullPointerException: Cannot invoke "cats.effect.IO.map(scala.Function1)" because "fa" is null ``` As is turned out, it means the mock can't find configured return answer...