Ilya Brin
Ilya Brin
Sample fiddle: https://jsfiddle.net/wcoshgaL/4/ I have a helper that sets `value=omg` in context and `value=1` in block params. The template correctly renders the value from the block params. Inside that, I...
Hi, I'd like to do something like the following: ``` // set `latest` tag for `publishLocal` but not `publish` - locally I just want to be able to `docker run...
**Is your feature request related to a problem? Please describe.** Not exactly a problem, but when creating `RoutePatterns`, you can do something like the following: ```scala val pattern: RoutePattern[(Int, Long,...
**Describe the bug** Trying to get a `BinaryCodec` from a `Schema` fails for `sealed trait` / `case object` hierarchies. Given the following class hierarchy: ```scala sealed trait Foo derives Schema...
**Is your feature request related to a problem? Please describe.** The current implementation of the `ContentSecurityPolicy` header only supports a single directive. This header typically includes multiple directives. **Describe the...
resolves https://github.com/zio/zio-http/issues/3719
Typesafe config supports [setting array values outside configuration files](https://github.com/lightbend/config?tab=readme-ov-file#set-array-values-outside-configuration-files). However, this appears broken in `zio-config`. Here's sample code showing it working correctly directly via typesafe config, as well as in...
sample `build.sbt`: ``` lazy val literalThing = (project in file("literalThing")).settings( libraryDependencies ++= Seq( "com.comcast" %% "ip4s-core" % "3.6.0" ) ) ``` `literalThing/src/main/scala/Main.scala`: ``` import com.comcast.ip4s.* object Main { def main(args:...