Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update fork to all the newest deps and code #162

Merged
merged 52 commits into from Mar 27, 2024
Merged

Update fork to all the newest deps and code #162

merged 52 commits into from Mar 27, 2024

Commits on Mar 27, 2024

  1. Copy the full SHA
    c0cf7bd View commit details
    Browse the repository at this point in the history
  2. bugfix: Make sure proper runtime classpath is used when debugging

    Previously, we would use the default config, which would not always be correct. Now, we use runtime config with a fallback to normal platform config.
    tgodzik committed Mar 27, 2024
    Copy the full SHA
    c7e5663 View commit details
    Browse the repository at this point in the history
  3. Implement buildTargetDependencyModules

    Arthur McGibbon authored and tgodzik committed Mar 27, 2024
    Copy the full SHA
    67ea1de View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    1efba78 View commit details
    Browse the repository at this point in the history
  5. Update scala log4j to 2.22.0

    tgodzik committed Mar 27, 2024
    Copy the full SHA
    abf36a5 View commit details
    Browse the repository at this point in the history
  6. Update scalafmt to 3.7.17

    tgodzik committed Mar 27, 2024
    Copy the full SHA
    82ad3a2 View commit details
    Browse the repository at this point in the history
  7. Copy the full SHA
    57e567c View commit details
    Browse the repository at this point in the history
  8. improvement: Change information about test framework to warn

    Previously, this would be set to error, which would mean Metals would show it to the users more prominently. Now, we change it to warn, which means it's still present, but since this might be actually be related to non compiled code, it's prominence is reduced,
    tgodzik committed Mar 27, 2024
    Copy the full SHA
    875b026 View commit details
    Browse the repository at this point in the history
  9. Copy the full SHA
    da9f796 View commit details
    Browse the repository at this point in the history
  10. Copy the full SHA
    a301dd5 View commit details
    Browse the repository at this point in the history
  11. Copy the full SHA
    17758c2 View commit details
    Browse the repository at this point in the history
  12. Update brave to 5.17.0

    tgodzik committed Mar 27, 2024
    Copy the full SHA
    bfe0b3b View commit details
    Browse the repository at this point in the history
  13. Copy the full SHA
    659251a View commit details
    Browse the repository at this point in the history
  14. Update scala log4j to 2.22.1

    tgodzik committed Mar 27, 2024
    Copy the full SHA
    e386dc7 View commit details
    Browse the repository at this point in the history
  15. refactor: Remove forked parts of scala js envs

    As far as I can see this should work properly and it hits us even more to have duplicated part of code that is not maintained.
    tgodzik committed Mar 27, 2024
    Copy the full SHA
    d4943b9 View commit details
    Browse the repository at this point in the history
  16. Copy the full SHA
    2a4ee42 View commit details
    Browse the repository at this point in the history
  17. Copy the full SHA
    41ce771 View commit details
    Browse the repository at this point in the history
  18. Update scalajs to 1.15.0

    tgodzik committed Mar 27, 2024
    Copy the full SHA
    2859c3a View commit details
    Browse the repository at this point in the history
  19. bugfix: Print copying error together with stacktrace

    It seems we don't get that properly forwarded to Bloop otherwise.
    tgodzik committed Mar 27, 2024
    Copy the full SHA
    168213f View commit details
    Browse the repository at this point in the history
  20. Update brave to 5.17.1

    tgodzik committed Mar 27, 2024
    Copy the full SHA
    3f3e366 View commit details
    Browse the repository at this point in the history
  21. Copy the full SHA
    3377c43 View commit details
    Browse the repository at this point in the history
  22. Update brave to 5.18.1

    tgodzik committed Mar 27, 2024
    Copy the full SHA
    e126bd8 View commit details
    Browse the repository at this point in the history
  23. Fixes misspelling runing -> running

    Marcus-Rosti authored and tgodzik committed Mar 27, 2024
    Copy the full SHA
    38d4ce7 View commit details
    Browse the repository at this point in the history
  24. Update native tools to 0.4.17

    tgodzik committed Mar 27, 2024
    Copy the full SHA
    bbcb489 View commit details
    Browse the repository at this point in the history
  25. Update bsp to 2.1.1

    tgodzik committed Mar 27, 2024
    Copy the full SHA
    035cc56 View commit details
    Browse the repository at this point in the history
  26. Copy the full SHA
    392ecf8 View commit details
    Browse the repository at this point in the history
  27. Copy the full SHA
    b79b50c View commit details
    Browse the repository at this point in the history
  28. Update zt-zip to 1.17

    tgodzik committed Mar 27, 2024
    Copy the full SHA
    f0e27de View commit details
    Browse the repository at this point in the history
  29. Revert "Update upload/download artifact to v4"

    This reverts commit 41ce771.
    tgodzik committed Mar 27, 2024
    Copy the full SHA
    511d853 View commit details
    Browse the repository at this point in the history
  30. Copy the full SHA
    13aa5e9 View commit details
    Browse the repository at this point in the history
  31. Copy the full SHA
    8ba9e78 View commit details
    Browse the repository at this point in the history
  32. Fix classpathOptions of scala compilers

    adpi2 authored and tgodzik committed Mar 27, 2024
    Copy the full SHA
    779c7a9 View commit details
    Browse the repository at this point in the history
  33. Run scalafix

    adpi2 authored and tgodzik committed Mar 27, 2024
    Copy the full SHA
    644c11b View commit details
    Browse the repository at this point in the history
  34. enable hcr + single source test

    iusildra authored and tgodzik committed Mar 27, 2024
    Copy the full SHA
    871752b View commit details
    Browse the repository at this point in the history
  35. Copy the full SHA
    d850230 View commit details
    Browse the repository at this point in the history
  36. refactor: don't send task start/end for no-op compilations

    This might be a bit opinionated and I'm not 100% sure on the reason this
    was done in the first place, but this changes the current behavior
    around reporting start and end compilations for no-ops. This still
    retains the compile report if it was a no-op and also still checks the
    diagnostics and reports them, but skips the task start/end.
    
    Originally this was added in a commit without any context... but there
    was a comment that said:
    
    > // When no-op, we keep reporting the start and the end of compilation for consistency
    
    However, I'm not really sure that consistency matters here. In reality
    this ends up creating a bunch of noise on the client side, especially
    when these tasks turn into LSP progress notifications that aren't useful
    for the user to see. You can see more context about this change in the
    issue reported [here](scalameta/metals#6099)
    and also the discussion found
    [here](build-server-protocol/build-server-protocol#654).
    It also seems that in some projects like scala-cli these are even [ignored](https://github.com/VirtusLab/scala-cli/blob/6b7a10007e4eefde717079255e0df38c027f788b/modules/build/src/main/scala/scala/build/ConsoleBloopBuildClient.scala#L109).
    ckipp01 authored and tgodzik committed Mar 27, 2024
    Copy the full SHA
    0ece9e5 View commit details
    Browse the repository at this point in the history
  37. refactor and make it work

    adpi2 authored and tgodzik committed Mar 27, 2024
    Copy the full SHA
    01f9e7e View commit details
    Browse the repository at this point in the history
  38. Update scalafmt to 3.8.0

    tgodzik committed Mar 27, 2024
    Copy the full SHA
    9566991 View commit details
    Browse the repository at this point in the history
  39. Update log4j-core to 2.23.0

    tgodzik committed Mar 27, 2024
    Copy the full SHA
    268b99a View commit details
    Browse the repository at this point in the history
  40. Copy the full SHA
    2f5d0f1 View commit details
    Browse the repository at this point in the history
  41. chore: Update Scala versions

    tgodzik committed Mar 27, 2024
    Copy the full SHA
    3391612 View commit details
    Browse the repository at this point in the history
  42. chore: Update also semanticdb

    tgodzik committed Mar 27, 2024
    Copy the full SHA
    ecdf70c View commit details
    Browse the repository at this point in the history
  43. Copy the full SHA
    9bc323b View commit details
    Browse the repository at this point in the history
  44. Copy the full SHA
    9192e6e View commit details
    Browse the repository at this point in the history
  45. fix: correctly parse java version

    kasiaMarek authored and tgodzik committed Mar 27, 2024
    Copy the full SHA
    34ad4cc View commit details
    Browse the repository at this point in the history
  46. Copy the full SHA
    a17873d View commit details
    Browse the repository at this point in the history
  47. Copy the full SHA
    7c0c0a1 View commit details
    Browse the repository at this point in the history
  48. Update scalajs to 1.16.0

    tgodzik committed Mar 27, 2024
    Copy the full SHA
    69699b4 View commit details
    Browse the repository at this point in the history
  49. Update asm to 9.7

    tgodzik committed Mar 27, 2024
    Copy the full SHA
    e9e291b View commit details
    Browse the repository at this point in the history
  50. Fix mill.sc

    tgodzik committed Mar 27, 2024
    Copy the full SHA
    debb37f View commit details
    Browse the repository at this point in the history
  51. Fix ci and formatting

    tgodzik committed Mar 27, 2024
    Copy the full SHA
    7653717 View commit details
    Browse the repository at this point in the history
  52. Copy the full SHA
    aecb40a View commit details
    Browse the repository at this point in the history