Skip to content

v0.72.0

Choose a tag to compare

@github-actions github-actions released this 28 Jul 17:11
· 11 commits to main since this release
Immutable release. Only release title and notes can be modified.
d7d97b0

[0.72.0] - 2026-07-28

✨ Highlights

This release introduces experimental build.steps as an alternative to build.script: each step is an isolated section of the build wrapper with its own if condition, interpreter, cwd, and env, so shell state no longer leaks between steps. It requires --experimental and is mutually exclusive with script. Recipes may now also carry a top-level $schema field for editor validation, and the process-execution layer gains reusable Runner and Session interfaces. Fixes cover case-insensitive RuntimeEnv lookups on Windows, deletion-only patches, Android DT_RUNPATH handling, and CEP-17 site-packages paths in SP_DIR.

Added

Fixed

  • Ignore case when querying variables from RuntimeEnv on Windows by @paperchalice in #2676
  • Deletion-only patches misdetected as already applied by @wolfv in #2695
  • Use CEP-17 path for SP_DIR by @wolfv in #2700
  • Use DT_RUNPATH instead of DT_RPATH on Android by @wolfv in #2699

Refactor

New Contributors