Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump JLine 3.19.0 -> 3.24.1 & sbt 1.9.7 -> 1.9.9 (#19744)
Fixes #5755, #19704 Tested locally and the difference in behaviour was observed. I'm not sure how to test it with the CI, if anybody has an idea, please let me know. Also, this issue might be a problem sbt/sbt#7177 Tested as follow: - Observe that the issue in `3.4.1-RC1` ```scala scala-cli repl -S 3.4.1-RC1 Welcome to Scala 3.4.1-RC1 (17.0.7, Java Java HotSpot(TM) 64-Bit Server VM). Type in expressions for evaluation. Or try :help. scala> class 😃 // defined class 😃 scala> cclas -- [E006] Not Found Error: ----------------------------------------------------- 1 |clas |^^^^ |Not found: clas - did you mean caps? | | longer explanation available when compiling with `-explain` 1 error found scala> ``` - Publish dotty locally with the correct jline version - Observe that the issue is fixed ```scala scala-cli repl -S 3.4.2-RC1-bin-SNAPSHOT Welcome to Scala 3.4.2-RC1-bin-SNAPSHOT-git-174d4c6 (17.0.7, Java Java HotSpot(TM) 64-Bit Server VM). Type in expressions for evaluation. Or try :help. scala> class 😃 // defined class 😃 scala> clas -- [E006] Not Found Error: ----------------------------------------------------- 1 |clas |^^^^ |Not found: clas - did you mean caps? | | longer explanation available when compiling with `-explain` 1 error found scala> ``
- Loading branch information