Commit a015a15
authored
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> ``File tree
3 files changed
+6
-6
lines changed- compiler/test-coursier/dotty/tools/coursier
- project
3 files changed
+6
-6
lines changedLines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
76 | 76 | | |
77 | 77 | | |
78 | 78 | | |
79 | | - | |
| 79 | + | |
80 | 80 | | |
81 | 81 | | |
82 | 82 | | |
| |||
133 | 133 | | |
134 | 134 | | |
135 | 135 | | |
136 | | - | |
| 136 | + | |
137 | 137 | | |
138 | 138 | | |
139 | 139 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
624 | 624 | | |
625 | 625 | | |
626 | 626 | | |
627 | | - | |
628 | | - | |
629 | | - | |
| 627 | + | |
| 628 | + | |
| 629 | + | |
630 | 630 | | |
631 | 631 | | |
632 | 632 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
| 1 | + | |
0 commit comments