Kit Updated: 2026.6.11

Back to Blog

This post covers Kit v2026.6.11. The notes below come from the release tag history and the project changelog.

Kit 2026.6.11 is a busy release centered on applications, parser ergonomics, and capability tooling. Plain projects now get first-class application manifests with project-local installs, lambdas can trail a call as the final argument, interpolated heredocs dedent correctly, and capability errors are aggregated into a single actionable report backed by a new trust-on-first-use consent store. Cold builds also get noticeably faster.

Release Snapshot

  • Release: v2026.6.11
  • Date: June 11, 2026
  • Commits since v2026.6.9: 24
  • Primary areas: application manifests, parser ergonomics, capability tooling, build performance

What Changed

Applications are now first-class: a plain kit init creates an application kit.toml (not publishable), dependencies install project-locally to ./kit-packages/, and a bare kit run executes the manifest entry-point, much like cargo run. kit add in a directory without a manifest now offers to create one. Packages can also declare a kit-version compatibility pin that kit install enforces.

Capability errors get a major usability pass: instead of reporting missing package capabilities one at a time, the compiler now aggregates them into a single C004 diagnostic listing every missing capability along with the complete --allow command. A new --allow-requested flag grants exactly what packages declare, and a trust-on-first-use consent store remembers capability grants so you only approve them once.

The parser learns two documented-but-missing ergonomics: trailing lambda arguments (f arg fn(x) => body parses as the final call argument) and multi-line parenthesized lambda blocks. Interpolated squiggly heredocs now strip common indentation and drop the trailing newline, matching plain heredocs. Three more documented-but-unimplemented parser gaps surfaced by the website guides are fixed, so the tour and grammar examples now compile as written.

Thanks to Alvydas ( avitkauskas) for reporting and helping test the interpolated heredoc indentation issue (#201) and the documentation example parser gaps (kit-website #4, #5, #6) behind these fixes.

Build performance improves across the board: the full stdlib tree is embedded at build time (standalone binary installs now ship the complete stdlib), backend compile phases overlap, and partition codegen resolution paths are memoized for faster cold builds. The compile spinner is suppressed when stderr is not a TTY, keeping CI logs clean.

Quality work rounds out the release: generated-program differential backend testing, property-style tests for List builtins, executable docs and formatter properties, codegen fixes for capability capture discards and inlined constant operands, parser memory leak fixes in sql blocks and using expressions, quasiquote formatter spacing, and a wasm build fix that keeps Io.Threaded out of freestanding targets.

Release Highlights

Release Commits

The list below uses the v2026.6.9..v2026.6.11 tag range, with each short SHA linked to the corresponding GitLab commit in kit-lang.