From: Alan Schmitt <alan.schmitt@polytechnique.org>
To: "lwn" <lwn@lwn.net>, caml-list@inria.fr
Subject: [Caml-list] Attn: Development Editor, Latest OCaml Weekly News
Date: Tue, 24 Feb 2026 14:36:57 +0100 [thread overview]
Message-ID: <m2ms0yb6va.fsf@mac-03220211.irisa.fr> (raw)
[-- Attachment #1: Type: text/plain, Size: 33987 bytes --]
Hello
Here is the latest OCaml Weekly News, for the week of February 17 to 24,
2026.
Table of Contents
─────────────────
OSEC-2026-01 in the OCaml runtime: Buffer Over-Read in OCaml Marshal Deserialization
OCaml 5.4.1 and 4.14.3 released
Ann: Ochat — Try Ochat for terminal-based LLM workflows
Serialport - new serial communication library
Slipshow!
Remote OCaml Distributed Systems Engineer (Linux / Storage / Networking) – whitesky.cloud – EMEA/Asia
Grace 0.3.0 💅, fancy diagnostics library for compilers
Js_of_ocaml / Wasm_of_ocaml 6.3
kqueue-ml 0.5.0
Dune 3.21.0
Other OCaml News
Old CWN
OSEC-2026-01 in the OCaml runtime: Buffer Over-Read in OCaml Marshal Deserialization
════════════════════════════════════════════════════════════════════════════════════
Archive:
<https://inbox.ci.dev/caml-list/c3298309-a06d-4ac8-874c-fe2104078e61@mehnert.org/T/>
Hannes Mehnert announced
────────────────────────
Dear everyone,
it is my pleasure to announce the first security announcement of this
year, and the first coordinated by the new OCaml security response
team (<https://ocaml.org/security>).
Please subscribe to the OCaml security announcement mailing list
(<https://sympa.inria.fr/sympa/info/ocsf-ocaml-security-announcements>)
to receive all security advisories. To this mailing list I'll only
copy those affecting the core of OCaml distribution.
It should any moment now also appear at
<https://osv.dev/list?q=OSEC-2026-01>
Human link:
<https://github.com/ocaml/security-advisories/tree/main/advisories/2026/OSEC-2026-01.md>
┌────
│ id: OSEC-2026-01
│ modified: "2026-02-17T13:30:00Z"
│ published: "2026-02-17T13:30:00Z"
│ aliases: [ GHSA-j26j-m5xr-g23c GHSA-m34r-cgq7-jhfm ]
│ severity: "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:N"
│ severity_score: "6.8"
│ affected: "ocaml" {< "4.14.3" | (>= "5" & < "5.4.1")}
│ events: [
│ [
│ git "https://github.com/ocaml/ocaml" [
│ [fixed "b0a2614684a52acded784ec213f14ddfe085d146"]
│ ]
│ ]
│ [
│ git "https://github.com/ocaml/ocaml" [
│ [fixed "e3919fef436f89271bc30bbe8592851f7289fb68"]
│ ]
│ ]
│ ]
│ references: [
│ [report
│ "https://github.com/ocaml/security-advisories/security/advisories/GHSA-j26j-m5xr-g23c"]
│ ]
│ credits: [
│ [reporter "Justin Timperio"]
│ [remediation_developer "Nicolás Ojeda Bär"]
│ [remediation_developer "Xavier Leroy"]
│ [remediation_developer "Gabriel Scherer"]
│ [remediation_reviewer "Xavier Leroy"]
│ [remediation_reviewer "Olivier Nicole"]
│ [remediation_verifier "Mindy Preston"]
│ [remediation_verifier "Edwin Török"]
│ [coordinator "Hannes Mehnert"]
│ ]
│ cwe: [ CWE-126 CWE-502 CWE-754 ]
└────
*Buffer Over-Read in OCaml Marshal Deserialization*
Summary
╌╌╌╌╌╌╌
A critical buffer over-read vulnerability in OCaml's Marshal
deserialization (runtime/intern.c) enables remote code execution
through a multi-phase attack chain. The vulnerability stems from
missing bounds validation in the readblock() function, which performs
unbounded memcpy() operations using attacker-controlled lengths from
malicious Marshal data.
Please note that Marshal is not type safe, and you have to be careful
if you use the deserialization on untrusted input (due to type
confusion, and remote code execution by design - you can use Marshal
for code).
Affected functions: `Marshal.from_channel', `Marshal.from_bytes',
`Marshal.from_string', `Stdlib.input_value', `Pervasives.input_value'
when reading data from an untrusted source.
Vulnerability Attack Vector
╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
Corrupted or malicious marshaled data that causes undefined behaviour
in the runtime system when unmarshaled. `input_value' should either
fail cleanly or produce a well-formed OCaml object, without corrupting
the runtime system.
Consequently, this excludes:
• well-formed marshaled data that produces an OCaml object that is not
of the type expected by the OCaml code and causes the Ocaml code to
crash or misbehave
• misuses of the OCaml runtime system by the program performing
input_value, such as setting `Debugger.function_placeholder' to the
wrong function.
The former issue may be addressed at some point by validating the
unmarshaled OCaml value against the expected type, using the functions
from module `Obj' and some kind of run-time type description.
The latter issue is a bug in the program that unmarshals the data.
Fix
╌╌╌
◊ OCaml runtime
The OCaml runtime has been hardened with additional bounds checks. An
exception is raised on bad input.
◊ Third party libraries
Third party libraries that want to harden their custom Marshal
deserialization code can follow the example fix for bigarrays from the
standard library. There are new macros in `custom.h' called
`Wsize_custom_data' and `Bsize_custom_data' that return the size in
words or bytes of the allocated custom destination block. The
deserializer needs to ensure it only writes data within those bounds.
This only needs to be done if the library defines a custom type in a C
binding, and `struct custom_operations''s `deserialize' field is not
set to `NULL' or `custom_deserialize_default', and `struct
custom_operations''s `fixed_length' field is set to `NULL' or
`custom_fixed_length_default'
Since `Marshal.from*' and `input_value' remain unsafe to use, the fix
for the OCaml runtime is released, and we wouldn't attempt to
coordinate updating all deserialization functions in the ecosystem.
Timeline
╌╌╌╌╌╌╌╌
• Nov 4th 2025: Discovery Date: Discovered first in OxCaml
• Nov 5th 2025: First Disclosure Date (Jane Street Team): Emailed top
maintainers, no response.
• Nov 9th 2025: Second Disclosure Date (OCaml Team): Submitted to
OCaml/ocaml GitHub Repo as a Security Advisory.
• Nov 11th 2025: Emailed OCaml Security Mail List: Submitted to OCaml
over email, responded asking for details.
• Nov 11th 2025: Third Disclosure (OCaml Security Response Team):
Submitted to ocaml/security-advisories GitHub Repo as a Security
Advisory.
• Dec 16th 2025: Initial patch is developed
• Dec 17th 2025: Fuzz testing found further issues
• Dec 24th 2025: Final patch for OCaml is developed
• Dec 25th 2025: Fuzz testing couldn't find any further issues
• Jan 2nd 2026: Patch got reviewed by OCaml maintainers
• Jan 4th 2026: Benchmarking of the patch with good results
• Jan 6th 2026: Reporter got contacted to confirm
• Jan 25th 2026: Further related issues discovered by fuzzing
• Feb 17th 2026: fixed OCaml releases are published, security advisory
is published
OCaml 5.4.1 and 4.14.3 released
═══════════════════════════════
Archive:
<https://discuss.ocaml.org/t/ocaml-5-4-1-and-4-14-3-released/17822/1>
octachron announced
───────────────────
We have the pleasure of announcing the dual releases of OCaml 4.14.3
and OCaml 5.4.1, dedicated to the memory of Nicolaas Govert de Bruijn
on the anniversary of his death.
Those releases are a collection of safe and valuable runtime bugfixes.
The OCaml 5.4.1 release also contains a fix for the `-pack' mode for
macOs and various TSAN fixes.
More importantly, those new versions harden the Marshal module against
malicious inputs as described in the security announcement
[OSEC-2026-01].
We are encouraging you to switch to those new releases whenever
possible.
Don't hesitate to report any bugs on the [OCaml issue tracker].
See the list of changes below for more details.
Happy hacking, – Florian Angeletti for the OCaml team.
*Installation Instructions*
The base compilers will be soon installable as an opam switch with the
following commands:
┌────
│ opam update
│ opam switch create 4.14.3
│ opam switch create 5.4.1
└────
The source code for the release candidate is also directly available
on:
• GitHub:
• <https://github.com/ocaml/ocaml/archive/4.14.3.tar.gz>
• <https://github.com/ocaml/ocaml/archive/5.4.1.tar.gz>
• Inria archive:
• <https://caml.inria.fr/pub/distrib/ocaml-4.14/ocaml-4.14.3.tar.gz>
• <https://caml.inria.fr/pub/distrib/ocaml-5.4/ocaml-5.4.1.tar.gz>
*OCaml 4.14.3 (17 February 2026)*
• [#12070], [#12075], [#13209]: auto-detect whether `ar' support @FILE
arguments at configure-time to avoid using this feature with
toolchains that do not support it (eg FreeBSD/Darwin); backport from
5.3. (backport by Boris Dobroslavov, original fix by Nicolás Ojeda
Bär, review by Xavier Leroy, David Allsopp, Javier Chávarri, Anil
Madhavapeddy)
• [#12207], [#12222]: Make closure computation linear in the number of
recursive functions instead of quadratic (Vincent Laviron, report by
François Pottier, review by Nathanaëlle Courant and Gabriel Scherer)
• [#13430], [#13434]: protect memory-safety on Lazy.force races
(Gabriel Scherer and Vincent Laviron, report by Edwin Török, review
by Vincent Laviron)
• [#13448], [#13449]: fix a code-generation bug on unsafe array
accesses at type int32, int64, nativeint, which has been introduced
in OCaml 4.04. (Gabriel Scherer, review by Nicolás Ojeda Bär and
Vincent Laviron, report by Simon Cruanes)
• [#13516]: Fix regression where error conditions during bytecode
initialisation caused a segmentation fault rather than being
properly reported (regression of [#5115] in [#11788]) (David
Allsopp, review by Nicolás Ojeda Bär)
• [#13847]: On Windows, maintain a number of threads waiting on the
master lock to avoid unnecessary context switches (Dmitry Bely,
review by Antonin Décimo)
• [#14007], [#14015]: Fix memory corruption when an exception is
raised during demarshaling. (Benoît Vaugon, review by David Allsopp
and Gabriel Scherer)
• [OSEC-2026-01]: robustify intern.c (Xavier Leroy, review by Damien
Doligez and Olivier Nicole)
*OCaml 5.4.1 (17 February 2026)*
[OSEC-2026-01] <https://osv.dev/vulnerability/OSEC-2026-01>
[OCaml issue tracker] <https://github.com/ocaml/ocaml/issues>
[#12070] <https://github.com/ocaml/ocaml/issues/12070>
[#12075] <https://github.com/ocaml/ocaml/issues/12075>
[#13209] <https://github.com/ocaml/ocaml/issues/13209>
[#12207] <https://github.com/ocaml/ocaml/issues/12207>
[#12222] <https://github.com/ocaml/ocaml/issues/12222>
[#13430] <https://github.com/ocaml/ocaml/issues/13430>
[#13434] <https://github.com/ocaml/ocaml/issues/13434>
[#13448] <https://github.com/ocaml/ocaml/issues/13448>
[#13449] <https://github.com/ocaml/ocaml/issues/13449>
[#13516] <https://github.com/ocaml/ocaml/issues/13516>
[#5115] <https://github.com/ocaml/ocaml/issues/5115>
[#11788] <https://github.com/ocaml/ocaml/issues/11788>
[#13847] <https://github.com/ocaml/ocaml/issues/13847>
[#14007] <https://github.com/ocaml/ocaml/issues/14007>
[#14015] <https://github.com/ocaml/ocaml/issues/14015>
Bug fixes:
╌╌╌╌╌╌╌╌╌╌
• [#14010]: Fix miscompilation / liveness errors for string operations
(Mark Shinwell, Xavier Clerc, review by Xavier Leroy and Gabriel
Scherer)
• [#14065]: Fix function signature mismatch of `__tsan_func_exit' with
GCC 15. Check in the configure step if the TSan provided internal
builtins are the same as what we expect, introduce `caml_tsan_*'
wrappers for the `__tsan_*' functions we use. (Hari Hara Naveen S,
report by Hari Hara Naveen S, review by Gabriel Scherer, Antonin
Décimo, Olivier Nicole)
• [#14417]: Fix issue with nested packs on macOS. (Vincent Laviron,
report by Kate Deplaix, review by Gabriel Scherer)
• [#14213]: Fix shadow-stack-related crashes with TSan (Olivier
Nicole, report by Nathan Taylor, review by Gabriel Scherer and
Stefan Muenzel)
• [#14255]: Fix TSan bug with C calls that take many arguments
(Olivier Nicole and Miod Vallat, report by Nathan Taylor, review by
Gabriel Scherer)
• [OSEC-2026-01]: robustify intern.c (Xavier Leroy and Nicolás Ojeda
Bär, review by Olivier Nicole, Mindy Preston, Edwin Török, and
Gabriel Scherer)
[#14010] <https://github.com/ocaml/ocaml/issues/14010>
[#14065] <https://github.com/ocaml/ocaml/issues/14065>
[#14417] <https://github.com/ocaml/ocaml/issues/14417>
[#14213] <https://github.com/ocaml/ocaml/issues/14213>
[#14255] <https://github.com/ocaml/ocaml/issues/14255>
[OSEC-2026-01] <https://osv.dev/vulnerability/OSEC-2026-01>
Ann: Ochat — Try Ochat for terminal-based LLM workflows
═══════════════════════════════════════════════════════
Archive:
<https://discuss.ocaml.org/t/ann-ochat-try-ochat-for-terminal-based-llm-workflows/17829/1>
Dakota Murphy announced
───────────────────────
Hi all — I’d like to share a project I’ve been building: *Ochat*.
• Repo: *[https://github.com/dakotamurphyucf/ochat]*
• Demo: *[https://youtu.be/eGgmUdZfnxM]*
[https://github.com/dakotamurphyucf/ochat]
<https://github.com/dakotamurphyucf/ochat>
[https://youtu.be/eGgmUdZfnxM] <https://youtu.be/eGgmUdZfnxM>
*What it is*
╌╌╌╌╌╌╌╌╌╌╌╌
Ochat is a toolkit for building LLM workflows as *plain files*. The
core format is *ChatMarkdown (ChatMD)*: Markdown plus a small, closed
XML vocabulary.
A single ChatMD file is both:
• the *prompt/program* (model config, tool allowlist, instructions,
context), and
• the *auditable transcript* (assistant replies + tool calls + tool
outputs)
Because everything is plain text, workflows are reproducible and
diffable in git.
*Prompt packs: building larger workflows from small agents*
╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
Ochat supports *agent-as-tool*: you can mount one ChatMD prompt as a
callable tool inside another. This lets you build *prompt packs*
(planner/coder/reviewer/docs/test triage/etc.) and orchestrate them
from a top-level prompt, without writing a custom “agent app”.
*chat_tui: a Notty-based terminal UI (runtime uses Eio)*
╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
Ochat ships an interactive terminal UI called *chat_tui*.
• The UI is built with *Notty*
• The underlying runtime uses *Eio* (structured concurrency + I/O)
A ChatMD file can be treated as a “terminal agent”: you author an
agent prompt as a .md, open it in chat_tui, and run/iterate on it
while the transcript (including tool traces) is persisted.
Some chat_tui features:
• streaming output (assistant text + tool calls + tool outputs)
• persistent sessions you can resume/branch/export
• manual context compaction (:compact) for long histories
• syntax highlighting (including OCaml)
• AI completions in the text input (to speed up drafting)
• Vim-ish editing modes and message selection/yank/edit/resubmit
workflows
*Useful built-in tools (especially for code workflows)*
╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
Ochat includes built-in tools that cover most “agent + repo” loops:
• read_file / read_dir for safe repo navigation
• apply_patch for atomic, repo-safe edits
• webpage_to_markdown for high-signal ingestion (incl. GitHub blob
fast-path)
• indexing/retrieval tools for grounding over docs and code
• optional vision inputs via import_image
*MCP tool import (optional)*
╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
Ochat can also mount external tools via MCP (stdio or HTTP). For
example, importing Brave Search over stdio:
┌────
│ <tool mcp_server="stdio:npx -y brave-search-mcp" name="brave_web_search" />
└────
*Quick example: a “custom terminal orchestrator agent”*
╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
This is a complete agent definition (and becomes the runnable “app”
when opened in chat_tui):
┌────
│ <config model="gpt-5.2" reasoning_effort="medium" />
│
│ <!-- core built-ins -->
│ <tool name="read_dir"/>
│ <tool name="read_file"/>
│ <tool name="apply_patch"/>
│ <tool name="webpage_to_markdown"/>
│
│ <!-- optional: import an external tool via MCP -->
│ <tool mcp_server="stdio:npx -y brave-search-mcp" name="brave_web_search" />
│
│ <!-- prompt-pack tools (agents as tools) -->
│ <tool name="plan" agent="prompts/pack/plan.md" local/>
│ <tool name="code" agent="prompts/pack/code.md" local/>
│ <tool name="review" agent="prompts/pack/review.md" local/>
│
│ <developer>
│ You are the orchestrator. Call plan first.
│ Keep edits small. Before apply_patch: explain the diff and wait for confirmation.
│ </developer>
│
│ <user>
│ Add a Quickstart section to README.md.
│ </user>
└────
Run it from the repo with:
┌────
│ dune exec chat_tui -- -file prompts/refactor.md
└────
*Status / caveats*
╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
• Provider support today is *OpenAI-only*.
• The project is moving quickly.
*Feedback / contributors*
╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
I’d appreciate any feedback or contributions
If you try it and anything’s confusing or rough, please open an issue.
Serialport - new serial communication library
═════════════════════════════════════════════
Archive:
<https://discuss.ocaml.org/t/ann-serialport-new-serial-communication-library/17594/3>
Continuing this thread, Mikhail announced
─────────────────────────────────────────
[Added] (aka implemented) Win32 support, which has not been thoroughly
tested, but may be useful for certain target use cases.
[Added]
<https://github.com/dx3mod/serialport/commit/d057a004c050234b64e4edbee2c13a04bf4c2734>
Slipshow!
═════════
Archive: <https://discuss.ocaml.org/t/ann-slipshow/16337/18>
Continuing this thread, Paul-Elliot announced
─────────────────────────────────────────────
It is with extraterrestrial excitement that I announce the next
release of Slipshow:
*Slipshow 0.9.0: Manim Black*
The featured new feature of this release is the ability to easily
integrate [Manim] videos in your presentation.
<https://github.com/user-attachments/assets/f67bb8fc-c288-4ff3-b6bc-e72c12e636a7>
Note that, compared to just playing a video, you can schedule pauses,
go faster to the next pause, and go back to the previous pauses, as
showcased below.
[Manim] <https://www.manim.community/>
Skipping steps and going backward demo
╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
<https://github.com/user-attachments/assets/cf1ad264-a5e2-42d2-9f57-09551f3a35e8>
This release features many more changes, such as TikZ and MermaidJS
integration! Here is the full changelog:
Added
╌╌╌╌╌
• Support for Mermaid JS ([#205])
• Support for syntax highlighting of all highlightjs-supported
languages and themes ([#200], [#208])
• Support for MathJax extensions, especially the html extension to
allow actions to target math elements ([#202])
• Add KaTeX as a possible alternate renderer ([#202])
• Added `carousel-fixed-size' to have carousel not change size
([#207])
[#205] <https://github.com/panglesd/slipshow/pull/205>
[#200] <https://github.com/panglesd/slipshow/pull/200>
[#208] <https://github.com/panglesd/slipshow/pull/208>
[#202] <https://github.com/panglesd/slipshow/pull/202>
[#207] <https://github.com/panglesd/slipshow/pull/207>
Fix
╌╌╌
• Fix impossibility to reopen speaker view after closing it on Firefox
([#198], issue [#194])
• Fix impossibility to open speaker view in serve mode ([#198], issue
[#197])
• Fix links opening inside iframe ([#198])
• Fix ending excursions with `ijkl' only when needed ([#207])
• Fixed video long-step handling ([#207])
• Removed confusing auto-generated IDs ([#209])
• Fix `play-media' behavior when facing errors ([#210])
[#198] <https://github.com/panglesd/slipshow/pull/198>
[#194] <https://github.com/panglesd/slipshow/issues/194>
[#197] <https://github.com/panglesd/slipshow/issues/197>
[#207] <https://github.com/panglesd/slipshow/pull/207>
[#209] <https://github.com/panglesd/slipshow/pull/209>
[#210] <https://github.com/panglesd/slipshow/pull/210>
Docs
╌╌╌╌
• Add how to include TikZ figures in your Slipshow presentation
([#206])
• Add how to include Manim videos in your Slipshow presentation
([#207])
Credit: @vds for the name of the release.
Thanks again to NLNet for [supporting] the development of Slipshow!
[#206] <https://github.com/panglesd/slipshow/pull/206>
[#207] <https://github.com/panglesd/slipshow/pull/207>
[supporting] <https://nlnet.nl/project/Slipshow/>
Remote OCaml Distributed Systems Engineer (Linux / Storage / Networking) – whitesky.cloud – EMEA/Asia
═════════════════════════════════════════════════════════════════════════════════════════════════════
Archive:
<https://discuss.ocaml.org/t/remote-ocaml-distributed-systems-engineer-linux-storage-networking-whitesky-cloud-emea-asia/17832/1>
Geert Audenaert announced
─────────────────────────
We are looking for an OCaml engineer to join *whitesky.cloud* to work
on low-level distributed infrastructure components.
*About the work*
You will work on core building blocks of a sovereign cloud platform,
including distributed storage and coordination services.
Examples of related projects:
• [https://github.com/openvstorage/alba]
• [https://github.com/openvstorage/arakoon]
The work involves:
• Distributed systems design and implementation
• High-performance networking and I/O
• Linux systems programming
• Debugging and optimizing behavior under real production load
• Long-running services where reliability and correctness matter
This is *infrastructure work*, not web development.
—
*What we are looking for*
• Strong OCaml experience *or* strong systems programming background
with willingness to work in OCaml
• Good understanding of:
‣ Linux internals
‣ Networking / TCP/IP
‣ Concurrency and performance
• Interest in distributed systems, storage, or consensus algorithms
We care more about *systems thinking and engineering depth* than about
specific frameworks.
—
*Practical details*
• Full-time position
• Fully remote
• Location: EMEA or Asia
• Salary: around *€3000/month* (depending on experience and location)
We know this is not a big-tech salary. We are a small
engineering-driven company, and the role is aimed at engineers who
enjoy working close to the system, solving real infrastructure
problems, and having a direct impact.
—
*About whitesky*
whitesky builds a complete cloud platform based on Linux and KVM,
focused on sovereignty and control. The platform is used by MSPs,
SaaS providers and enterprises to run their own cloud infrastructure.
You will be working on components that run in production environments
and form part of a distributed cloud stack.
—
If this sounds interesting, please contact:
*geert.audenaert@whitesky.cloud*
or send a DM.
We are happy to answer questions or discuss whether this could be a
good fit.
[https://github.com/openvstorage/alba]
<https://github.com/openvstorage/alba>
[https://github.com/openvstorage/arakoon]
<https://github.com/openvstorage/arakoon>
Grace 0.3.0 💅, fancy diagnostics library for compilers
═══════════════════════════════════════════════════════
Archive:
<https://discuss.ocaml.org/t/ann-grace-0-3-0-fancy-diagnostics-library-for-compilers/17833/1>
"Alistair O'Brien" announced
────────────────────────────
I’m excited to announce the release of [grace 0.3.0], an OCaml library
for building, reporting and rendering beautiful compiler diagnostics
:camel: :paintbrush:. Now available on [opam-repository].
This release includes:
• :window: *Windows support*: Grace now works on Windows, a
long-awaited feature since its 0.1.0 release! :rocket:
• :keyboard: *TTY auto-detection*: `Grace_ansi_renderer' can now
automatically configure itself based on whether the output channel
is a TTY. New functions: `pr_diagnostic', `epr_diagnostic', and
`output_diagnostic'.
• :elephant: *Line elision*: `Grace_ansi_renderer' now elides
unnecessary lines in diagnostics, producing more focused output.
• :zero: *Zero-width ranges*: `Grace_ansi_renderer' can now handle
zero-width ranges within lines, as well as at end-of-line (EOL) and
end-of-file (EOF) positions.
Many thanks to @giltho for their contributions to this release!
:flexed_biceps:
[grace 0.3.0] <https://github.com/johnyob/grace/releases/tag/0.3.0>
[opam-repository] <https://github.com/ocaml/opam-repository/pull/29379>
CHANGES
╌╌╌╌╌╌╌
• feat(renderer): add breaks in large diagnostics ([#63])
• feat(renderer): check for tty when rendering ([#60])
• fix(renderer): off-by-one in `lines_of_labels' ([#65])
• fix(renderer): create 0-sized segment on empty label range ([#64])
• fix(renderer): renderer multi-line labels when message is empty
([#53])
• fix(renderer): fix errors that occur with special zero-width
segments ([#41])
• fix(renderer): use `Format.pp_infinity' in `Message.to_string' for
OCaml >5.2 ([#40])
• refactor!: removes base/core dependency ([#58])
[#63] <https://github.com/johnyob/grace/pull/63>
[#60] <https://github.com/johnyob/grace/pull/60>
[#65] <https://github.com/johnyob/grace/pull/65>
[#64] <https://github.com/johnyob/grace/pull/64>
[#53] <https://github.com/johnyob/grace/pull/53>
[#41] <https://github.com/johnyob/grace/pull/41>
[#40] <https://github.com/johnyob/grace/pull/40>
[#58] <https://github.com/johnyob/grace/pull/58>
BREAKING CHANGE
╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
• Many base/core interfaces from `Grace' have been replaced with
custom ones.
• `Source.reader' has been removed. Use `Source.Reader.t' instead.
Js_of_ocaml / Wasm_of_ocaml 6.3
═══════════════════════════════
Archive:
<https://discuss.ocaml.org/t/ann-js-of-ocaml-wasm-of-ocaml-6-3/17834/1>
Jérôme Vouillon announced
─────────────────────────
I'm pleased to announce the joint release of js_of_ocaml and
wasm_of_ocaml 6.3.
Js_of_ocaml is a compiler from OCaml bytecode to JavaScript. It makes
it possible to run pure OCaml programs in JavaScript environment like
browsers and Node.js.
Wasm_of_ocaml is a compiler from OCaml bytecode to WebAssembly. It is
highly compatible with Js_of_ocaml, so you can compile your programs
with wasm_of_ocaml instead of js_of_ocaml and experience overall
better performance.
Most significant changes (since 6.1):
• *Number unboxing for wasm_of_ocaml*: a type analysis pass now tracks
which values are floats, integers, or nativeints, enabling the
compiler to unbox them and use native Wasm instructions
directly. This also enables specialisation of number comparisons
and bigarray operations, avoiding costly generic runtime calls.
• *Constant sinking for js_of_ocaml*: a new optimisation pass moves
constants closer to their use sites, reducing register
pressure. Many constants end up inlined, resulting in smaller code
size.
• *JS parser improvements*: support for import/export attributes,
decorators, `using' declarations (resource management), and HTML
comments.
• Many bug fixes across the compiler, runtime, library bindings, and
PPX.
See the [Changelog] for the full list of changes.
[Changelog]
<https://github.com/ocsigen/js_of_ocaml/blob/master/CHANGES.md>
kqueue-ml 0.5.0
═══════════════
Archive: <https://discuss.ocaml.org/t/ann-kqueue-ml-0-5-0/17835/1>
Anurag Soni announced
─────────────────────
Hi,
I'd like to announce a new release for [kqueue-ml version 0.5.0]
*Kqueue-ml:* Thin bindings to kqueue event notification system.
Changes since the last release:
• Moved development to [codeberg]
• Remove dependencies on `ppx_optcomp' and `ppx_expect' (Dependencies
are limited to the ocaml standard library and dune)
Best, Anurag
[kqueue-ml version 0.5.0]
<https://opam.ocaml.org/packages/kqueue/kqueue.0.5.0/>
[codeberg] <https://codeberg.org/anuragsoni/kqueue-ml/>
Dune 3.21.0
═══════════
Archive: <https://discuss.ocaml.org/t/ann-dune-3-21-0/17700/2>
Continuing this thread, Shon announced
──────────────────────────────────────
The Dune team announces [the release of dune 3.21.1].
This is a small patch release consisting of a few bug fixes. See [the
full changelog] for all the changes.
If you encounter a problem with this release, please report it in [our
issue tracker].
[the release of dune 3.21.1]
<https://github.com/ocaml/dune/releases/tag/3.21.1>
[the full changelog] <https://github.com/ocaml/dune/releases/tag/3.21.1>
[our issue tracker] <https://github.com/ocaml/dune/issues>
Other OCaml News
════════════════
From the ocaml.org blog
───────────────────────
Here are links from many OCaml blogs aggregated at [the ocaml.org
blog].
• [At the AI Impact Summit in Delhi: people, planet, progress]
• [OBuilder on Windows: Bringing Native Container Builds with the HCS
Backend]
• [1st TESSERA/CoRE hackathon at the Indian AI Summit]
[the ocaml.org blog] <https://ocaml.org/blog/>
[At the AI Impact Summit in Delhi: people, planet, progress]
<https://anil.recoil.org/notes/india-ai-summit>
[OBuilder on Windows: Bringing Native Container Builds with the HCS
Backend] <https://www.tunbury.org/2026/02/19/obuilder-hcs/>
[1st TESSERA/CoRE hackathon at the Indian AI Summit]
<https://anil.recoil.org/notes/first-tessera-hackathon>
Old CWN
═══════
If you happen to miss a CWN, you can [send me a message] and I'll mail
it to you, or go take a look at [the archive] or the [RSS feed of the
archives].
If you also wish to receive it every week by mail, you may subscribe
to the [caml-list].
[Alan Schmitt]
[send me a message] <mailto:alan.schmitt@polytechnique.org>
[the archive] <https://alan.petitepomme.net/cwn/>
[RSS feed of the archives] <https://alan.petitepomme.net/cwn/cwn.rss>
[caml-list] <https://sympa.inria.fr/sympa/info/caml-list>
[Alan Schmitt] <https://alan.petitepomme.net/>
[-- Attachment #2: Type: text/html, Size: 52462 bytes --]
next reply other threads:[~2026-02-24 13:37 UTC|newest]
Thread overview: 281+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-24 13:36 Alan Schmitt [this message]
-- strict thread matches above, loose matches on Subject: below --
2026-02-17 13:47 Alan Schmitt
2026-02-10 10:36 Alan Schmitt
2026-02-03 10:04 Alan Schmitt
2026-01-27 12:41 Alan Schmitt
2026-01-20 9:19 Alan Schmitt
2026-01-13 8:27 Alan Schmitt
2026-01-06 13:14 Alan Schmitt
2025-12-30 9:33 Alan Schmitt
2025-12-23 11:00 Alan Schmitt
2025-12-16 13:30 Alan Schmitt
2025-12-09 15:04 Alan Schmitt
2025-12-02 10:39 Alan Schmitt
2025-11-25 13:49 Alan Schmitt
2025-11-18 14:01 Alan Schmitt
2025-11-11 9:49 Alan Schmitt
2025-11-04 13:21 Alan Schmitt
2025-10-28 13:30 Alan Schmitt
2025-10-21 9:17 Alan Schmitt
2025-10-14 9:56 Alan Schmitt
2025-10-07 12:22 Alan Schmitt
2025-09-30 13:12 Alan Schmitt
2025-09-23 13:23 Alan Schmitt
2025-09-16 11:52 Alan Schmitt
2025-09-09 12:30 Alan Schmitt
2025-09-02 12:23 Alan Schmitt
2025-08-26 12:34 Alan Schmitt
2025-08-19 12:20 Alan Schmitt
2025-08-12 15:32 Alan Schmitt
2025-08-05 8:17 Alan Schmitt
2025-07-29 9:36 Alan Schmitt
2025-07-22 12:07 Alan Schmitt
2025-07-15 17:14 Alan Schmitt
2025-07-08 12:45 Alan Schmitt
2025-07-01 11:16 Alan Schmitt
2025-06-24 14:02 Alan Schmitt
2025-06-17 6:44 Alan Schmitt
2025-06-10 13:36 Alan Schmitt
2025-06-03 9:19 Alan Schmitt
2025-05-27 9:22 Alan Schmitt
2025-05-20 11:52 Alan Schmitt
2025-05-13 9:40 Alan Schmitt
2025-05-06 7:24 Alan Schmitt
2025-04-29 8:39 Alan Schmitt
2025-04-22 11:50 Alan Schmitt
2025-04-15 9:51 Alan Schmitt
2025-04-08 13:14 Alan Schmitt
2025-04-01 9:12 Alan Schmitt
2025-03-25 8:06 Alan Schmitt
2025-03-18 10:18 Alan Schmitt
2025-03-11 15:00 Alan Schmitt
2025-03-04 14:01 Alan Schmitt
2025-02-25 10:36 Alan Schmitt
2025-02-18 14:33 Alan Schmitt
2025-02-11 7:17 Alan Schmitt
2025-02-04 12:05 Alan Schmitt
2025-01-28 13:24 Alan Schmitt
2025-01-21 15:47 Alan Schmitt
2025-01-14 8:20 Alan Schmitt
2025-01-07 17:26 Alan Schmitt
2024-12-31 8:03 Alan Schmitt
2024-12-24 8:55 Alan Schmitt
2024-12-17 13:05 Alan Schmitt
2024-12-10 13:48 Alan Schmitt
2024-12-03 14:44 Alan Schmitt
2024-11-26 8:30 Alan Schmitt
2024-11-19 6:52 Alan Schmitt
2024-11-12 15:00 Alan Schmitt
2024-11-05 13:22 Alan Schmitt
2024-10-29 13:30 Alan Schmitt
2024-10-22 12:42 Alan Schmitt
2024-10-15 13:31 Alan Schmitt
2024-10-08 10:56 Alan Schmitt
2024-10-01 13:37 Alan Schmitt
2024-09-24 13:18 Alan Schmitt
2024-09-17 14:02 Alan Schmitt
2024-09-10 13:55 Alan Schmitt
2024-09-03 8:24 Alan Schmitt
2024-08-27 9:02 Alan Schmitt
2024-08-20 9:29 Alan Schmitt
2024-08-13 13:21 Alan Schmitt
2024-08-06 9:00 Alan Schmitt
2024-07-30 13:26 Alan Schmitt
2024-07-23 13:30 Alan Schmitt
2024-07-16 6:24 Alan Schmitt
2024-07-09 9:19 Alan Schmitt
2024-07-02 7:30 Alan Schmitt
2024-06-25 13:58 Alan Schmitt
2024-06-18 13:05 Alan Schmitt
2024-06-11 15:04 Alan Schmitt
2024-06-04 13:26 Alan Schmitt
2024-05-28 9:07 Alan Schmitt
2024-05-21 13:07 Alan Schmitt
2024-05-14 13:25 Alan Schmitt
2024-05-07 7:30 Alan Schmitt
2024-04-30 7:22 Alan Schmitt
2024-04-23 12:17 Alan Schmitt
2024-04-16 12:00 Alan Schmitt
2024-04-09 9:15 Alan Schmitt
2024-04-02 14:31 Alan Schmitt
2024-03-26 6:32 Alan Schmitt
2024-03-19 15:09 Alan Schmitt
2024-03-12 10:31 Alan Schmitt
2024-03-05 14:50 Alan Schmitt
2024-02-27 13:53 Alan Schmitt
2024-02-20 9:12 Alan Schmitt
2024-02-13 8:42 Alan Schmitt
2024-02-06 15:14 Alan Schmitt
2024-01-30 14:16 Alan Schmitt
2024-01-23 9:45 Alan Schmitt
2024-01-16 10:01 Alan Schmitt
2024-01-09 13:40 Alan Schmitt
2024-01-02 8:59 Alan Schmitt
2023-12-26 10:12 Alan Schmitt
2023-12-19 10:10 Alan Schmitt
2023-12-12 10:20 Alan Schmitt
2023-12-05 10:13 Alan Schmitt
2023-11-28 9:09 Alan Schmitt
2023-11-21 7:47 Alan Schmitt
2023-11-14 13:42 Alan Schmitt
2023-11-07 10:31 Alan Schmitt
2023-10-31 10:43 Alan Schmitt
2023-10-24 9:17 Alan Schmitt
2023-10-17 7:46 Alan Schmitt
2023-10-10 7:48 Alan Schmitt
2023-10-03 13:00 Alan Schmitt
2023-09-19 8:54 Alan Schmitt
2023-09-12 13:21 Alan Schmitt
2023-09-05 9:00 Alan Schmitt
2023-08-29 13:04 Alan Schmitt
2023-08-22 9:20 Alan Schmitt
2023-08-15 16:33 Alan Schmitt
2023-08-08 8:53 Alan Schmitt
2023-08-01 7:13 Alan Schmitt
2023-07-25 8:45 Alan Schmitt
2023-07-11 8:45 Alan Schmitt
2023-07-04 9:18 Alan Schmitt
2023-06-27 8:38 Alan Schmitt
2023-06-20 9:52 Alan Schmitt
2023-06-13 7:09 Alan Schmitt
2023-06-06 14:22 Alan Schmitt
2023-05-30 15:43 Alan Schmitt
2023-05-23 9:41 Alan Schmitt
2023-05-16 13:05 Alan Schmitt
2023-05-09 11:49 Alan Schmitt
2023-05-02 8:01 Alan Schmitt
2023-04-25 9:25 Alan Schmitt
2023-04-18 8:50 Alan Schmitt
2023-04-11 12:41 Alan Schmitt
2023-04-04 8:45 Alan Schmitt
2023-03-28 7:21 Alan Schmitt
2023-03-21 10:07 Alan Schmitt
2023-03-14 9:52 Alan Schmitt
2023-03-07 9:02 Alan Schmitt
2023-02-28 14:38 Alan Schmitt
2023-02-21 10:19 Alan Schmitt
2023-02-14 8:12 Alan Schmitt
2023-02-07 8:16 Alan Schmitt
2023-01-31 6:44 Alan Schmitt
2023-01-24 8:57 Alan Schmitt
2023-01-17 8:37 Alan Schmitt
2022-11-29 14:53 Alan Schmitt
2022-09-27 7:17 Alan Schmitt
2022-09-20 14:01 Alan Schmitt
2022-09-13 8:40 Alan Schmitt
2022-08-23 8:06 Alan Schmitt
2022-08-16 8:51 Alan Schmitt
2022-08-09 8:02 Alan Schmitt
2022-08-02 9:51 Alan Schmitt
2022-07-26 17:54 Alan Schmitt
2022-07-19 8:58 Alan Schmitt
2022-07-12 7:59 Alan Schmitt
2022-07-05 7:42 Alan Schmitt
2022-06-28 7:37 Alan Schmitt
2022-06-21 8:06 Alan Schmitt
2022-06-14 9:29 Alan Schmitt
2022-06-07 10:15 Alan Schmitt
2022-05-31 12:29 Alan Schmitt
2022-05-24 8:04 Alan Schmitt
2022-05-17 7:12 Alan Schmitt
2022-05-10 12:30 Alan Schmitt
2022-05-03 9:11 Alan Schmitt
2022-04-26 6:44 Alan Schmitt
2022-04-19 5:34 Alan Schmitt
2022-04-12 8:10 Alan Schmitt
2022-04-05 11:50 Alan Schmitt
2022-03-29 7:42 Alan Schmitt
2022-03-22 13:01 Alan Schmitt
2022-03-15 9:59 Alan Schmitt
2022-03-01 13:54 Alan Schmitt
2022-02-22 12:43 Alan Schmitt
2022-02-08 13:16 Alan Schmitt
2022-02-01 13:00 Alan Schmitt
2022-01-25 12:44 Alan Schmitt
2022-01-11 8:20 Alan Schmitt
2022-01-04 7:56 Alan Schmitt
2021-12-28 8:59 Alan Schmitt
2021-12-21 9:11 Alan Schmitt
2021-12-14 11:02 Alan Schmitt
2021-11-30 10:51 Alan Schmitt
2021-11-16 8:41 Alan Schmitt
2021-11-09 10:08 Alan Schmitt
2021-11-02 8:50 Alan Schmitt
2021-10-19 8:23 Alan Schmitt
2021-09-28 6:37 Alan Schmitt
2021-09-21 9:09 Alan Schmitt
2021-09-07 13:23 Alan Schmitt
2021-08-24 13:44 Alan Schmitt
2021-08-17 6:24 Alan Schmitt
2021-08-10 16:47 Alan Schmitt
2021-07-27 8:54 Alan Schmitt
2021-07-20 12:58 Alan Schmitt
2021-07-06 12:33 Alan Schmitt
2021-06-29 12:24 Alan Schmitt
2021-06-22 9:04 Alan Schmitt
2021-06-01 9:23 Alan Schmitt
2021-05-25 7:30 Alan Schmitt
2021-05-11 14:47 Alan Schmitt
2021-05-04 8:57 Alan Schmitt
2021-04-27 14:26 Alan Schmitt
2021-04-20 9:07 Alan Schmitt
2021-04-06 9:42 Alan Schmitt
2021-03-30 14:55 Alan Schmitt
2021-03-23 9:05 Alan Schmitt
2021-03-16 10:31 Alan Schmitt
2021-03-09 10:58 Alan Schmitt
2021-02-23 9:51 Alan Schmitt
2021-02-16 13:53 Alan Schmitt
2021-02-02 13:56 Alan Schmitt
2021-01-26 13:25 Alan Schmitt
2021-01-19 14:28 Alan Schmitt
2021-01-12 9:47 Alan Schmitt
2021-01-05 11:22 Alan Schmitt
2020-12-29 9:59 Alan Schmitt
2020-12-22 8:48 Alan Schmitt
2020-12-15 9:51 Alan Schmitt
2020-12-01 8:54 Alan Schmitt
2020-11-03 15:15 Alan Schmitt
2020-10-27 8:43 Alan Schmitt
2020-10-20 8:15 Alan Schmitt
2020-10-06 7:22 Alan Schmitt
2020-09-29 7:02 Alan Schmitt
2020-09-22 7:27 Alan Schmitt
2020-09-08 13:11 Alan Schmitt
2020-09-01 7:55 Alan Schmitt
2020-08-18 7:25 Alan Schmitt
2020-07-28 16:57 Alan Schmitt
2020-07-21 14:42 Alan Schmitt
2020-07-14 9:54 Alan Schmitt
2020-07-07 10:04 Alan Schmitt
2020-06-30 7:00 Alan Schmitt
2020-06-16 8:36 Alan Schmitt
2020-06-09 8:28 Alan Schmitt
2020-05-19 9:52 Alan Schmitt
2020-05-12 7:45 Alan Schmitt
2020-05-05 7:45 Alan Schmitt
2020-04-28 12:44 Alan Schmitt
2020-04-21 8:58 Alan Schmitt
2020-04-14 7:28 Alan Schmitt
2020-04-07 7:51 Alan Schmitt
2020-03-31 9:54 Alan Schmitt
2020-03-24 9:31 Alan Schmitt
2020-03-17 11:04 Alan Schmitt
2020-03-10 14:28 Alan Schmitt
2020-03-03 8:00 Alan Schmitt
2020-02-25 8:51 Alan Schmitt
2020-02-18 8:18 Alan Schmitt
2020-02-04 8:47 Alan Schmitt
2020-01-28 10:53 Alan Schmitt
2020-01-21 14:08 Alan Schmitt
2020-01-14 14:16 Alan Schmitt
2020-01-07 13:43 Alan Schmitt
2019-12-31 9:18 Alan Schmitt
2019-12-17 8:52 Alan Schmitt
2019-12-10 8:21 Alan Schmitt
2019-12-03 15:42 Alan Schmitt
2019-11-26 8:33 Alan Schmitt
2019-11-12 13:21 Alan Schmitt
2019-11-05 6:55 Alan Schmitt
2019-10-15 7:28 Alan Schmitt
2019-09-03 7:35 Alan Schmitt
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=m2ms0yb6va.fsf@mac-03220211.irisa.fr \
--to=alan.schmitt@polytechnique.org \
--cc=caml-list@inria.fr \
--cc=lwn@lwn.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox