-
## Reproduction steps
Scala version: 2.13.11
Reproducer is here: run `sbt test` showcases the behavior.
Changing scala version to 2.13.10 solves it.
https://github.com/DieBauer/scala-reprodu…
-
I noticed that in https://docs.kalix.io/java/event-sourced-entities.html#_testing_the_entity, there is a link to the API docs for `EventSourcedResult`.
The java one is pointing to a scaladoc. That…
-
By @dwijnand
This proposal seeks to address the problem of new users installing Scala, either with their package manager or with the distribution archives, and getting a setup that doesn't match ho…
-
## Compiler version
3.0.0
## Minimized code
```Scala
class A(val ref: Option[B]) {}
class B(override val ref: Option[B]) extends A(ref = ref) {}
```
## Output
runs fine, but when publish…
-
Right now extension methods are translated to ordinary functions and can be called as such:
```
extension (s: String) {
def sayHello: String = s"Hello, $s"
}
"world".sayHello // Hello, world
s…
-
**Is your feature request related to a problem? Please describe.**
As a user, I want to be able to provide secrets also for other parameters, beside of *BasicAuthMode*, e.g. for spark options to spec…
-
## Compiler version
3.1.2
## Minimized code
```Scala
import software.amazon.awssdk.services.dynamodb.model.*
class Test {
private def makeQuery = QueryRequest.builder().tableName("tabl…
-
After #731, if you try to generate code from
```smithy
$version: "2"
namespace demo
structure Hello {
/// the field
field: String
}
```
then you get this:
```scala
package dem…
-
I think the `Async` scaladoc contains incorrect information since #3002 was merged. I've already commented on that PR about this issue, but the problem is basically that (contrary to its scaladoc) `as…
-
It appears that attempt to parse a string literal (not enclosed in an object), leads to an error:
```scala
"Json.parse" should "work" in {
Json.parse("\"test\"")
}
```
yields
```
[in…