Nikolay Artamonov
Nikolay Artamonov
ZIO 2.x provides generic `ZLogger[Message, Output]` trait which allows to implement more "structured" logging where input `Message` is a product type and `Output` is JSON, for example: ```scala abstract class...
Sometimes ZIO-services contain not only effectful methods, but also pure methods. It should be possible to access those methods via `Accessible` helper. Added overloaded `apply(f: R => A)` to `Accessible`...
I am quite surprised by the absence of the common function to capitalize the first letter of a string. Yes, we have `toTitle` but its behaviour is different to what...
There are no comprehensive manuals that list the commands provided by the extension, their meaning and corresponding key bindings. So it's problematic to discover functionality of the plugin. When new...
**Is your feature request related to a problem? Please describe.** Validation of substituted content (as effect of resolving `$ref`s) leads to confusing error reports. For example, we have the following...
Currently `Http.fromResource` is able to provide file resources only. However, it is often necessary to provide a resource that is inside a JAR archive. For example, if you run an...
Since `HeaderValues` is a public object and contains constants for often-used values, the first intent of a user is to reuse the constants in his tests, something like: ```scala import...
It seems that cljs-time supports two different data structures: interval and period. They available in public API via `cljs-time.core/interval` and `cljs-time.core/period`. Only interval is documented. What's purpose for period and...
I have the following generic model of responses from a server API: ```scala sealed trait Status[+E, +A] final case class Error[E](error: E) extends Status[E, Nothing] final case class Fatal(reason: String)...
```cmd λ cs.exe version 2.1.0-M7-34-gf519b50a3 λ cs.exe resolve org.eclipse.platform:org.eclipse.swt.win32.win32.x86_64:3.121.0 Resolution error: Error downloading org.eclipse.platform:org.eclipse.swt.${osgi.platform}:[3.121.0] not found: C:\Users\nartamonov\.ivy2\local\org.eclipse.platform\org.eclipse.swt.${osgi.platform} not found: https://repo1.maven.org/maven2/org/eclipse/platform/org.eclipse.swt.${osgi.platform}/maven-metadata.xml ``` Related issue in SBT: sbt/sbt#6961.