Skip to content

Commit c90ff64

Browse files
qwwdfsadintellij-monorepo-bot
authored andcommitted
doc [lsp]: new release
GitOrigin-RevId: 6f7a8e507a4c2c8690eca7c8f6745e30452ff5b0
1 parent 8d42e6a commit c90ff64

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

RELEASES.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,52 @@
33
This file contains TeamCity auto-generated download links that are updated on a weekly basis.
44
These are pre-alpha builds that are built directly from `master` branch after the initial acceptance.
55

6+
### v261.13587.0
7+
- :test_tube: **Kotlin LSP for VS Code Extension**
8+
Includes Kotlin Language Server bundled for use with Visual Studio Code
9+
* [Download for macOS-x64](https://download-cdn.jetbrains.com/kotlin-lsp/261.13587.0/kotlin-lsp-261.13587.0-mac-x64.vsix)  |  [SHA-256 checksum](https://download-cdn.jetbrains.com/kotlin-lsp/261.13587.0/kotlin-lsp-261.13587.0-mac-x64.vsix.sha256)
10+
* [Download for macOS-arm64](https://download-cdn.jetbrains.com/kotlin-lsp/261.13587.0/kotlin-lsp-261.13587.0-mac-aarch64.vsix)  |  [SHA-256 checksum](https://download-cdn.jetbrains.com/kotlin-lsp/261.13587.0/kotlin-lsp-261.13587.0-mac-aarch64.vsix.sha256)
11+
* [Download for Linux-x64](https://download-cdn.jetbrains.com/kotlin-lsp/261.13587.0/kotlin-lsp-261.13587.0-linux-x64.vsix)  |  [SHA-256 checksum](https://download-cdn.jetbrains.com/kotlin-lsp/261.13587.0/kotlin-lsp-261.13587.0-linux-x64.vsix.sha256)
12+
* [Download for Linux-arm64](https://download-cdn.jetbrains.com/kotlin-lsp/261.13587.0/kotlin-lsp-261.13587.0-linux-aarch64.vsix)  |  [SHA-256 checksum](https://download-cdn.jetbrains.com/kotlin-lsp/261.13587.0/kotlin-lsp-261.13587.0-linux-aarch64.vsix.sha256)
13+
* [Download for Windows-x64](https://download-cdn.jetbrains.com/kotlin-lsp/261.13587.0/kotlin-lsp-261.13587.0-win-x64.vsix)  |  [SHA-256 checksum](https://download-cdn.jetbrains.com/kotlin-lsp/261.13587.0/kotlin-lsp-261.13587.0-win-x64.vsix.sha256)
14+
* [Download for Windows-arm64](https://download-cdn.jetbrains.com/kotlin-lsp/261.13587.0/kotlin-lsp-261.13587.0-win-aarch64.vsix)  |  [SHA-256 checksum](https://download-cdn.jetbrains.com/kotlin-lsp/261.13587.0/kotlin-lsp-261.13587.0-win-aarch64.vsix.sha256)
15+
16+
- :card_index_dividers: **Standalone Kotlin LSP ZIP Archive**
17+
Standalone Kotlin Language Server version for editors other than VS Code
18+
* [Download for macOS-x64](https://download-cdn.jetbrains.com/kotlin-lsp/261.13587.0/kotlin-lsp-261.13587.0-mac-x64.zip)  |  [SHA-256 checksum](https://download-cdn.jetbrains.com/kotlin-lsp/261.13587.0/kotlin-lsp-261.13587.0-mac-x64.zip.sha256)
19+
* [Download for macOS-arm64](https://download-cdn.jetbrains.com/kotlin-lsp/261.13587.0/kotlin-lsp-261.13587.0-mac-aarch64.zip)  |  [SHA-256 checksum](https://download-cdn.jetbrains.com/kotlin-lsp/261.13587.0/kotlin-lsp-261.13587.0-mac-aarch64.zip.sha256)
20+
* [Download for Linux-x64](https://download-cdn.jetbrains.com/kotlin-lsp/261.13587.0/kotlin-lsp-261.13587.0-linux-x64.zip)  |  [SHA-256 checksum](https://download-cdn.jetbrains.com/kotlin-lsp/261.13587.0/kotlin-lsp-261.13587.0-linux-x64.zip.sha256)
21+
* [Download for Linux-arm64](https://download-cdn.jetbrains.com/kotlin-lsp/261.13587.0/kotlin-lsp-261.13587.0-linux-aarch64.zip)  |  [SHA-256 checksum](https://download-cdn.jetbrains.com/kotlin-lsp/261.13587.0/kotlin-lsp-261.13587.0-linux-aarch64.zip.sha256)
22+
* [Download for Windows-x64](https://download-cdn.jetbrains.com/kotlin-lsp/261.13587.0/kotlin-lsp-261.13587.0-win-x64.zip)  |  [SHA-256 checksum](https://download-cdn.jetbrains.com/kotlin-lsp/261.13587.0/kotlin-lsp-261.13587.0-win-x64.zip.sha256)
23+
* [Download for Windows-arm64](https://download-cdn.jetbrains.com/kotlin-lsp/261.13587.0/kotlin-lsp-261.13587.0-win-aarch64.zip)  |  [SHA-256 checksum](https://download-cdn.jetbrains.com/kotlin-lsp/261.13587.0/kotlin-lsp-261.13587.0-win-aarch64.zip.sha256)
24+
25+
##### Changelog
26+
27+
#### 🛠 LSP capabilities
28+
29+
* Full support of inlay hints with a fine-grained configuration via `jetbrains.kotlin.hints.*` LS settings
30+
31+
#### ✨ UX improvements
32+
33+
* Zero-dependencies platform-specific builds -- no JDK required by default, the language server bundles its own
34+
* Code completion revamp: suggesting order is now on par with IJ and more relevant
35+
* Code completion latency is ~30% better
36+
* `kotlinLSP.jdkForSymbolResolution` option to specify JDK version that will be used as a dependency for symbol resolution
37+
* LS now checks JDK/Gradle versions compatibility and fails gracefully in the case of incompatible changes
38+
* Indicies are now stored in a dedicated folder and are properly shared between multiple projects and LS instances
39+
* All inspections and intentions are now using `mod command` which a more robust approach for LSP-like protocols
40+
41+
#### Other
42+
43+
* More indexing fixes on Windows
44+
* Smaller bundle size on every platform
45+
* Improved Gradle import performance
46+
* Better JDK selection for Gradle import when multiple options are present
47+
* Native filewatcher lib is now signed on OS X in release builds
48+
* Native filewatcher lib is now linked with `libgcc` statically
49+
* Compiler plugins support for JPS and .json-based imports
50+
51+
652
### v0.253.10629
753
- :test_tube: **Kotlin for VS Code Extension**
854
Includes the Kotlin Language Server bundled for use with Visual Studio Code.

0 commit comments

Comments
 (0)