counter2015
counter2015
Tapir version: 0.19.3 Scala version: 2.13.7 **Describe the Problem** In [rfc6266](https://datatracker.ietf.org/doc/html/rfc6266) > The parameters "filename" and "filename*" differ only in that "filename*" uses the encoding defined in [RFC5987], allowing the...
**Version**: `3.19.0` **Module**: `quill-jdbc-zio` **Database**: postgres ### Expected behavior ```scala val a: ZIO[Has[DataSource], SQLException, Long] = ??? val b: ZIO[Has[DataSource], SQLException, Long] = ??? // expected type ZIO[Has[DataSource], SQLException, Long]...
**Version**: 3.16.3 **Module**: quill-jdbc-zio **Database**: postgres postgres drvier version: 42.3.3 ### Steps to reproduce the behavior Some code is omitted for readability ```scala case class MyCaseClass(column_1: String) querySchema[MyCaseClass]("my_table") .filter(_.column_1 ==...
### Versions used Akka grpc version: 2.1.4 ``` // plugins.sbt addSbtPlugin("com.lightbend.akka.grpc" % "sbt-akka-grpc" % "2.1.4") ``` ### Expected Behavior It should compile well with this dependency. ```scala val sttpClient =...
In scala 2.13.5, the match expression will raise inexhaustive warning for following code ```scala // warning: match may not be exhaustive. It would fail on the following inputs: Error(_, _),...
fix typo
# Verison ``` val http4sBlaze = "0.23.12" val http4s = "0.23.13" val http4s = Seq( "org.http4s" %% "http4s-blaze-server" % http4sBlaze, "org.http4s" %% "http4s-blaze-client" % http4sBlaze, "org.http4s" %% "http4s-core" % http4s,...
## Reproduction steps Scala Version: 2.13.8 I cant reproduce it by raw scala, it's only reproduce in akka function. I'm not sure if the bug is also related to `akka`....
**Describe the bug** In [RESTAPI doc](https://www.ory.sh/keto/docs/reference/rest-api#delete-a-relation-tuple) It says parameter `subject` is not required. But in code here https://github.com/ory/keto/blob/2e93d996576842707f7c65dd7b5d7bd0c917331b/internal/persistence/sql/relationtuples.go#L178-L192 `whereSubject` verify `subject` https://github.com/ory/keto/blob/2e93d996576842707f7c65dd7b5d7bd0c917331b/internal/persistence/sql/relationtuples.go#L172-L173 **Reproducing the bug**  **Expected behavior** It should...
## reproduction steps ```scala Welcome to Scala 2.13.1 (Java HotSpot(TM) 64-Bit Server VM, Java 1.8.0_181). Type in expressions for evaluation. Or try :help. scala> def lazyMap[T, U](coll: Iterable[T], f: T...