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

Release of ocaml-lsp-1.20.1 #2892

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions data/changelog/ocaml-lsp/2024-12-23-ocaml-lsp-1.20.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
title: OCaml-LSP 1.20.1
tags: [ocaml-lsp, platform]
changelog: |
## Features
- Add custom `ocamllsp/typeSearch` request ([#1369](https://github.com/ocaml/ocaml-lsp/pull/1369))
- Make MerlinJump code action configurable ([#1376](https://github.com/ocaml/ocaml-lsp/pull/1376))
- Add custom `ocamllsp/jump` request ([#1374](https://github.com/ocaml/ocaml-lsp/pull/1374))

## Fixes
- Deactivate the jump code actions by default. Clients can enable them with the `merlinJumpCodeActions` configuration option. Alternatively, a custom request is provided for ad hoc use of the feature. ([#1411](https://github.com/ocaml/ocaml-lsp/pull/1411))
- Fix FD leak in running external processes for preprocessing ([#1349](https://github.com/ocaml/ocaml-lsp/pull/1349))
- Fix prefix parsing for completion of object methods ([#1363](https://github.com/ocaml/ocaml-lsp/pull/1363), fixes [#1358](https://github.com/ocaml/ocaml-lsp/issues/1358))
- Remove some duplicates in the `selectionRange` answers ([#1368](https://github.com/ocaml/ocaml-lsp/pull/1368))
---

We are excited to share the release of **OCaml-LSP 1.20.1**, which introduces powerful new features and vital bug fixes to improve your development workflow. The new `typeSearch` request allows you to find values by type signature or polarity, making it easier to locate the functionality you need. Configurable `MerlinJump` actions and the custom `jump` request give you more control over code navigation. On the bug fix side, we have tackled issues like file descriptor leaks, enhanced method completion, and cleaned up duplicate responses in `selectionRange`.
Loading