WIP INTERNAL TO OCAML PLATFORM TEAM - DO NOT SHARE
Welcome to the ninth edition of the OCaml Platform newsletter!
In this January 2024 edition, we are excited to bring you the latest on the OCaml Platform, continuing our tradition of highlighting recent developments as seen in previous editions. To understand the direction we're headed, especially regarding development workflows and user experience improvements, check out our roadmap.
Highlights:
odoc
team started an effort to unify the OCaml.org package documentation with the local workflow provided by Dune. This is very exciting, as the result should be a much improved local documentation with Dune and faster releases of odoc
features on OCaml.org. They are at the very beginning of the project, but stay tuned for exciting news in the coming months!Releases:
Contributed by: @rgrinberg (Tarides), @Leonidas-from-XIV (Tarides), @gridbugs (Tarides), @kit-ty-kate (Tarides), @Alizter
Why: Unify OCaml tooling under a single command line for all development workflows. This addresses one of the most important pain points reported by the community.
What: Prototyping the integration of package management into Dune using opam as a library. We're introducing a dune pkg lock
command to generate a lock file and enhancing dune build
to handle dependencies in the lock file. More details in the Dune RFC.
Activities:
--skip-update
and automatically infer offline mode when possible โ https://github.com/ocaml/dune/pull/9683Contributed by: @rjbou (OCamlPro), @kit-ty-kate (Tarides), @dra27 (Tarides), @AltGr (OCamlPro)
Why: Enhance OCaml's viability on Windows by integrating native opam and opam-repository
support, fostering a larger community and more Windows-friendly packages.
What: Releasing opam 2.2 with native Windows support, making the official opam-repository
usable on Windows platforms.
Activities:
rsync
package to internal Cygwin packages list (enables local pinning and is used by the VCS backends โ ocaml/opam#5808odoc
] Unify OCaml.org and Local Package Documentation (W25)Contributed by: @jonludlam (Tarides), @julow (Tarides), @panglesd (Tarides)
Why: Improving local documentation generation workflow will help package authors write better documentation for their packages, and consolidating the different odoc
documentation generators will help make continuous improvements to odoc
available to a larger audience.
What: We will write conventions that drivers must follow to ensure that their output will be functional. Once established, we will update the dune rules to follow these rules, access new odoc
features (e.g., source rendering) and provide similar functionalities to docs.ocaml.org (a navigational sidebar for instance). This will effectively make Dune usable to generate OCaml.org package documentation.
Activities:
odoc
] Add Search Capabilities to odoc
(W25)Contributed by: @panglesd (Tarides), @EmileTrotignon (Tarides), @julow (Tarides), @jonludlam (Tarides)
Why: Improve usability and navigability in OCaml packages documentation, both locally and on OCaml.org, by offering advanced search options like type-based queries.
What: Implementing a search engine interface in odoc
, complete with a UI and a search index. Additionally, we're developing a default client-side search engine based on Sherlodoc.
Activities:
odoc
-built doc sites.odoc
, to enable the new search feature on locally built docs. These changes were released as part of Dune 3.14.0. โ ocaml/dune#9772odoc
] Syntax for Images and Assets in odoc
(W25)Contributed by: @panglesd (Tarides), @jonludlam (Tarides), @dbuenzli, @gpetiot (Tarides)
Why: Empower package authors to create rich, engaging documentation by enabling the integration of multimedia elements directly into OCaml package documentation.
What: We're introducing new syntax and support for embedding media (images, audio, videos) and handling assets within the odoc
environment.
Activities:
odoc
] Improving odoc
Performance (W25)Contributed by: @jonludlam (Tarides), @julow (Tarides), @gpetiot (Tarides)
Why: Address performance issues in odoc
, particularly for large-scale documentation, to enhance efficiency and user experience and unlock local documentation generation in large code bases.
What: Profiling odoc
to identify the main performance bottlenecks and optimising odoc
with the findings.
Activities:
module type of
fix that was mentioned last month. This eventually resulted in a series of PRs: ocaml/odoc#1078, ocaml/odoc#1079 and ocaml/odoc#1081odoc
's handling of the load path was quadratic, so we changed that in ocaml/odoc#1075.Contributed by: @voodoos (Tarides), @trefis (Tarides), @Ekdohibs (OCamlPro), @gasche (INRIA), @Octachron (INRIA)
Why: Enhance code navigation and refactoring for developers by providing project-wide reference editor features, aligning OCaml with the editor experience found in other languages.
What: Introducing merlin single occurrences
and LSP textDocument/references
support, extending compiler's Shapes for global occurrences and integrating these features in Dune, Merlin, and OCaml LSP.
Activities:
rename
feature - voodoos/ocaml-lsp#index-previewContributed by: @pitag (Tarides), @Engil (Tarides)
Why: Some Merlin queries have been shown to scale poorly in large codebases, making the editor experience subpar. Users report that they sometimes must wait a few seconds to get the answer. This is obviously a major issue that hurts developer experience, so we're working on improving Merlin performance when it falls short.
What: Developing benchmarking tools and optimising Merlin's performance through targeted improvements based on profiling and analysis of benchmark results.
Activities:
merlin-lib
, we started writing a prototype to process the buffer in parallel with the query computation. Parallelism refers to OCaml 5 parallelism (domains).