Simão Martins
Simão Martins
It would be really nice if Input supported non ASCII characters such as á ã お etc. Assuming the terminal is configured with a font that supports those characters.
There are four `expect` methods: ``` def expect[A](s: String)(implicit d: EntityDecoder[F, A]): F[A] def expect[A](uri: Uri)(implicit d: EntityDecoder[F, A]): F[A] def expect[A](req: F[Request[F]])(implicit d: EntityDecoder[F, A]): F[A] def expect[A](req: Request[F])(implicit...
Fixes #6104
Given this template: ``` @(list: List[String]) @if(list.isEmpty) { Nothing to display } else { @list.size items! } ``` The generated html will be: ``` 2 items! ``` Notice that the...
scalapb generated code fails to compile in Scala 3 under these scalac flags: - `-new-syntax` - Require `then` and `do` in control expressions. - `-source:future` - Deprecates: private[this], `_` for...
**Is your feature request related to a problem? Please describe.** When an IDP has a lot of SPs registered it makes more sense to have each SP metadata in an...
https://www.consul.io/docs/agent/options.html#configuration-key-reference Notably acl configurations no longer use smurf notation and are now inside their own object: ``` acl { down_policy = "deny" tokens { master = "a master token" }...
Now that AWS has IPv6 supermarket could use it.
Fixes #1777. Code duplication has been refactored. When decoding a sum type the previous code would emit a DecodingFailure if the json contained more than one key, the new code...