A focused bugfix release that significantly improves hook-env stability, fixes the --silent flag to actually suppress all mise output, and resolves broken symlinks when installing tools to system/shared directories.
Fixed
-
hook-env watch_files tracking and early-exit stability -- Environment plugins (
MiseEnvmodules) that returnwatch_filesnow properly trigger re-evaluation when those files change. Previously, modifying a watched file (e.g. a secrets config) wouldn't cause mise to pick up the new values until a config change or directory switch. This PR also fixes two related stability issues: projects without amise.lockfile could fail to stabilize because the nonexistent lockfile was unconditionally added to the watch set, and directory mtime changes could cause repeated slow-path fallbacks. #8716 by @rpendleton -
--silentflag now fully suppresses mise output -- The global--silentflag was not being written toSettings, somise --silent run foowould suppress task stdout/stderr but still show mise's own info/warn messages. Now--silentproperly setsquiet=truein settings, making it a true superset of--quiet: it suppresses both mise messages and task output. #8720 by @nkakouros -
mise install --systemnow creates runtime symlinks correctly -- When installing tools to system/shared directories with--system, thelatestand partial-version symlinks (e.g.18->18.19.0) were only being created in the user install directory, leaving the system directory without proper symlinks. Symlinks are now rebuilt per install directory based on the versions actually present there, with graceful handling of permission errors in shared/system locations. #8722 by @jdx
Added
- Registry: acli (Atlassian CLI) -- Added acli to the registry for interacting with Atlassian Cloud services (Jira, Confluence, Bitbucket) from the terminal. Install with
mise install acli. #8721 by @ggoggam
New Contributors
- @rpendleton made their first contribution in #8716
- @ggoggam made their first contribution in #8721
Full Changelog: v2026.3.12...v2026.3.13