Nabil Abdel-Hafeez
Nabil Abdel-Hafeez
This can be used to add custom url handlers to coursier, so scala-steward could for example reach s3 buckets, google cloud storage or artifactregistry. See https://get-coursier.io/docs/extra.html#extra-protocols and https://github.com/coursier/coursier/issues/1987
Via the sbt the setting `csrConfiguration` it is possible to add not only repo specific basic auth, but also add headers to authenticate via OAuth2 for example. This is (as...
The new github feature of auto merge, let you enable github to automatically merge a pr if all checks are passing. I suggest, that scala steward should have an option,...
I have the following zio logging slf4j setting ```scala SLF4J.slf4j( LogLevel.Info, LogFormat.line, { case Trace(_, file, _) if file == "AccessLogger.scala" => "access" case _ => "application" }, ), ```...
### Problem A jdbc Instant encoder/decoder is missing. It is available in classic quill. ### Solution Ported the code from quill classic. @getquill/maintainers
Just a simple String representation of all query params `?k1=v1&k2=v2...` Maybe add a proxy to `Request`
I do understand, that the main way to create en-/decoders are macros. But in my experience, you always have some cases, where you'd like to have some custom ones. I...
Hey! I thought about a way to provide named injection for Scala 3 and came up with the following ```scala import zio.* opaque type WithName[+A, Name (a: A) => create[Name,...
Scala 3 + ZIO 2.0.1 ```scala object AssertSpec extends ZIOSpecDefault: override def spec: Spec[Any, Any] = test(""){ val one = 1 val two = 2 val three = 3 val...
**Describe the bug** Combining two apps with different auth middlewares leads to unexpected 401 returns. **To Reproduce** This happens in version `2.0.0-RC10` Let's assume we have have 3 Http instances,...