Changelog

Kolofon · 13 September 2026

0.13.14 — the example list takes a frozen array

at the first use of the new list in an instance

0.13.14 — the example list takes a frozen array

Text: Kolofon

The example list introduced in 0.13.13 was typed `string[]`. Instance config sits entirely behind `as const` — that is what keeps configuration values from being swapped at runtime — so the array arrives from there as `readonly`. The type check rejected every instance that wanted to use the new list, and the only way around it would have been dropping `as const` from the whole file.

Since 0.13.14 `searchExamples` takes `readonly string[]`. The engine only ever reads that list, so nothing is lost.

The fix surfaced at the first use, before 0.13.13 had gone up anywhere, and ships as its own number. A release that is already out describes what it did; fixes are not glued onto it.