Skip to content

RFC: Introduce versionned ocamllsp capabilities #1503

Open
@xvw

Description

@xvw

The OCaml LSP Server prefixes all custom requests with ocamllsp/capabilityName. However, there is a need to modify the input/output of certain custom requests over time. (#1330, #1450).

Tracking changes to custom requests in the OCaml LSP Server is challenging because modifying the input/output of these requests can introduce breaking changes for clients like VSCode and ocaml-eglot. Any structural changes to their parameters or responses may lead to incompatibilities, requiring client-side updates to maintain proper functionality. This makes it difficult to ensure smooth transitions, as both the server and clients must stay in sync, increasing the risk of unexpected failures or degraded user experiences.

I suggest introducing versioned capabilites to desynchronize the release of ocaml-lsp-server and clients:
For example:

Materially, this means having a structure that's a bit more cut-up:

**my_capability.mli

val capabilities : string list 

module V1 : sig 
   ....
end

module V2 : sig 
   ....
end

(* etc. *)

From my point of view, this will make the evolution of custom requests (which are at the heart of the OCaml development experience) much simpler, and allow customers to anticipate releases by supporting multiple behaviors.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions