A small patch release that fixes infinite recursion in mise exec when wrapper scripts and shims coexist in PATH, and corrects lockfile provenance detection for aqua tools with opts-only cosign configurations.
Fixed
-
mise execno longer infinite-loops when wrapper scripts and shims are both in PATH -- In devcontainer setups (and similar environments), a wrapper script like.devcontainer/bin/gitleaksthat callsmise x -- gitleakswould resolve back to itself instead of the real binary when the wrapper directory appeared before the shims directory in PATH. This caused infinite recursion until the environment exceeded ARG_MAX, producing confusing errors. The fix reorders the internal lookup PATH so that mise-managed tool bin directories are checked before system PATH entries, ensuring the real binary is always found first. The child process still inherits the full unmodified PATH. #8560 by @jdx -
Lockfile no longer records unverifiable cosign provenance for opts-only aqua tools -- Tools like
yamlfmt,trufflehog, andtflintconfigure cosign in the aqua registry with only CLI opts (e.g.--certificate-identity) but nokeyorbundleconfig.mise lockwas recordingprovenance = "cosign"for these tools, butmise installcan only verify cosign natively via key-based or bundle-based flows, causing "Lockfile requires cosign provenance ... but no verification was used" errors on install. Now cosign provenance is only recorded when the tool has a key or bundle config that can actually be verified. #8559 by @jdx
Added
turboadded to the registry -- Turborepo, the high-performance build system for JavaScript and TypeScript codebases, can now be installed viamise use turbo. #8553 by @igasworkmuxadded to the registry -- workmux, a tool for git worktrees + tmux windows for zero-friction parallel development, can now be installed viamise use workmux. #8555 by @ifraixedes
New Contributors
- @himkt made their first contribution in #8558
- @ifraixedes made their first contribution in #8555
- @igas made their first contribution in #8553
Full Changelog: v2026.3.7...v2026.3.8