OlegYch
OlegYch
On windows at 49e8c80991488e35b067b4d85f2f08189749f19a tests hang somewhere in native code: ``` "pool-7-thread-1-ScalaTest-running-IOSpec@21259" prio=5 tid=0x69 nid=NA runnable java.lang.Thread.State: RUNNABLE at com.sun.jna.Native.initIDs(Native.java:-1) at com.sun.jna.Native.(Native.java:216) at com.sun.jna.platform.win32.Kernel32.(Kernel32.java:42) at sbt.internal.io.WinMilli$.getHandle(Milli.scala:275) at sbt.internal.io.WinMilli$.getModifiedTimeNative(Milli.scala:293) at sbt.internal.io.WinMilli$.getModifiedTimeNative(Milli.scala:271)...
with a build like this ``` lazy val api = ProjectMatrix(id = "api", base = file("api")) .settings(name := "api", scalaVersion := "2.12.0") .jvmPlatform(List("2.12.0", "2.13.0")) ``` publishLocal ignores cross versions and...
like worksheet in eclipse/intellij does
## Compiler version 3.5.0-RC1-3.5.1-RC1-bin-20240613-61a15b2-NIGHTLY ## Minimized code can't really minimize, but i hope the error message is enough here is an approximation but for some reason it doesn't produce a...
Turns out sbt doesn't care if generated sources are modified further, so all that was needed was to change outStyle from hashing to exists. In addition i hooked up new...
I couldn't find a way to hook scalafmt into generated guardrail sources. Ideally it should run automatically without need for manual configuration, but that's probably sbt or scalafmt responsibility.
Some (if not most) specs don't actually distinguish between a field being non-required and being null. So it would be nice to avoid using Presence for them. Ie, please allow...
Would be great to promote "description" fields from spec to comments in generated code
using spec like this ``` { "openapi": "3.0.2", "components": { "schemas": { "test": { "type": "object", "properties": { "method": { "type": "string", "default": "", "example": "TEXT", "nullable": true } },...
## Compiler version 3.3-3.5 with -no-indent option ## Minimized code ```scala 1 match { case 1 => case class Test(name: String) Nil } ``` ## Output ```scala 4 | Nil...