Metals v0.11.6 - Aluminium
We're happy to announce the release of Metals v0.11.6 which continues to improve the Scala 3 support along with many other fixes.
Commits since last release | 165 |
Merged PRs | 56 |
Contributors | 12 |
Metals is a language server for Scala that works with VS Code, Vim, Emacs and Sublime Text. Metals is developed at the Scala Center and VirtusLab with the help from Lunatech along with contributors from the community.
TL;DR
- reduce memory usage in large projects
- override completions for Scala3
- improved scaladoc support in both Scala2 and Scala3
- better UX in the test explorer
- automatically setup java home for the Bloop build server
- support for Scala 3.1.3-RC3 and RC4
Check out https://scalameta.org/metals/, and give Metals a try!
Reduce file watcher memory usage
Previously, Metals consumed a huge amount of memory for file watchers in large projects, especially on macOS. Now, Metals uses a memory-efficient way to watch files to detect changes and consume less memory.
For more technical details, see the original PR: #3758.
[Scala3] Override Completions
Override completions for Scala3 are now available with Metals 0.11.6! Now, Metals shows the scaladoc on hover for Scala3 projects. (Before this release, Metals was unable to show the scaladoc for the symbols from third-party modules).
[Scala3] Show scaladoc on hover for Scala 3 project
Previously, scaladocs were missing for a lot of classes and methods in Scala 3, especially for the symbols from third-party modules. From this release, Metals will always show the scaladoc on hover for Scala3 projects.
[Scala3] Support completionItem/resolve
completionItem/resolve
is a feature that provides on-demand, more detailed information when moving through the list of suggested completions. It will show documentation, proper parameter names for Java methods, and default values for Scala 3 methods. Now, this is also available for use in Scala 3.
Show parent scaladoc if implementation is returning empty
Scaladocs can be inspected whenever you hover, use a completion or signature help. Up until recently we only showed you the documentation if the exact method you are using had the scaladocs written, which meant that if you overrode a method and didn't add the scaladoc comments again we would not show you any documentation. One example of such method is headOption
on List
.
From this release we will also search the parent method in case the current method's scaladoc are empty.
[Scala 3] Show scaladocs for signature help
As mentioned in the previous paragraph, Metals can show you documentation in three different places. That, however, was true only for Scala 2 previously. In this release, we will now show you proper documentation whenever invoking signature help.
As a reminder, signature help is used to indicate what parameters can be used in a method. It should pop up automatically after writing (
, but you can also invoke it manually. In VS Code that takes the form of editor.action.triggerParameterHints
command, which can also be bound to a shortcut and by default is.
[MUnit] Test Explorer can find helper methods from parent classes
MUnit allows to use helper functions when declaring tests. Very often those helper methods are extracted to some parent classes which are extended by many test suites. Now, Metals can find usages of those helper methods and display them in Test Explorer.
This feature is available for Bloop and SBT 1.7.0-M2 or later.
Support Cats Effect stacktraces in stacktrace analyzer
Cats Effect offers asynchronous stack tracing which augments exceptions with additional information.
Now, Stacktrace Analyzer is able to recognize CE's stacktraces and provide link to location in code. Say no to tedious debugging when you have only stacktrace from the logs!
Improve implement all completion and code action
Previously, when we invoked the "implement all members" completion and code action, Metals used x$0
for Java parameter names. Now, Metals fills these with the correct parameter names.
Improve rewrite to braces/parenthesis code action
Sometimes, it wasn't clear which code would be affected by rewrite to braces/parenthesis code action. Now, code action's description contains name of the function/method which will be affected by executing action. Theme: One Dark Pro
Automatically setup java home for the Bloop build server
In previous versions of Metals, if users wanted to change the java version of the Bloop build server, they would need to manually update .bloop/bloop.json
file in their user home directory. With this version, we ensure that the Bloop Java version will correspond to Metals one to avoid weird compilation issues that could arise from different versions being used.
Now, each time you update javaHome
or bloopJvmProperties
settings, Metals will ask you whether to forward those changes to the Bloop configuration file. If you modified that file previously or want to use a custom one, you can dismiss the Metals notification. Otherwise, everything will automatically be set up for you once you decide to apply the changes. If you never created the file, we will create it before starting Bloop, so you should not notice anything out of order.
Support for Scala 3.1.3-RC4, 3.1.3-RC3
Metals 0.11.6 supports Scala 3.1.3-RC3 and RC4.
Contributors
Big thanks to everybody who contributed to this release or reported an issue!
$ git shortlog -sn --no-merges v0.11.5..v0.11.6
34 Rikito Taniguchi
18 Tomasz Godzik
14 Scala Steward
11 Vadim Chelyshov
10 zmerr
7 Kamil Podsiadlo
5 Pavol Vidlička
5 ckipp01
4 Arman Bilge
2 Ian Tabolt
1 Arthur McGibbon
1 tgodzik
Merged PRs
v0.11.6 (2022-06-03)
Merged pull requests:
- bugfix: Escape java home path on windows #3969 (tgodzik)
- bugfix: Remove Wconf from scalac options in worksheets #3976 (tgodzik)
- bugfix: Show all synthetics inside for comprehensions #3974 (tgodzik)
- fix: revert temporal changes in completions tests for 3.2.*-NIGHTLY #3970 (dos65)
- docs: remove status-bar as option for slowTaskProvider #3967 (ckipp01)
- bugfix: Fallback to sourcepath if jar cannot be found #3962 (tgodzik)
- fix: prevent npe in filewatcher #3964 (dos65)
- feat: add function name to rewrite parens/braces code action #3965 (kpodsiad)
- (scala3) Override completions #3897 (tanishiking)
- actions: return release job lock #3944 (dos65)
- Fix SBT version check in Doctor #3946 (iantabolt)
- Fix issues with synthetics in for comprehension's yield #3948 (tgodzik)
- chore: Add support for Scala 3.1.3-RC4 #3947 (tgodzik)
- Update Bloop Java Home to that of Metals #3871 (zmerr)
- chore: speedup lsp tests #3925 (dos65)
- feature: [Scala 3] Show correct inferred type in signature help #3941 (tgodzik)
- docs(test-explorer): add note about test-user-interface #3943 (ckipp01)
- fix: avoid out of bounds for editors that treat \n as a line end #3942 (ckipp01)
- feature: Show scaladocs for signature help #3934 (tgodzik)
- update
metals_ref
for mtags-release #3940 (dos65) - Fix nightlies tests and uncomment SignaturePat suite tests #3932 (tgodzik)
- Include proper names when using implement all completion and code action #3930 (tgodzik)
- Fix expression type for inlined methods and show all flags for methods #3931 (tgodzik)
- feature: [Scala 3] Add completion item resolution #3914 (tgodzik)
- chore(docs): ensure metals_2.12 is replaced with metals_2.13 #3924 (ckipp01)
- fix: symbolSearch - support encoded names from classpath #3917 (dos65)
- Update scalafmt-dynamic to 3.5.3 #3921 (scala-steward)
- Update mill-contrib-testng to 0.10.4 #3920 (scala-steward)
- Update scalameta, semanticdb-scalac, ... to 4.5.6 #3922 (scala-steward)
- Update scalafmt-core to 3.5.3 #3916 (scala-steward)
- chore: update scala3 version in welcome msg #3919 (kpodsiad)
- chore, docs: simplify cats-effect stacktrace regex, add docstring #3918 (kpodsiad)
- refactor: fix warning from Scala3 in ScaladocParser.scala #3912 (tanishiking)
- Add support for Scala 3.1.3-RC3 #3911 (tgodzik)
- Update Bloop and Scala Debug adapter #3910 (tgodzik)
- fix: scala3 - do not provide completions for invalid quals #3909 (dos65)
- feat, test explorer: search for test methods in parent classes #3898 (kpodsiad)
- Add semanticdb-javac to
TestInternal
#3907 (armanbilge) - Update munit to newest milestone #3906 (tgodzik)
- docs: fix broken documents (Integrating a new editor) #3905 (tanishiking)
- fix: broken link display in vim docs #3904 (ckipp01)
- feat: handle cats-effect async stacktrace in stacktrace analyzer #3900 (kpodsiad)
- Don't create the Presentation Compiler for Java files #3887 (tgodzik)
- Handle modules in stacktrace analyzer #3896 (Arthurm1)
- Update scalafmt-dynamic to 3.5.2 #3893 (scala-steward)
- Update ujson to 2.0.0 #3890 (scala-steward)
- Update xnio-nio to 3.8.7.Final #3892 (scala-steward)
- Update flyway-core to 8.5.10 #3891 (scala-steward)
- Update ammonite-util to 2.5.3 #3889 (scala-steward)
- Reduce file watcher memory usage #3758 (pvid)
- Update scalameta, semanticdb-scalac, ... to 4.5.5 #3894 (scala-steward)
- docs: fix latest versions #3886 (dos65)
- Show parent scaladoc if implementation is returning empty #3881 (tgodzik)
- Add scaladocs on hover for Scala 3 #3865 (tanishiking)
- 0.11.5 - update versions #3883 (dos65)
- 0.11.5 release notes #3882 (dos65)