Ondra Pelech

Results 91 issues of Ondra Pelech

Hello, could you please publish this extension to https://open-vsx.org/ ? It's an open repository for VS Code-like editors, like VS Codium or Theia. Thank you :pray:

Hello, does it make sense for `hie-bios` to support the [BSP (Build Server Protocol)](https://github.com/scalacenter/bsp)? It's analogous to LSP, but for integration with build tools.

Technically a breaking change, but very small and it's worth the simplification and we're still before 1.0.0 proper :crossed_fingers:

Backport of https://github.com/scala/scala/pull/10118 /cc @lrytz @xuwei-k

The foojay Disco API is a general purpose API to discover builds of OpenJDK from different distributions. It should allow for automation instead of manually maintaining own metadata. https://github.com/foojay2020/discoapi

Case classes are incredibly useful for configuration, e.g. with PureConfig. They are tricky with regards to backward compatibility. But with the way as done here, backward compatibility will be maintained....

module:ember-client
module:ember-server
series/0.23

```scala import pureconfig._ import pureconfig.generic.derivation.default._ case class Person(name: String, age: Int = -1) derives ConfigReader println(ConfigSource.string("{ name = foo }").load[Person]) ``` prints ```scala Left(ConfigReaderFailures(ConvertFailure(KeyNotFound(age,Set()),None,age))) ``` https://scastie.scala-lang.org/HdRYEUzCRme8LH4zffzlPQ (Expected result is `Right(Person(foo,-1))`)

### The problem I'm afraid the current implementation for Scala is essentially incorrect. The version of Scala is driven by a build tool (e.g. sbt). This prompt seems to print...

bug